Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

StrategyPlot always plots one color

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

    StrategyPlot always plots one color

    My StrategyPlot only plots one color, usually black, even though I set pen to various other colors. I confirm the colors with Print(), see below. I followed the StrategyPlot example. The only thing different is that in the example the color is only set in Initialize(). Is there a problem with changing the color during runtine? Or, am I doing something else wrong? I only have one StrategyPlot.

    Code:
    private void draw_trade_segment( double y, Color color, Color back_color )
    {
    	StrategyPlot(0).Plots[0].Pen.Color = color;
    	StrategyPlot(0).Value.Set( y );
    			
    	BackColor = back_color;
    			
    //	Print( color.ToString() );	//qqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
    }

    #2
    Hello Bernie_C,

    The reason you see this is cause you are changing the entire Pen object of the plot.

    Try using the PlotColors property instead of the Plots

    Example -
    StratgeyPlot(0).PlotColors[0][0] = color;

    http://www.ninjatrader.com/support/h...plotcolors.htm

    Let me know if I can be of further assistance.
    Cal H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    607 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    353 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    560 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    561 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X