×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

Atlanta System - MultiCharts
Open main menu

Atlanta System

Revision as of 17:50, 16 October 2013 by Roman MultiCharts (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article/Author: Omega research Inc., 1997


Signal Code:

 IF CLOSE > AVERAGE(CLOSE,200) THEN

BEGIN

	VALUE1 = HIGHEST(HIGH,20);

	VALUE2 = LOWEST(LOW,20);

	IF RSI(CLOSE,14) < 20 THEN

	    BEGIN

	         VALUE1 = HIGHEST(HIGH,5);

	          VALUE2 = LOWEST(LOW,5);

	     END;

BUY NEXT BAR AT VALUE1 STOP;

SELL NEXT BAR AT VALUE2 STOP;

END;