DEFPARAM CumulateOrders = False // Posizioni cumulate disattivate
// Il sistema cancellerà tutti gli ordini in attesa e chiuderà tutte le posizioni a 0:00. Dopo l’orario “Flat Before” non saranno piazzati nuovi ordini o posizioni.
DEFPARAM FLATBEFORE = 010000
// Cancellare tutti gli ordini in attesa e chiudere tutte le posizioni all’orario “Flat After”
DEFPARAM FLATAFTER = 235500
Otd = (Barindex – TradeIndex(1) > IntradayBarIndex)
// giorni tradabili specifici della settimana DAL LUNEDI AL VENERDI
daysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0
indicator1 = SuperTrend[4,10]
c1 = (close[1] CROSSES OVER indicator1)
indicator2 = ExponentialAverage[21](close)
c2 = (close[1] > indicator2)
c3 = (high[1] > open [2])
IF c1 AND c2 AND c3 AND not daysForbiddenEntry AND Otd THEN
BUY 1 CONTRACT AT MARKET
ENDIF
// Stop e target
SET STOP pLOSS 200
SET TARGET pPROFIT 300