Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

IDrawObject ChartAnchor question.

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

    IDrawObject ChartAnchor question.

    Probably a really simple one here...

    I have drawn a line and unlocked it allowing the user to drag it to wherever they chose

    IDrawingTool myLine;
    myLine = Draw.VerticalLine(this,"TheLine",5,Brushes.Black);//.IsLocked = false;
    myLine.IsLocked = false;

    Now I want to read the Time based location of that line.

    Based on the NT8 help guide the time value should be stores in <ChartAnchor>.Time

    Not being a professional coder I dont understand why ChartAnchor is shown int <>'s

    I would have thought the code should look like this, but i am obviously wrong.

    Print ("my Line anchor time = "+myLine.ChartAnchor.Time);

    The Help Guide also shows this example which would suffice
    Print(myText.Anchor.DrawnOnBar);

    although, the "Anchor" property doesnt exist when typing "myLine....." on the "Anchors" property which has no reference to Bars or Time in it.

    #2
    Hello marty087,

    Thank you for your note.

    You can loop through the anchors to find the time. Below is an example you could place directly below your code:
    Code:
    			if (myLine == null)
    				return;
    			
    			foreach (ChartAnchor anchor in myLine.Anchors)
    			{
    				Print(anchor.Time);
    			}

    Comment


      #3
      You can also look at our Anchors documentation at the following link: http://ninjatrader.com/support/helpG...us/anchors.htm

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by WeyldFalcon, 08-07-2020, 06:13 AM
      11 responses
      1,422 views
      0 likes
      Last Post jculp
      by jculp
       
      Started by RubenCazorla, Today, 09:07 AM
      0 responses
      4 views
      0 likes
      Last Post RubenCazorla  
      Started by BarzTrading, Today, 07:25 AM
      2 responses
      29 views
      1 like
      Last Post BarzTrading  
      Started by devatechnologies, 04-14-2024, 02:58 PM
      3 responses
      21 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by tkaboris, Today, 08:01 AM
      0 responses
      6 views
      0 likes
      Last Post tkaboris  
      Working...
      X