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 Mindset, Today, 06:46 AM
0 responses
8 views
0 likes
Last Post Mindset
by Mindset
 
Started by M4ndoo, Yesterday, 05:21 PM
0 responses
12 views
0 likes
Last Post M4ndoo
by M4ndoo
 
Started by M4ndoo, 04-19-2026, 05:54 PM
0 responses
15 views
0 likes
Last Post M4ndoo
by M4ndoo
 
Started by cmoran13, 04-16-2026, 01:02 PM
0 responses
82 views
0 likes
Last Post cmoran13  
Started by PaulMohn, 04-10-2026, 11:11 AM
0 responses
47 views
0 likes
Last Post PaulMohn  
Working...
X