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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
46 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
14 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment