Open/Close Delta

The Open/Close Delta displays the absolute difference between the open and close prices. A green bar is displayed if the close is higher than the open, otherwise the bar will be red. No user inputs are required for this indicator. This indicator’s definition is further expressed in the condensed code given in the calculation below.

Open Close Delta

How To Trade Using Open/Close Delta

No trading signals are calculated for this indicator.

How To Access in MotiveWave

Go to the top menu, choose Study>Custom>Open/Close Delta

or 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

//index = current bar number

iopen = getOpen(index);
iclose =getClose(index);
setColor(iclose-iopen);
Plot: delta = Math.abs(iclose - iopen);