Contract Hi Low

Contract Hi Low was authored by Omega Research 1995. It displays the highest high and the lowest low. No user input is required. This indicator’s definition is further expressed in the condensed code given in the calculation below.

Contract High Low

How To Trade Using Contract Hi Low

No trading signals are given for this indicator.

How To Access in MotiveWave

Go to the top menu, choose Add Study, start typing in this study name until you see it appear in the list, click on the study name, click OK.

Important Disclaimer: The information provided on this page is strictly for informational purposes and is not to be construed as advice or solicitation to buy or sell any security. Please see our Risk Disclosure and Performance Disclaimer Statement.

Calculation

//con = contract
//index = current bar number

conHi = ifNull(high, conHi[index-1]);
conLow = ifNull(low, conLow[index-1]);
if (high moreThan conHi) conHi = hi;
if (low lessThan conLow) conLow = low;
Plot1: conHi;
Plot2: conLow