Ho questo problema con questo codice. Una volta che inserisce l ordine a fine giornata non lo cancella e me lo ritrovo attivo nella lista degli ordini. Grazie.
DEFPARAM CumulateOrders=true
K=(HIGH-LOW)*1
X1 =23
X2 =5
c4=barindex-tradeindex=1
//Long entry
if (High-Low) <= X1 and (High-Low) >= X2 then
buy 3shares at close + K stop
endif
//stop loss massimo in punti dal prezzo ingresso
if LongOnMarket and c4 then
SELL AT MARKET
endif
//Short entry
if (High-Low) <= X1 and (High-Low) >= X2 then
sellshort 3 shares at close- K stop
endif
//stop loss massimo in punti dal prezzo ingresso
If ShortOnMarket AND c4 THEN
EXITSHORT AT MARKEt
endif
set stop ploss 30
set target pprofit 70