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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    49 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    69 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    36 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    96 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    59 views
    0 likes
    Last Post PaulMohn  
    Working...
    X