isoverlay cn by trigger ?

Created at 02 Mar 2016, 04:48
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
CE

cedric.boudreau

Joined 02.03.2016

isoverlay cn by trigger ?
02 Mar 2016, 04:48


I whants to choise in parameter the isoverlay option of indicator 

Can we do that ?

thanks


@cedric.boudreau
Replies

Spotware
04 Mar 2016, 11:23

Dear Trader,

Please have a look at the IndicatorAttribute section of the API Reference and at the following code snippets.

    [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AutoRescale = false, AccessRights = AccessRights.None)]
    public class SimpleIndicator : Indicator
    {


    [Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AutoRescale = false, AccessRights = AccessRights.None)]
    public class SimpleIndicator : Indicator
    {

 


@Spotware

cedric.boudreau
04 Mar 2016, 14:48

thnaks for the reply..

I think , my question isn'T enouf understandable :) , i want to choose  the "Isoverlay" like a parrameter  option  , to change it as i want. without changing the code

 

[Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AutoRescale = false, AccessRights = AccessRights.None)]

public class SimpleIndicator : Indicator

{

 [Output("IsOverlay ")]

   public bool IsOverlay { get; set; }

 


@cedric.boudreau

Spotware
04 Mar 2016, 15:31

Dear Trader,

We don't provide users with the ability to set the an Indicator property as an Indicator parameter. We will consider providing it in the future. Stay tuned.

Additionally, you can post your ideas/suggestions to http://vote.spotware.com/


@Spotware