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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment