//@version=4 study("High Low Breakout Strategy", shorttitle="HL Breakout", overlay=true) // Menghitung high dan low pada time frame satu jam high_1h = request.security("XAUUSD", "60", high) low_1h = request.security("XAUUSD", "60", low) // Mendeteksi high baru terbentuk new_high = high_1h > high_1h // Mendeteksi low baru terbentuk new_low = low_1h < low_1h...
//@version=4 study("High Low Breakout Strategy", shorttitle="HL Breakout", overlay=true) // Menghitung high dan low pada time frame satu jam high_1h = request.security("XAUUSD", "60", high) low_1h = request.security("XAUUSD", "60", low) // Mendeteksi high baru terbentuk new_high = high_1h > high_1h // Mendeteksi low baru terbentuk new_low = low_1h < low_1h...