Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to modify the MACD indicator to paint the Bar color

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to modify the MACD indicator to paint the Bar color

    Try to modify the MACD indicator and paint the macd bar color, when Diff > 0 paint to Green else Red.

    Are there any similar sample indicator scripts?

    #2
    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>

    Comment


      #3
      Thank you for your quick response. I got it!

      Comment

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