Download: ATLANTASPREAD.ELA
File Includes: Indicator - Atlanta Spread
Category: Indicator > Miscellaneous
Description:
This an useful indicator which plots spread between price of corresponding bars of 2 data streams on the same chart.
Usage:
Plot required data streams and insert indicator. It will plot spread between bars.

No inputs
EasyLanguage Code:
VALUE1 = CLOSE OF DATA1 - CLOSE OF DATA2;
VALUE2 = OPEN OF DATA1 - OPEN OF DATA2;
VALUE3 = HIGH OF DATA1 - HIGH OF DATA2;
VALUE4 = LOW OF DATA1 - LOW OF DATA2;
PLOT1(VALUE1,"CLOSE");
PLOT2(VALUE2,"OPEN");
PLOT3(VALUE3,"HIGH");
PLOT4(VALUE4,"LOW");