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 pmachiraju, 11-01-2023, 04:46 AM
      8 responses
      149 views
      0 likes
      Last Post rehmans
      by rehmans
       
      Started by mattbsea, Today, 05:44 PM
      0 responses
      5 views
      0 likes
      Last Post mattbsea  
      Started by RideMe, 04-07-2024, 04:54 PM
      6 responses
      33 views
      0 likes
      Last Post RideMe
      by RideMe
       
      Started by tkaboris, Today, 05:13 PM
      0 responses
      5 views
      0 likes
      Last Post tkaboris  
      Started by GussJ, 03-04-2020, 03:11 PM
      16 responses
      3,283 views
      0 likes
      Last Post Leafcutter  
      Working...
      X