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 argusthome, Yesterday, 10:06 AM
      0 responses
      20 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      18 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      14 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      9 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      38 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X