//Definizione dei parametri del codice
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 = 153300
// Cancellere tutti gli ordini in attesa e chiudere tutte le posizioni all'orario "Flat After"
DEFPARAM FLATAFTER = 180000
// Impedisce al sistema di tradare in giorni specifici della settimana
daysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0
OTD = (Barindex - TradeIndex(1) > IntradayBarIndex)
// Condizioni per entrare su posizioni short
indicator1 = SuperTrend[4,52]
c1 = (close < indicator1)
c2 = low < low[1]
IF c1[1] AND c2 AND not daysForbiddenEntry and OTD THEN
SELLSHORT 10000 CASH AT MARKET
ENDIF
// Condizioni per uscire da posizioni short
indicator2 = SuperTrend[4,52]
c2 = (close CROSSES OVER indicator2)
IF c2 THEN
EXITSHORT AT MARKET
ENDIF
// Stop e target
SET STOP %LOSS 1
SET TARGET %PROFIT 0