Announcement

Collapse
No announcement yet.

max min close 50%

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

  • max min close 50%

    Hi people,
    can i have a efs who sign "min max close 50%" of day before??
    TNX people

  • #2
    sante
    You can easily retrieve those values using the new EFS2 functions (see examples shown below).
    For information and syntax required by these functions see the Series Functions section under EFS2 Function Reference of the EFS KnowledgeBase
    Alex

    PHP Code:
    var vHigh high(-1,inv("d"));//High of the prior daily bar
    var vMidPoint = (high(-1,inv("d"))+low(-1,inv("d")))/2;//50% of the prior daily bar
    //etc 

    Comment

    Working...
    X