Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicators in Strategies
Collapse
X
-
Hello dibDab,
Thanks for your post.
If an indicator is added to a strategy using AddChartIndicator(), you would not be able to change the color of the indicator in the OnBarUpdate() method of the strategy.
The indicators plot color would need to be set in OnStateChange() when the State == State.DataLoaded. Note that you would need to define the brush color before calling AddChartIndicator().
Let me know if I may assist further,Code:else if (State == State.DataLoaded) { smaFast = SMA(Fast); smaSlow = SMA(Slow); smaFast.Plots[0].Brush = Brushes.Goldenrod; smaSlow.Plots[0].Brush = Brushes.SeaGreen; AddChartIndicator(smaFast); AddChartIndicator(smaSlow); }<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
-
Hello dibDab,
Thanks for your note.
Something you could consider doing is adding a plot to the strategy using AddPlot() and assigning the SMA indicator value to that plot.
PlotBrushes could then be used to change the color of a plot when a certain condition is true.
See the attached example script and screenshot demonstrating this.
And, see the help guide documentation below for more information and sample code.
AddPlot(): https://ninjatrader.com/support/help...ghtsub=addplot
SMA: https://ninjatrader.com/support/help...ghlightsub=sma
PlotBrushes: https://ninjatrader.com/support/help...lotbrushes.htm
Let me know if I may assist further.<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
Comment
-
Hello dibDab,
Thanks for your note.
If you set PlotBrushes to null, the default plot color defined in the AddPlot() method will be used. For example, if you call AddPlot(Brushes.Orange, "SMAPlot"); and then set PlotBrushes to null in OnBarUpdate(), the plot color will be orange.
To set a plot color to transparent, you could call PlotBrushes[0][0] = Brushes.Transparent;
Please let me know if you have any other questions.<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
90 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
137 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
120 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
69 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment