Are there any similar sample indicator scripts?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to modify the MACD indicator to paint the Bar color
Collapse
X
-
Hello bibofeng,
Thanks for your post.
To create a copy of the MACD indicator to modify, open a New > NinjaScript Editor window, open the Indicators folder, and double-click on the MACD file. Right-click within the code of the MACD indicator, select 'Save as', name the copy of the file and click OK.
After making a copy of the indicator, you could modify that copy to suit your overall goals.
PlotBrushes[int PlotIndex][int barsAgo] would be used in a NinjaScript indicator to change the plot color to a specified color when a condition is true.
We do not have a reference sample in the help guide that demonstrates this specifically. That said, the code to add to the copy of the MACD script might look something like this:
Code:if (Diff[0] > 0) PlotBrushes[2][0] = Brushes.Green; else PlotBrushes[2][0] = Brushes.Red;
Note that the code above would be placed outside of the if-else condition used to assign plots a value.
See this help guide page for more information about PlotBrushes and sample code: https://ninjatrader.com/support/help...lotbrushes.htm
<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>
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
237 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
152 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
163 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
246 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
199 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment