Filtro X trading system (1 Viewer)

piccolo_trader

Nuovo forumer
Questo filtro x Vt può essere utilizzato x capire se siamo in trading range oppure se c'è una tendenza, ovviamente i parametri non sn ben settati xò l ho testato con spmib tf 1 ora e da buoni segnali...x il resto fate voi...:up::up::up:

Var: miavar(0),MioSTDDEV0,MioSTDDEV1;
MioSTDDEV0 = STDDEV(C, 50, 0);
MioSTDDEV1 = STDDEV(C, 50, 0);
SECTION_ENTERLONG:
if barsince (MioSTDDEV0 > MioSTDDEV1 [1]) = 3 then
EnterLong(NextBar, AtOpen);
endif;
END_SECTION
SECTION_EXITLONG:
if barsince (MioSTDDEV0 < MioSTDDEV1 [1]) = 3 then
ExitLong(NextBar, AtOpen);
endif;
END_SECTION
 

Manitz

lucamanitto.it - Marketing x startup
Che codice è? VT?

Sarebbe carino averna una versione ProRealTime. O almeno la traduzione "italiana" per poterne comprendere i meccanismi
:up:
 

Users who are viewing this thread

Alto