Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

NT7 iLine vs NT8 Line

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

    NT7 iLine vs NT8 Line

    I am trying to convert code from an NT7 indicator to an NT8 indicator.


    According to the page on code break changes related to converting code from NT7 to NT8, the Line object replaced iLine.

    Line.StartBarsAgo, Line.EndBarsAgo, Line.StartY and Line.endY doesn't exist like it did for
    iLine.StartBarsAgo, iLine.EndBarsAgo,
    iLine.StartY and iLine.EndY. How would I obtain these values for a Line object in NT8?




    Last edited by MarthaClines; 03-19-2019, 08:38 PM.

    #2
    Hello MarthaClines,

    Thank you for your post.

    The StartAnchor and EndAnchor properties of the line will hold that data.

    See "ChartAnchor Properties" on this page:


    e.g.

    Code:
    DrawingTools.Line myLine = Draw.Line(this, "MyLine", 5, Close[5], 0, Close[0], Brushes.Red);
    
    var x = myLine.StartAnchor.Price;
    var y = myLine.StartAnchor.Time;
    var h = myLine.StartAnchor.Price;
    var k = myLine.StartAnchor.Time;
    Print( x + " " + y + " " + h + " " + k );
    Please let me know if I can assist further.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    641 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    366 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    107 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    569 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X