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