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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
72 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
39 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
63 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
63 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment