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

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    29 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    117 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    69 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    227 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    309 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X