Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Extract value (price) horizontal line.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Extract value (price) horizontal line.

    Hi good day. I would like to ask for something
    Could someone give me an NT8 code that extracts the value of a horizontal line CREATED in the graph (not created by strategy) ?
    Muchas gracias. Saludos.

    #2
    Hello samir,

    Thanks for writing in.

    For reference, please see the help guide here: https://ninjatrader.com/support/help...rawobjects.htm

    Here is a specific example:

    protected override void OnBarUpdate()
    {
    foreach (DrawingTool draw in DrawObjects.ToList())
    {
    if (draw is DrawingTools.HorizontalLine)
    {
    DrawingTools.HorizontalLine temp = draw as DrawingTools.HorizontalLine;

    Print(Time[0]+" Name: "+draw.Tag+" Horizontal line price " + temp.StartAnchor.Price);

    }
    }
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    32 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    195 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    358 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    278 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X