Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
NT8 Slope Indicator or MaSlope Box indicator
Collapse
X
-
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
-
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
- Likes 1
Comment
-
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
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment