Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

calculating differences between 2 SMA

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

    calculating differences between 2 SMA

    Is there a way to calculate differences between 2 SMA using strategy, and if at certain distance, the condition is true.

    I only see >= and <=, but nothing says larger(smaller) by a certain tick.

    Any way to do this?

    #2
    If it doesn't matter which SMA is above the other you can do something like...

    if(Math.Abs(SMA1 - SMA2) >= someValue)
    {
    //insert logic here
    }

    if it does matter which is greater than the other just add
    && sma1 > sma2

    or

    && sma1 < sma2

    hope this helps
    mrlogik
    NinjaTrader Ecosystem Vendor - Purelogik Trading

    Comment


      #3
      Thanks. Yes in my case, which one is above which matters.

      So I will have 2 "if"s for above, and below.

      Comment


        #4
        yes

        if(Math.Abs(SMA1 - SMA2) >= someValue && SMA1 > SMA2)
        {
        //logic 1 here
        }
        else if(Math.Abs(SMA1 - SMA2) >= someValue && SMA1 < SMA2)
        {
        //logic 2 here
        }
        mrlogik
        NinjaTrader Ecosystem Vendor - Purelogik Trading

        Comment


          #5
          Also remember if you want "some" tick value to use TickSize.

          Code:
          10 * TickSize
          Josh P.NinjaTrader Customer Service

          Comment


            #6
            Thanks for advice, guys.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by CaptainJack, 04-24-2026, 11:07 PM
            0 responses
            13 views
            0 likes
            Last Post CaptainJack  
            Started by Mindset, 04-21-2026, 06:46 AM
            0 responses
            119 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by M4ndoo, 04-20-2026, 05:21 PM
            0 responses
            172 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by M4ndoo, 04-19-2026, 05:54 PM
            0 responses
            88 views
            0 likes
            Last Post M4ndoo
            by M4ndoo
             
            Started by cmoran13, 04-16-2026, 01:02 PM
            0 responses
            131 views
            0 likes
            Last Post cmoran13  
            Working...
            X