Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Vertical Bar Indicator

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

    Vertical Bar Indicator

    I want to code an Indicator which plots vertical bars with 3 different colors. The color of the bars would be based on the following: If the RSI and it's average are both above the RSI Bullish Level, color = (Say) Blue. If the RSI and it's average are both below the RSI Bearish Level, color = (Say) Red. If at least one of the RSI and it's average are between the Bearish Level and the Bullish Level, color = (Say) Khaki.
    Is this 1 plot or 3 plots? Also, do I have to calculate the RSI Average or is that available in a variable?
    Last edited by freeway; 10-28-2011, 05:22 PM.

    #2
    Changing colors and RSI Average

    Freeway,

    I am happy to assist you.

    This is possible with only 1 bar plot. You just need to set the color of the bar whenever a certain condition is true. You can use the following line and adapt it for your use.

    Code:
    if ( condition is true )
    {
    	PlotColors[0][0] = Color.Red;
    }
    For more information on colors, please see the following link.



    For more information on PlotColors, please see the link below.



    By RSI average do you mean a moving average? Something like this would work.

    Code:
    SMA(RSI(RSIPeriod,smooth),SMAperiod)[barsAgo]
    Please let me know if I may assist further.
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by egordleo, Today, 05:50 AM
    0 responses
    5 views
    0 likes
    Last Post egordleo  
    Started by kevinenergy, 02-17-2023, 12:42 PM
    118 responses
    2,778 views
    1 like
    Last Post kevinenergy  
    Started by briansaul, Today, 05:31 AM
    0 responses
    9 views
    0 likes
    Last Post briansaul  
    Started by fwendolynlpxz, Today, 05:19 AM
    0 responses
    5 views
    0 likes
    Last Post fwendolynlpxz  
    Started by traderqz, Yesterday, 12:06 AM
    11 responses
    28 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X