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"0High[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 burtoninlondon, Today, 12:38 AM
0 responses
5 views
0 likes
Last Post burtoninlondon  
Started by AaronKoRn, Yesterday, 09:49 PM
0 responses
14 views
0 likes
Last Post AaronKoRn  
Started by carnitron, Yesterday, 08:42 PM
0 responses
11 views
0 likes
Last Post carnitron  
Started by strategist007, Yesterday, 07:51 PM
0 responses
13 views
0 likes
Last Post strategist007  
Started by StockTrader88, 03-06-2021, 08:58 AM
44 responses
3,983 views
3 likes
Last Post jhudas88  
Working...
X