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.