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
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
StrategyPlot always plots one color
Collapse
X
-
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:Tags: None
-
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
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
66 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
149 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
286 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment