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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment