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

Difference of Two Indicators?

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

    Difference of Two Indicators?

    HI, has anyone done an indicator to plot the difference of two indicators? What I've seen so far is spread stuff, that takes two instruments, but I want to take the running difference between two indicators, for instance RSI(14) and another indicator of 14 period or something like that. Thanks!

    #2
    Hello chinaexpert1a, thanks for your post.

    That can be done like this:

    Code:
    public class TestRSI : Indicator
        {
            private SMA _SMA0;
            private RSI _RSI0;
            protected override void OnStateChange()
            {
                if (State == State.SetDefaults)
                {
                    //...
                }
                else if (State == State.Configure)
                {
                }
                else if(State == State.DataLoaded)
                {
                    _SMA0 = SMA(14);
                    _RSI0 = RSI(14, 3);
                }
            }
    
            protected override void OnBarUpdate()
            {
                var diff = _SMA0[0] - _RSI0[0];
                Print(diff);
            }
        }
    Please let me know if I can assist any further.
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Great! Thank you... so I see you have provided me with code, hehe, I'm....? noooooob

      Chris, do I need to make a custom indicator? I do want to, you suggest the 7+Breaking or other route, hire a programmer. :/

      lol

      Thanks

      Andrew

      Comment


        #4
        Hi chinaexpert1a, thanks for your reply.

        This would need to be developed as a custom indicator. I'm not aware of any existing indicator that will do this. The Spread indicator is the only similar one I know of.

        Kind regards.
        Chris L.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by geddyisodin, Yesterday, 05:20 AM
        9 responses
        50 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by George21, Today, 10:07 AM
        1 response
        11 views
        0 likes
        Last Post NinjaTrader_ChristopherJ  
        Started by DayTradingDEMON, Today, 09:28 AM
        3 responses
        20 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by Stanfillirenfro, Today, 07:23 AM
        9 responses
        23 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by navyguy06, Today, 09:28 AM
        1 response
        9 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X