Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
BUG: built-in Slope() method incorrect
Collapse
X
-
-
I know that, and ticks would be used to figure slope on price but I dont understand the request to get the slope in ticks since slope is angle.Originally posted by mgbloomfield View PostThink of ticks (price) as the y-axis and period (time) as the x-axis.
Comment
-
-
Here is what I use for an indicator slope:
MyAngle.Set(Math.Atan(Slope(MACD(12,26,9).Avg, 1,0)) * 180/Math.PI);
which checks angle between current and 1 bar back I haven't tried to apply directly to price.
Would this work?
MyAngle.Set(Math.Atan(Slope(Close), 1,0)) * 180/Math.PI);
Not what I expected.
This:
Print("angle " + (Math.Atan(Slope(Close, 3,0) * 180/Math.PI)));
outputs this:
angle -1.36434100921404
angle -1.46645686609606
angle 0
angle 1.36434100921404
angle 1.36434100921404
angle 1.46645686609606
angle 1.54752946948938
angle 1.55175867160589
angle 1.55334480614343
angle 1.52893289777454
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
155 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
90 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
137 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
130 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment