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

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 Waxavi, Today, 02:10 AM
    0 responses
    3 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Started by TradeForge, Today, 02:09 AM
    0 responses
    8 views
    0 likes
    Last Post TradeForge  
    Started by Waxavi, Today, 02:00 AM
    0 responses
    2 views
    0 likes
    Last Post Waxavi
    by Waxavi
     
    Started by elirion, Today, 01:36 AM
    0 responses
    4 views
    0 likes
    Last Post elirion
    by elirion
     
    Started by gentlebenthebear, Today, 01:30 AM
    0 responses
    4 views
    0 likes
    Last Post gentlebenthebear  
    Working...
    X