Announcement

Collapse
No announcement yet.

Pivot Point EFS

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

  • #16
    Its pretty simple really.

    Lets say I wanted to draw text at the high of the current bar:

    PHP Code:
    var nIndex getCurrentBarIndex();
    var 
    nHigh high();
    var 
    nLabelCount;

    if (
    nIndex != 0// Access bars by -ve ref.
       
    nIndex nIndex * -1;

    drawTextRelative(nIndexnHigh"P"Color.WhiteColor.BlackText.Boldnull10"MyEFS" nLabelCount);
    nLabelCount++; 
    Garth

    Comment

    Working...
    X