Thanks for the help.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How can I measure the slope of a line?
Collapse
X
-
How can I measure the slope of a line?
Hello, how can I measure the slope of a line, in Ninja Trader?
Thanks for the help.Tags: None
-
Hello ELDAVIDOLOCO,
Thank you for your post.
Unfortunately, there is not a drawing tool to measure the slope. You can use Slope() in NinjaScript to measure the slope of a Plot/DataSeries: http://www.ninjatrader.com/support/h.../nt7/slope.htm
-
Even though, as Patrick says, there isn't a drawing tool to measure the slope, it can be calculated using some math that you may remember from school.Originally posted by ELDAVIDOLOCO View PostHello, how can I measure the slope of a line, in Ninja Trader?
Thanks for the help.
Let's say the start of the line is at Close[n] and the end at Close[0]. From geometry, we would say that X1 = n, Y1 = Close[n], X2 = 0 and Y2= Close[0].
The formula for the slope of such a a line is:
(X2 - X1)
-------------
(Y2 - Y1)
so in NinjaScript terms this comes out as:
(m being the conventional letter for 'slope'.)Code:double m = - n / (Close[0] - Close[n]);
Hope this helps.
Comment
-
Not to quibble, but actually slope is rise/run. You have that the wrong way round.Originally posted by arbuthnot View PostEven though, as Patrick says, there isn't a drawing tool to measure the slope, it can be calculated using some math that you may remember from school.
Let's say the start of the line is at Close[n] and the end at Close[0]. From geometry, we would say that X1 = n, Y1 = Close[n], X2 = 0 and Y2= Close[0].
The formula for the slope of such a a line is:
(X2 - X1)
-------------
(Y2 - Y1)
so in NinjaScript terms this comes out as:
(m being the conventional letter for 'slope'.)Code:double m = - n / (Close[0] - Close[n]);
Hope this helps.
Comment
-
Thanks, Koganam!
You are right - I am wrong!
My math degree has been rescinded and I'm sliding down the slippery - er - slope?
At my third attempt, this is the equation:
I was in a bad mood today until I saw this: a wonderful example of my absent-mindedness!Code:double m = (Close[n] - Close[0]) / n;
It's important to quibble otherwise wrong information can be left in the Forum, which helps no one.
Much obliged to you for pointing this out.
Cheers!
Ed
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
48 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
136 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
191 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
101 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
142 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|

Comment