Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

2 Day RSI(2) Indicator

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

    2 Day RSI(2) Indicator

    I am looking for help in creating a new indicator based off the existing RSI indicator.

    The only difference is the new indicator is the sum of the last 2 days of the RSI.

    I made a copy of the RSI and tried modifying it but cannot get it to work or plot on the graph. The goal is to use this for auto-trading.

    Any help would be greatly appreciated.

    Bryan

    #2
    Hi Bryan,

    The math shouldn't be too difficult and you don't need to modify the existing RSI. Could create a new script and then set the plot accordingly.

    if(CurrentBar > 1)
    Value.Set(RSI(14, 3)[0] + RSI(14, 3)[1]);

    The [0] + [1] adds the current and previous RSI value. Indexing is always based on bars, not days. You could apply this script to a daily chart or work with our multiseries framework to base it on a specific interval.
    Last edited by NinjaTrader_RyanM1; 10-25-2011, 10:54 AM.
    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by blconnell View Post
      I am looking for help in creating a new indicator based off the existing RSI indicator.

      The only difference is the new indicator is the sum of the last 2 days of the RSI.

      I made a copy of the RSI and tried modifying it but cannot get it to work or plot on the graph. The goal is to use this for auto-trading.

      Any help would be greatly appreciated.

      Bryan
      Maybe if you showed us what you have done so far, we can complete it for you?

      Comment


        #4
        Thanks for the quick replies. I will review again tonight and see if I can get it working. If not, I'll post what I have so far and look for your expertise in getting it working.

        Thanks again,

        Bryan

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        164 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        317 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        245 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        350 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X