How to track crossing price and manually drawn line (Ray or ExtendedLine)?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Crosing line
Collapse
X
-
Hello Vladko,
Thank you for your note.
You would need to take a look at the DrawObjects collection. This will show you how to loop through the list of DrawObjects in the chart and get the relevant information for that object.
http://www.ninjatrader.com/support/h...rawobjects.htm
Let me know if I can be of further assistance.Cal H.NinjaTrader Customer Service
-
Vladko,
These are all the available properties of the ray you can get -
http://www.ninjatrader.com/support/h....html?iray.htm
However, the issue here is that you won't get the continuing Ray line directly, meaning the part of the line after the second anchor.
You would need to calculate out the slope of the line and what the Y value would be in relation to the bar that it would be processed on, such as Rise over Run.Cal H.NinjaTrader Customer Service
Comment
-
HI VladkoOk, I found my line
Code:
foreach (IDrawObject draw in DrawObjects) { if (draw is IRay) { IRay ray=(IRay)draw; .... } }
How to check crossing Close[0] and ray?
Cal, giving great advice as NT staff always give in the Forum, is saying you would need to work out the equation of the ray. This comes down to Cartesian coordinates and line equations. I have done exactly this myself recently with one of my Ninja methods and it works a treat.
If you need any help with the math, just put a request in this thread and I'll post the necessary equations.
Cheers.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
630 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
364 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
566 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
568 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment