Ciao,
allego listato di un semplice trading system.
Vorrei però testare il sistema di trading tra le nove e le diciotto, nell'arco di una settimana borsistica.
Le funzioni temporali che ho inserito mi sembrano corrette....... ma il sistema non mi esce dal mercato.
Purtroppo non riesco ad individuare l'errore!!!
Grazie per l'aiuto.

Buy Script

#beeSwingTrail-in RT
INPUTS: @periods(10), @trailAmount(100), @trailPercent(10), @stopLoss(400), @timeGO(900), @timeOUT(1800)

SET TRAILING_STOP = @trailAmount
SET TRAILING_PERCENT = @trailPercent
SET STOP_LOSS = @stopLoss

SET timeTrading =(TIME > @timeGO AND TIME < @timeOUT)
OR TIME > @timeOUT

SET hh = HighestHighValue(@periods)
#SET ll = LowestLowValue(@periods)

#HIGH = hh
REF(HIGH, 1) = REF(hh, 1)


Sell Script

SET timeTrading =(TIME > @timeGO AND TIME < @timeOUT)
OR TIME > @timeOUT

#SET hh = HighestHighValue(@periods)
SET ll = LowestLowValue(@periods)

#LOW = ll
REF(LOW, 1) = REF(ll, 1)