Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Draw Region for RSI or Stoch

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

    Draw Region for RSI or Stoch

    I can follow the DrawRegion coding for Boll Bands, because there are three separate lines, but I cannot make the code to draw over sold / over bought zones on a RSI or Stoch, because it has only the one line plotted.

    I would appreciate any assistance on how to colour the regions at the top and bottom of an RSI or Stoch, for example.
    Thank you in advance.
    Hopefully I can then develop the code to show a 'warning' band and a 'danger' band on similar "single line plots" that oscillate above and below a zero.
    Thanks again

    #2
    oldhiker,

    I am happy to assist you.

    You can add more plots to an indicator. For example, in Initialize()

    Add(new Plot(Color.FromKnownColor(KnownColor.Blue), PlotStyle.HLine, "High"));

    Then in OnBarUpdate()

    High.Set ( 80);

    You also need to declare it in the "Properties" section like :

    public DataSeries High
    {
    get { return Values[1]; }
    }

    Please let me know if I may assist further.
    Last edited by NinjaTrader_AdamP; 01-15-2012, 07:40 PM.
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    51 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    31 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    165 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    100 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    160 views
    2 likes
    Last Post CaptainJack  
    Working...
    X