Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Paintbar of SMA crossover

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

    Paintbar of SMA crossover

    Does anybody have the script for a PaintBar of a SMA crossover whereby when a 6 bar SMA crosses above a 12 bar SMA on the close the price bars are painted green for example and when a 6 bar crosses below the 12 bar the price bars are painted red. I am terrible at writing my own indicators. Thank you very much ahead of time.

    #2
    Hello cajunman,

    I took a look around to see if there is an existing script that does this, but I was not able to find an existing script.

    This script would not require much code to create.

    For example:

    if (CrossAbove(SMA(6), SMA(12), 1))
    {
    BarColor = Color.Green;
    }

    This would change the bar color when the SMA with a period of 6 crosses above the SMA with a period of 12.

    CrossAbove - http://ninjatrader.com/support/helpG...crossabove.htm
    BarColor - http://ninjatrader.com/support/helpG...7/barcolor.htm

    While I will not be able to create this script at your request, this thread will remain open for any community members that would like to create this script as a convenience to you.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks Chelsea I will work on it.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      49 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      141 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      160 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      96 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      275 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X