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, 05-11-2026, 05:56 AM
|
0 responses
29 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
21 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
184 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
337 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
262 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment