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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    30 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    17 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    9 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    16 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    19 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X