[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Need Custom Indicator Help



PureBytes Links

Trading Reference Links

John Kosar writes:

> The difference between (O-H) and (L-C)

What you want is the absolute value of (o-h) - (l-c).

abs((o - h) - (l - c))

Algebraically, this is the same as abs(o - h - l + c) if you want to
go that route.