+1 888 340 6572

Miscellaneous > Up Side Down

Article/Author: Omega Research Inc., 1996

Download: UP_SIDE_DOWN.ELA

File Includes: Indicator - Up Side Down

Category: Indicator > Average

Description: Up Side Down is a novel indicator plotting price data in a reversed way; in some cases this can come in very handy.

Usage: Place the indicator in the subgraph 2.




EasyLanguage Code:
PLOT1(1 / OPEN,"PLOT1");

PLOT2(1 / CLOSE,"PLOT2");
PLOT3(1 / HIGH,"PLOT3");
PLOT4(1/ LOW,"PLOT4");
IF CHECKALERT THEN BEGIN
IF PLOT1 CROSSES ABOVE PLOT2 OR PLOT1 CROSSES BELOW PLOT2
OR PLOT1 CROSSES ABOVE PLOT3 OR PLOT1 CROSSES BELOW PLOT3
OR PLOT1 CROSSES ABOVE PLOT4 OR PLOT1 CROSSES BELOW PLOT4
OR PLOT2 CROSSES ABOVE PLOT3 OR PLOT2 CROSSES BELOW PLOT3
OR PLOT2 CROSSES ABOVE PLOT4 OR PLOT2 CROSSES BELOW PLOT4
OR PLOT3 CROSSES ABOVE PLOT4 OR PLOT3 CROSSES BELOW PLOT4
THEN ALERT;
END;