Sistemul genereaza un semnal de vanzare atunci cand o lumanare rosie apare, dupa un sir de lumanari verzi. In graficul de mai jos puteti vedea sagetile ce reprezinta semnalele de intrare in tranzactie.
REM Copyright Trader-Romania.com
REM rev 01.04.2011
REM ProBackTest Heikin-Ashi System
ONCE PreviousStatus = 0
IF BarIndex = 0 THEN
xClose = TotalPrice xOpen = Open ELSE xClose = TotalPrice xOpen = (xOpen[1] + xClose[1])/2
IF xClose >= xOpen THEN IF PreviousStatus = -1 THEN BUY 1 SHARES AT MARKET ENDIF PreviousStatus = 1
ELSE IF PreviousStatus = 1
THEN SELLSHORT 1 SHARES AT MARKET ENDIF PreviousStatus = -1
ENDIF
ENDIF
Echipa Trader-Romania va ureaza o zi placuta