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