vorrei costruire un trading system basato su pattern di prezzo tipo:
setup= (open<close) and (open[1]>close[1]) and (high<high[1]) and (low>low[1])
entrata= high + POINTSIZE
IF NOT LongOnMarket AND setup THEN
BUY 1 CONTRACTS AT entrata stop
ENDIF
set target pprofit 10
fino a qui tutto bene…..il problema è che non riesco a mette lo stop sotto il livello low[1] del setup.
Ciao, qui di seguito come posizionare lo stop loss a “Low” [1]:
SET STOP LOSS Close-Low[1]
Ditemi se questo funziona? Grazie!