Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Get Object y-value

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

    Get Object y-value

    how do you get the y value or chart anchor position of a drawn object.

    ok I found it.

    PHP Code:
    ChartAnchor Properties
    
    
    
    <ChartAnchor>.BarsAgo
     
    An int representing the "barsAgo" value that was passed to the DrawingTool method
     
    
    <ChartAnchor>.DisplayName
     
    A string representing name of the DrawingTool's chart anchor that is displaying on the UI
     
    
    <ChartAnchor>.DrawingTool
     
    The IDrawingTool object which created the DrawingTool's chart anchor object
     
    
    <ChartAnchor>.DrawnOnBar
     
    An int representing the CurrentBar value that the DrawingTool's chart anchor was drawn
     
    
    <ChartAnchor>.IsNinjaScriptDrawn
     
    A bool indicating the object was drawn programmatically
     
    
    <ChartAnchor>.Price
     
    A double representing the price the  DrawingTool's chart anchor was drawn
     
    
    <ChartAnchor>.SlotIndex
     
    A double representing the DrawingTool's chart anchor index value the anchor was drawn
     
    
    <ChartAnchor>.Time
     
    A DateTime representing the time value the DrawingTool's chart anchor was drawn
     
    
    
    Examples
     
    Text myText;
    protected override void OnBarUpdate()
    {   
       if(CurrentBar == 50)
         myText = Draw.Text(this, "tag", "test", 0, High[0]);     
       
       if(myText != null)
       {           
         Print(myText.Anchor.DrawnOnBar); // drawn on bar 50
       }
       
    } 
    
    Last edited by cutzpr; 09-19-2016, 12:21 PM.

Latest Posts

Collapse

Topics Statistics Last Post
Started by kinfxhk, 07-13-2026, 10:18 AM
0 responses
24 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-13-2026, 09:50 AM
0 responses
14 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-13-2026, 07:21 AM
0 responses
20 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by kinfxhk, 07-11-2026, 02:11 AM
0 responses
19 views
0 likes
Last Post kinfxhk
by kinfxhk
 
Started by SalmaTrader, 07-07-2026, 10:26 PM
0 responses
135 views
0 likes
Last Post SalmaTrader  
Working...
X