Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT8 Slope Indicator or MaSlope Box indicator

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

    NT8 Slope Indicator or MaSlope Box indicator

    Hello All, does anyone know of a NT8 indicator to plot ema slopes on a chart. Looking for a quick way to indentify flattening ema's and markets

    Thanks

    #2
    so, you will prob get this answer from most forums ..slope depends on scale of chart, as soon as you change the chart scale the slope will change, as soon as you zoom in or out, the slope will change .. as soon as the chart autoscales where you get lots of volatility the slope will change etc etc etc .. however .. saying that .. you can calc it something like this .. milage will vary .. and I added a fiddle factor on the end based on what I saw when testing .. you can change this or play around with it etc ..

    //ema 10
    int ema0 = 10;
    //slope over the last 5 * bars with a factor of 3 // basically in back testing I waited till the volatility took the bars exponential and adjusted the factor till it looked righti'sh ...
    double MA1_angle = Math.Atan( Slope(EMA(BarsArray[0], ema0), 5, 0) ) * ((180 / Math.PI)/(TickSize*3.0));

    HTH
    MarkT

    Comment


      #3
      also, not 100% but Matt Bowen has a group of indicators that might have MA slope in it, you would need to ping him to ask him .. http://www.nobstrades.com/vwap-map

      Comment


        #4
        Thanks for the info Mark, much appreciated

        Comment


          #5
          Hi markbb10, thanks for your post.

          12tkram's answer is correct here, you can use the Slope method and feed in the EMA to get the slope of the EMA over a defined period.

          https://ninjatrader.com/support/help...nt8/?slope.htm - Slope()

          Please let us know if I can assist any further.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          656 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          370 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          109 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          574 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          577 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X