Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Change color on custom indicator

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Change color on custom indicator

    Hi:;

    I'm developing a custom indicator, an EMA.

    I want it to change color depending of the slope of the EMA
    So, on Initialize I have:
    Add(new Plot(Color.FromKnownColor(KnownColor.Transparent), PlotStyle.Line, "MyMA"));


    And OnBarUpdate()

    if (MyMA[0] > (MyMA[1] )
    {
    MyMA[0].Color = Color.Green;
    }else if (MyMA[0] < (MyMA[1] )
    {
    MyMA[0].Color = new Color(Color.Red);
    }else
    {
    MyMA[0].Color = new Color(Color.Ivory);
    }

    being MyMA the Plot draw by the indicator.

    Well, it does not work :-(

    What shouyld I code?

    Thanks

    #2
    pakricard, I would suggest reworking this code to use the NT7 PlotColors method to achieve the desired outcomes - http://www.ninjatrader.com/support/h...plotcolors.htm
    BertrandNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cre8able, Today, 06:18 PM
    0 responses
    5 views
    0 likes
    Last Post cre8able  
    Started by ETFVoyageur, Today, 06:05 PM
    0 responses
    3 views
    0 likes
    Last Post ETFVoyageur  
    Started by TAJTrades, 04-28-2024, 09:46 AM
    2 responses
    17 views
    0 likes
    Last Post TAJTrades  
    Started by ETFVoyageur, Today, 02:04 PM
    2 responses
    19 views
    0 likes
    Last Post ETFVoyageur  
    Started by mjbatts91, Today, 04:48 PM
    0 responses
    6 views
    0 likes
    Last Post mjbatts91  
    Working...
    X