Question about ObjectGetShiftByValue

 

Hello,

Function

ObjectGetShiftByValue( string name, double value)

returns bar number by value.

As I understood, it could not return negative numbers - it could not return future bars.

Or could ?


Thanks,

Edas

 

Don't know. But if you really need to just calculate it

get p1 price & date p2 price & date. slope = (p2p - p1p)/(iBarShift(p1dt)-iBarShift(p2dt))

future price = p2p + slope * (future bar - iBarShift(p2dt) )

 
WHRoeder:

Don't know. But if you really need to just calculate it

get p1 price & date p2 price & date. slope = (p2p - p1p)/(iBarShift(p1dt)-iBarShift(p2dt))

future price = p2p + slope * (future bar - iBarShift(p2dt) )

Thanks,WHRoeder