Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

I know there is an easy answer...

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

    I know there is an easy answer...

    I apologize in advance. I have been trying to find a sample plot to write an indicator that will simply change the color of the plot (either ema, sma, cci, or whatever) based on its numerical value. Looking to plot 4 different colors. I see there is a sample plot for rising and falling color change, but does someone have an indicator that plots based on indicators numerical value? I bet its real easy...can someone help? thanks.

    #2
    Hi winJR

    You can use the tutorial at - http://www.ninjatrader-support.com/H...tml?Overview25

    In the initialize, you can do something like

    Code:
    Add(new Plot(Color.Red, PlotStyle.Line, "Red")); 
    Add(new Plot(Color.Orange, PlotStyle.Line, "Orange")); 
    Add(new Plot(Color.Yellow, PlotStyle.Line, "Yellow")); 
    Add(new Plot(Color.Green, PlotStyle.Line, "Green")); 
       
       
    Plots[0].Min = 100; 
    Plots[1].Max = 100;
    Plots[1].Min = 75; 
    Plots[2].Max = 75;   
    Plots[2].Min = 50; 
    Plots[3].Max = 50;
    TimNinjaTrader Customer Service

    Comment


      #3
      Thank you, got it working....!!

      You guys are awesome, thanks.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by tkaboris, Today, 05:13 PM
      0 responses
      2 views
      0 likes
      Last Post tkaboris  
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,281 views
      0 likes
      Last Post Leafcutter  
      Started by WHICKED, Today, 12:45 PM
      2 responses
      19 views
      0 likes
      Last Post WHICKED
      by WHICKED
       
      Started by Tim-c, Today, 02:10 PM
      1 response
      10 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by Taddypole, Today, 02:47 PM
      0 responses
      5 views
      0 likes
      Last Post Taddypole  
      Working...
      X