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, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    48 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Working...
    X