Hi, i am new to the forum. Made a simple algo for EURUSD 1 min. DEFPARAM CumulateOrders = false defparam flatbefore =090000 defparam flatafter = 210000 // Conditions to enter long positions indicator1 = SuperTrend[10,4] c1 = (indicator1 >= close) indicator2 = RSI[14](close) c2 = (indicator2 < 30) c3 = ADX[130] > 5 IF C1 AND c2 AND c3 THEN BUY 1 CONTRACT AT MARKET ENDIF // Stops and targets SET STOP pLOSS 19 SET TARGET pPROFIT 8