Miftada Handoyo Yanuar / Perfil
- Informações
|
no
experiência
|
1
produtos
|
7
versão demo
|
|
0
trabalhos
|
1
sinais
|
0
assinantes
|
I am a trading system developer specializing in Expert Advisors (EAs) for MetaTrader 5, with a strong focus on XAUUSD (Gold) trading strategies.
My work is centered around building algorithmic trading systems that combine trend following, momentum analysis, and scalping techniques to capture high-probability market opportunities.
I aim to create EAs that are:
📊 Structured and rule-based
⚡ Fast and responsive for scalping conditions
🧠 Emotion-free and fully automated
🛡️ Designed with risk management in mind
My current projects include smart scalping systems such as AurumX Scalper Pro, built to help traders execute disciplined entries in volatile gold markets.
I continuously improve my strategies through backtesting, optimization, and real-market validation to ensure consistent performance across different market conditions.
Adicione amigos através do seu perfil ou da pesquisa de usuário e você poderá ver se eles estão online
XAUUSD Scalp EA V13 - Ultimate Edition
Double Play + News Filter + Dynamic TP + OB/OS Direction-Aware + Trailing Lock
================================================================================
VERSI: 13.00
TANGGAL: 16 Juni 2026
FILE: XAUUSD_ScalpEA_V13.mq5
================================================================================
PERUBAHAN DARI V12 -> V13
================================================================================
1. FIX: CalendarEventById() menggantikan values[i].event_name (field tidak ada)
2. OB/OS DIRECTION-AWARE GUARD (PENTING!):
- BUY + Overbought = CANCEL (momentum LAWAN - mau beli tapi jenuh beli)
- BUY + Oversold = SAFE (momentum SEARAH - beli saat oversold = bounce!)
- SELL + Oversold = CANCEL (momentum LAWAN - mau jual tapi jenuh jual)
- SELL + Overbought = SAFE (momentum SEARAH - jual saat overbought = rejection!)
Sebelumnya V12 hanya cek OB/OS tanpa mempertimbangkan arah order.
Sekarang guard lebih pintar: hanya cancel kalau momentum BERLAWANAN.
================================================================================
FITUR LENGKAP V13 (7 LAYER DEFENSE)
================================================================================
LAYER 1: PRE-FILL OB/OS GUARD (Direction-Aware)
- Cek SETIAP TICK sebelum order fill
- Hanya cancel kalau momentum LAWAN arah order
- Biarkan kalau momentum SEARAH (bounce/rejection opportunity)
- Threshold: 2/3 TF (M5, M15, H1) harus agree
LAYER 2: SAFETY NET SL
- Set SL $8 kalau position fill tanpa SL
- Cek SETIAP TICK
LAYER 3: HARD STOP LOSS
- Force close kalau floating loss > $10
- Anti-slippage (SL broker bisa di-gap)
LAYER 4: TRAILING PROFIT LOCK
- Aktif setelah profit > $3
- Kunci 70% dari max profit
- SL hanya maju, TIDAK PERNAH mundur
- Contoh: profit $10 -> lock $7, profit $50 -> lock $35
LAYER 5: DOUBLE PLAY (Layering Orders)
- 2 order LIMIT sekaligus di level S/R berbeda
- Order 2 di jarak $2 dari order 1 (configurable)
- Kedua order dikawal PreFill Guard
- Lot order 2 bisa beda (default 0.01)
LAYER 6: NEWS FILTER (Economic Calendar)
- Skip entry 30 menit SEBELUM high-impact news
- Skip entry 30 menit SESUDAH high-impact news
- Filter negara: US (configurable: "US,EUR,GBP")
- Min impact level: Medium (configurable: 1=Low, 2=Medium, 3=High)
- Menggunakan MQL5 CalendarEventById() API
LAYER 7: DYNAMIC TP (Trend Strength Based)
- Weak trend (2/6 TF align): TP $1 (default)
- Medium trend (3/6 TF + ADX >20): TP $1.5
- Strong trend (4+ TF + ADX >25 + RSI trending): TP $2
- TP menyesuaikan kekuatan trend!
================================================================================
PARAMETER INPUT
================================================================================
--- Basic ---
MagicNumber = 20260616
LotSize = 0.01
Reversal_TP = 1.0 (base TP, dynamic: x1 / x1.5 / x2)
Min_SR_Dist = 2.0 (min $2 dari harga)
Max_SR_Dist = 6.0 (max $6 dari harga)
--- Trend Following ---
Trend_TP_Min = 3.0
Trend_TP_Max = 5.0
Trend_RSI_Exit = 65.0
--- Pre-Fill Guard ---
Prefill_Check_Dist = 1.5 (cek saat price < $1.5 dari entry)
Prefill_OB_Threshold = 70.0 (overbought threshold)
Prefill_OS_Threshold = 30.0 (oversold threshold)
--- Alignment ---
Min_TF_Align = 2 (minimal 2/6 TF)
--- RSI ---
RSI_Extreme_High = 80.0
RSI_Extreme_Low = 20.0
RSI_Strong_Uptrend = 75.0
RSI_Strong_Downtrend = 25.0
--- Safety ---
Emergency_SL = 8.0 (SL fixed)
Hard_Stop_Loss = 10.0 (force close kalau loss > ini)
Breakout_Range = 5.0 (skip kalau range > $5/5min)
--- Smart Cancel ---
Max_Order_Age = 10 (cancel kalau > 10 menit)
Cancel_Price_Dist = 5.0 (cancel kalau price move > $5)
--- ADX ---
ADX_Min = 20.0 (min ADX untuk entry)
--- Double Play (V12+) ---
Enable_Double_Play = true
Second_Order_Dist = 2.0 (jarak order kedua $2)
Second_Order_Lot = 0.01 (lot order kedua)
--- News Filter (V12+) ---
Enable_News_Filter = true
News_Minutes_Before = 30 (skip 30min sebelum news)
News_Minutes_After = 30 (skip 30min sesudah news)
News_Countries = "US" (filter negara)
News_Min_Impact = 2 (1=Low, 2=Medium, 3=High)
--- Trend Rider Exit (V10+) ---
Min_Profit_For_RSI_Exit = 1.0
Exit_RSI_Buy = 40.0 (close BUY kalau M1 RSI < 40)
Exit_RSI_Sell = 60.0 (close SELL kalau M1 RSI > 60)
--- Trailing Profit Lock (V11+) ---
Trail_Activation_Profit = 3.0 (aktif setelah profit $3)
Trail_Lock_Percent = 70.0 (kunci 70% dari max profit)
--- Bounce ---
Max_Bounce_Count = 3
Total_Timeout_Min = 15
================================================================================
LOGIKA OB/OS DIRECTION-AWARE (V13 KEY FEATURE)
================================================================================
+------------------+------------+-------------+---------------------------+
| Order Direction | OB/OS | Aksi | Alasan |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Overbought | CANCEL | Momentum LAWAN |
| | | | Mau beli tapi harga sudah |
| | | | jenuh beli = bahaya! |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Oversold | SAFE (biar) | Momentum SEARAH |
| | | | Mau beli saat jenuh jual |
| | | | = bounce opportunity! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Oversold | CANCEL | Momentum LAWAN |
| | | | Mau jual tapi harga sudah |
| | | | jenuh jual = bahaya! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Overbought | SAFE (biar) | Momentum SEARAH |
| | | | Mau jual saat jenuh beli |
| | | | = rejection opportunity! |
+------------------+------------+-------------+---------------------------+
Intinya: OB/OS hanya berbahaya kalau BERLAWANAN dengan arah order.
Kalau SEARAH, justru itu momen terbaik untuk entry!
================================================================================
CARA INSTALL & TEST
================================================================================
1. Copy XAUUSD_ScalpEA_V13.mq5 ke folder:
C:\Users\Hp\AppData\Roaming\MetaQuotes\Terminal\D0E8209F...\MQL5\Experts\
2. MetaEditor (F4) -> Open -> XAUUSD_ScalpEA_V13.mq5
3. Compile (F7) -> pastikan 0 errors, 0 warnings
4. Strategy Tester:
- Expert: XAUUSD_ScalpEA_V13
- Symbol: XAUUSD
- Period: M5
- Date: 2026.01.01 - 2026.06.15
- Deposit: 500 USD
- Leverage: 1:500
5. Journal tab -> cari: "V13-FRESH"
6. Live: Drag ke chart XAUUSD M5, pastikan "Allow Algo Trading" ON
================================================================================
DISCLAIMER
================================================================================
EA ini dibuat untuk scalping XAUUSD dengan risk management ketat.
Tidak ada EA yang bisa menjamin profit 100%. Selalu test di demo/strategy
tester sebelum live. Past performance != future results.
Max loss per trade: $10 (Hard Stop Loss)
Max loss per day: tergantung jumlah trade
Balance minimum recommended: $20+
================================================================================
XAUUSD Scalp EA V13 - Ultimate Edition
Double Play + News Filter + Dynamic TP + OB/OS Direction-Aware + Trailing Lock
================================================================================
VERSI: 13.00
TANGGAL: 16 Juni 2026
FILE: XAUUSD_ScalpEA_V13.mq5
================================================================================
PERUBAHAN DARI V12 -> V13
================================================================================
1. FIX: CalendarEventById() menggantikan values[i].event_name (field tidak ada)
2. OB/OS DIRECTION-AWARE GUARD (PENTING!):
- BUY + Overbought = CANCEL (momentum LAWAN - mau beli tapi jenuh beli)
- BUY + Oversold = SAFE (momentum SEARAH - beli saat oversold = bounce!)
- SELL + Oversold = CANCEL (momentum LAWAN - mau jual tapi jenuh jual)
- SELL + Overbought = SAFE (momentum SEARAH - jual saat overbought = rejection!)
Sebelumnya V12 hanya cek OB/OS tanpa mempertimbangkan arah order.
Sekarang guard lebih pintar: hanya cancel kalau momentum BERLAWANAN.
================================================================================
FITUR LENGKAP V13 (7 LAYER DEFENSE)
================================================================================
LAYER 1: PRE-FILL OB/OS GUARD (Direction-Aware)
- Cek SETIAP TICK sebelum order fill
- Hanya cancel kalau momentum LAWAN arah order
- Biarkan kalau momentum SEARAH (bounce/rejection opportunity)
- Threshold: 2/3 TF (M5, M15, H1) harus agree
LAYER 2: SAFETY NET SL
- Set SL $8 kalau position fill tanpa SL
- Cek SETIAP TICK
LAYER 3: HARD STOP LOSS
- Force close kalau floating loss > $10
- Anti-slippage (SL broker bisa di-gap)
LAYER 4: TRAILING PROFIT LOCK
- Aktif setelah profit > $3
- Kunci 70% dari max profit
- SL hanya maju, TIDAK PERNAH mundur
- Contoh: profit $10 -> lock $7, profit $50 -> lock $35
LAYER 5: DOUBLE PLAY (Layering Orders)
- 2 order LIMIT sekaligus di level S/R berbeda
- Order 2 di jarak $2 dari order 1 (configurable)
- Kedua order dikawal PreFill Guard
- Lot order 2 bisa beda (default 0.01)
LAYER 6: NEWS FILTER (Economic Calendar)
- Skip entry 30 menit SEBELUM high-impact news
- Skip entry 30 menit SESUDAH high-impact news
- Filter negara: US (configurable: "US,EUR,GBP")
- Min impact level: Medium (configurable: 1=Low, 2=Medium, 3=High)
- Menggunakan MQL5 CalendarEventById() API
LAYER 7: DYNAMIC TP (Trend Strength Based)
- Weak trend (2/6 TF align): TP $1 (default)
- Medium trend (3/6 TF + ADX >20): TP $1.5
- Strong trend (4+ TF + ADX >25 + RSI trending): TP $2
- TP menyesuaikan kekuatan trend!
================================================================================
PARAMETER INPUT
================================================================================
--- Basic ---
MagicNumber = 20260616
LotSize = 0.01
Reversal_TP = 1.0 (base TP, dynamic: x1 / x1.5 / x2)
Min_SR_Dist = 2.0 (min $2 dari harga)
Max_SR_Dist = 6.0 (max $6 dari harga)
--- Trend Following ---
Trend_TP_Min = 3.0
Trend_TP_Max = 5.0
Trend_RSI_Exit = 65.0
--- Pre-Fill Guard ---
Prefill_Check_Dist = 1.5 (cek saat price < $1.5 dari entry)
Prefill_OB_Threshold = 70.0 (overbought threshold)
Prefill_OS_Threshold = 30.0 (oversold threshold)
--- Alignment ---
Min_TF_Align = 2 (minimal 2/6 TF)
--- RSI ---
RSI_Extreme_High = 80.0
RSI_Extreme_Low = 20.0
RSI_Strong_Uptrend = 75.0
RSI_Strong_Downtrend = 25.0
--- Safety ---
Emergency_SL = 8.0 (SL fixed)
Hard_Stop_Loss = 10.0 (force close kalau loss > ini)
Breakout_Range = 5.0 (skip kalau range > $5/5min)
--- Smart Cancel ---
Max_Order_Age = 10 (cancel kalau > 10 menit)
Cancel_Price_Dist = 5.0 (cancel kalau price move > $5)
--- ADX ---
ADX_Min = 20.0 (min ADX untuk entry)
--- Double Play (V12+) ---
Enable_Double_Play = true
Second_Order_Dist = 2.0 (jarak order kedua $2)
Second_Order_Lot = 0.01 (lot order kedua)
--- News Filter (V12+) ---
Enable_News_Filter = true
News_Minutes_Before = 30 (skip 30min sebelum news)
News_Minutes_After = 30 (skip 30min sesudah news)
News_Countries = "US" (filter negara)
News_Min_Impact = 2 (1=Low, 2=Medium, 3=High)
--- Trend Rider Exit (V10+) ---
Min_Profit_For_RSI_Exit = 1.0
Exit_RSI_Buy = 40.0 (close BUY kalau M1 RSI < 40)
Exit_RSI_Sell = 60.0 (close SELL kalau M1 RSI > 60)
--- Trailing Profit Lock (V11+) ---
Trail_Activation_Profit = 3.0 (aktif setelah profit $3)
Trail_Lock_Percent = 70.0 (kunci 70% dari max profit)
--- Bounce ---
Max_Bounce_Count = 3
Total_Timeout_Min = 15
================================================================================
LOGIKA OB/OS DIRECTION-AWARE (V13 KEY FEATURE)
================================================================================
+------------------+------------+-------------+---------------------------+
| Order Direction | OB/OS | Aksi | Alasan |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Overbought | CANCEL | Momentum LAWAN |
| | | | Mau beli tapi harga sudah |
| | | | jenuh beli = bahaya! |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Oversold | SAFE (biar) | Momentum SEARAH |
| | | | Mau beli saat jenuh jual |
| | | | = bounce opportunity! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Oversold | CANCEL | Momentum LAWAN |
| | | | Mau jual tapi harga sudah |
| | | | jenuh jual = bahaya! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Overbought | SAFE (biar) | Momentum SEARAH |
| | | | Mau jual saat jenuh beli |
| | | | = rejection opportunity! |
+------------------+------------+-------------+---------------------------+
Intinya: OB/OS hanya berbahaya kalau BERLAWANAN dengan arah order.
Kalau SEARAH, justru itu momen terbaik untuk entry!
================================================================================
CARA INSTALL & TEST
================================================================================
1. Copy XAUUSD_ScalpEA_V13.mq5 ke folder:
C:\Users\Hp\AppData\Roaming\MetaQuotes\Terminal\D0E8209F...\MQL5\Experts\
2. MetaEditor (F4) -> Open -> XAUUSD_ScalpEA_V13.mq5
3. Compile (F7) -> pastikan 0 errors, 0 warnings
4. Strategy Tester:
- Expert: XAUUSD_ScalpEA_V13
- Symbol: XAUUSD
- Period: M5
- Date: 2026.01.01 - 2026.06.15
- Deposit: 500 USD
- Leverage: 1:500
5. Journal tab -> cari: "V13-FRESH"
6. Live: Drag ke chart XAUUSD M5, pastikan "Allow Algo Trading" ON
================================================================================
DISCLAIMER
================================================================================
EA ini dibuat untuk scalping XAUUSD dengan risk management ketat.
Tidak ada EA yang bisa menjamin profit 100%. Selalu test di demo/strategy
tester sebelum live. Past performance != future results.
Max loss per trade: $10 (Hard Stop Loss)
Max loss per day: tergantung jumlah trade
Balance minimum recommended: $20+
================================================================================
XAUUSD Scalp EA V13 - Ultimate Edition
Double Play + News Filter + Dynamic TP + OB/OS Direction-Aware + Trailing Lock
================================================================================
VERSI: 13.00
TANGGAL: 16 Juni 2026
FILE: XAUUSD_ScalpEA_V13.mq5
================================================================================
PERUBAHAN DARI V12 -> V13
================================================================================
1. FIX: CalendarEventById() menggantikan values[i].event_name (field tidak ada)
2. OB/OS DIRECTION-AWARE GUARD (PENTING!):
- BUY + Overbought = CANCEL (momentum LAWAN - mau beli tapi jenuh beli)
- BUY + Oversold = SAFE (momentum SEARAH - beli saat oversold = bounce!)
- SELL + Oversold = CANCEL (momentum LAWAN - mau jual tapi jenuh jual)
- SELL + Overbought = SAFE (momentum SEARAH - jual saat overbought = rejection!)
Sebelumnya V12 hanya cek OB/OS tanpa mempertimbangkan arah order.
Sekarang guard lebih pintar: hanya cancel kalau momentum BERLAWANAN.
================================================================================
FITUR LENGKAP V13 (7 LAYER DEFENSE)
================================================================================
LAYER 1: PRE-FILL OB/OS GUARD (Direction-Aware)
- Cek SETIAP TICK sebelum order fill
- Hanya cancel kalau momentum LAWAN arah order
- Biarkan kalau momentum SEARAH (bounce/rejection opportunity)
- Threshold: 2/3 TF (M5, M15, H1) harus agree
LAYER 2: SAFETY NET SL
- Set SL $8 kalau position fill tanpa SL
- Cek SETIAP TICK
LAYER 3: HARD STOP LOSS
- Force close kalau floating loss > $10
- Anti-slippage (SL broker bisa di-gap)
LAYER 4: TRAILING PROFIT LOCK
- Aktif setelah profit > $3
- Kunci 70% dari max profit
- SL hanya maju, TIDAK PERNAH mundur
- Contoh: profit $10 -> lock $7, profit $50 -> lock $35
LAYER 5: DOUBLE PLAY (Layering Orders)
- 2 order LIMIT sekaligus di level S/R berbeda
- Order 2 di jarak $2 dari order 1 (configurable)
- Kedua order dikawal PreFill Guard
- Lot order 2 bisa beda (default 0.01)
LAYER 6: NEWS FILTER (Economic Calendar)
- Skip entry 30 menit SEBELUM high-impact news
- Skip entry 30 menit SESUDAH high-impact news
- Filter negara: US (configurable: "US,EUR,GBP")
- Min impact level: Medium (configurable: 1=Low, 2=Medium, 3=High)
- Menggunakan MQL5 CalendarEventById() API
LAYER 7: DYNAMIC TP (Trend Strength Based)
- Weak trend (2/6 TF align): TP $1 (default)
- Medium trend (3/6 TF + ADX >20): TP $1.5
- Strong trend (4+ TF + ADX >25 + RSI trending): TP $2
- TP menyesuaikan kekuatan trend!
================================================================================
PARAMETER INPUT
================================================================================
--- Basic ---
MagicNumber = 20260616
LotSize = 0.01
Reversal_TP = 1.0 (base TP, dynamic: x1 / x1.5 / x2)
Min_SR_Dist = 2.0 (min $2 dari harga)
Max_SR_Dist = 6.0 (max $6 dari harga)
--- Trend Following ---
Trend_TP_Min = 3.0
Trend_TP_Max = 5.0
Trend_RSI_Exit = 65.0
--- Pre-Fill Guard ---
Prefill_Check_Dist = 1.5 (cek saat price < $1.5 dari entry)
Prefill_OB_Threshold = 70.0 (overbought threshold)
Prefill_OS_Threshold = 30.0 (oversold threshold)
--- Alignment ---
Min_TF_Align = 2 (minimal 2/6 TF)
--- RSI ---
RSI_Extreme_High = 80.0
RSI_Extreme_Low = 20.0
RSI_Strong_Uptrend = 75.0
RSI_Strong_Downtrend = 25.0
--- Safety ---
Emergency_SL = 8.0 (SL fixed)
Hard_Stop_Loss = 10.0 (force close kalau loss > ini)
Breakout_Range = 5.0 (skip kalau range > $5/5min)
--- Smart Cancel ---
Max_Order_Age = 10 (cancel kalau > 10 menit)
Cancel_Price_Dist = 5.0 (cancel kalau price move > $5)
--- ADX ---
ADX_Min = 20.0 (min ADX untuk entry)
--- Double Play (V12+) ---
Enable_Double_Play = true
Second_Order_Dist = 2.0 (jarak order kedua $2)
Second_Order_Lot = 0.01 (lot order kedua)
--- News Filter (V12+) ---
Enable_News_Filter = true
News_Minutes_Before = 30 (skip 30min sebelum news)
News_Minutes_After = 30 (skip 30min sesudah news)
News_Countries = "US" (filter negara)
News_Min_Impact = 2 (1=Low, 2=Medium, 3=High)
--- Trend Rider Exit (V10+) ---
Min_Profit_For_RSI_Exit = 1.0
Exit_RSI_Buy = 40.0 (close BUY kalau M1 RSI < 40)
Exit_RSI_Sell = 60.0 (close SELL kalau M1 RSI > 60)
--- Trailing Profit Lock (V11+) ---
Trail_Activation_Profit = 3.0 (aktif setelah profit $3)
Trail_Lock_Percent = 70.0 (kunci 70% dari max profit)
--- Bounce ---
Max_Bounce_Count = 3
Total_Timeout_Min = 15
================================================================================
LOGIKA OB/OS DIRECTION-AWARE (V13 KEY FEATURE)
================================================================================
+------------------+------------+-------------+---------------------------+
| Order Direction | OB/OS | Aksi | Alasan |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Overbought | CANCEL | Momentum LAWAN |
| | | | Mau beli tapi harga sudah |
| | | | jenuh beli = bahaya! |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Oversold | SAFE (biar) | Momentum SEARAH |
| | | | Mau beli saat jenuh jual |
| | | | = bounce opportunity! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Oversold | CANCEL | Momentum LAWAN |
| | | | Mau jual tapi harga sudah |
| | | | jenuh jual = bahaya! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Overbought | SAFE (biar) | Momentum SEARAH |
| | | | Mau jual saat jenuh beli |
| | | | = rejection opportunity! |
+------------------+------------+-------------+---------------------------+
Intinya: OB/OS hanya berbahaya kalau BERLAWANAN dengan arah order.
Kalau SEARAH, justru itu momen terbaik untuk entry!
================================================================================
CARA INSTALL & TEST
================================================================================
1. Copy XAUUSD_ScalpEA_V13.mq5 ke folder:
C:\Users\Hp\AppData\Roaming\MetaQuotes\Terminal\D0E8209F...\MQL5\Experts\
2. MetaEditor (F4) -> Open -> XAUUSD_ScalpEA_V13.mq5
3. Compile (F7) -> pastikan 0 errors, 0 warnings
4. Strategy Tester:
- Expert: XAUUSD_ScalpEA_V13
- Symbol: XAUUSD
- Period: M5
- Date: 2026.01.01 - 2026.06.15
- Deposit: 500 USD
- Leverage: 1:500
5. Journal tab -> cari: "V13-FRESH"
6. Live: Drag ke chart XAUUSD M5, pastikan "Allow Algo Trading" ON
================================================================================
DISCLAIMER
================================================================================
EA ini dibuat untuk scalping XAUUSD dengan risk management ketat.
Tidak ada EA yang bisa menjamin profit 100%. Selalu test di demo/strategy
tester sebelum live. Past performance != future results.
Max loss per trade: $10 (Hard Stop Loss)
Max loss per day: tergantung jumlah trade
Balance minimum recommended: $20+
================================================================================
XAUUSD Scalp EA V13 - Ultimate Edition
Double Play + News Filter + Dynamic TP + OB/OS Direction-Aware + Trailing Lock
================================================================================
VERSI: 13.00
TANGGAL: 16 Juni 2026
FILE: XAUUSD_ScalpEA_V13.mq5
================================================================================
PERUBAHAN DARI V12 -> V13
================================================================================
1. FIX: CalendarEventById() menggantikan values[i].event_name (field tidak ada)
2. OB/OS DIRECTION-AWARE GUARD (PENTING!):
- BUY + Overbought = CANCEL (momentum LAWAN - mau beli tapi jenuh beli)
- BUY + Oversold = SAFE (momentum SEARAH - beli saat oversold = bounce!)
- SELL + Oversold = CANCEL (momentum LAWAN - mau jual tapi jenuh jual)
- SELL + Overbought = SAFE (momentum SEARAH - jual saat overbought = rejection!)
Sebelumnya V12 hanya cek OB/OS tanpa mempertimbangkan arah order.
Sekarang guard lebih pintar: hanya cancel kalau momentum BERLAWANAN.
================================================================================
FITUR LENGKAP V13 (7 LAYER DEFENSE)
================================================================================
LAYER 1: PRE-FILL OB/OS GUARD (Direction-Aware)
- Cek SETIAP TICK sebelum order fill
- Hanya cancel kalau momentum LAWAN arah order
- Biarkan kalau momentum SEARAH (bounce/rejection opportunity)
- Threshold: 2/3 TF (M5, M15, H1) harus agree
LAYER 2: SAFETY NET SL
- Set SL $8 kalau position fill tanpa SL
- Cek SETIAP TICK
LAYER 3: HARD STOP LOSS
- Force close kalau floating loss > $10
- Anti-slippage (SL broker bisa di-gap)
LAYER 4: TRAILING PROFIT LOCK
- Aktif setelah profit > $3
- Kunci 70% dari max profit
- SL hanya maju, TIDAK PERNAH mundur
- Contoh: profit $10 -> lock $7, profit $50 -> lock $35
LAYER 5: DOUBLE PLAY (Layering Orders)
- 2 order LIMIT sekaligus di level S/R berbeda
- Order 2 di jarak $2 dari order 1 (configurable)
- Kedua order dikawal PreFill Guard
- Lot order 2 bisa beda (default 0.01)
LAYER 6: NEWS FILTER (Economic Calendar)
- Skip entry 30 menit SEBELUM high-impact news
- Skip entry 30 menit SESUDAH high-impact news
- Filter negara: US (configurable: "US,EUR,GBP")
- Min impact level: Medium (configurable: 1=Low, 2=Medium, 3=High)
- Menggunakan MQL5 CalendarEventById() API
LAYER 7: DYNAMIC TP (Trend Strength Based)
- Weak trend (2/6 TF align): TP $1 (default)
- Medium trend (3/6 TF + ADX >20): TP $1.5
- Strong trend (4+ TF + ADX >25 + RSI trending): TP $2
- TP menyesuaikan kekuatan trend!
================================================================================
PARAMETER INPUT
================================================================================
--- Basic ---
MagicNumber = 20260616
LotSize = 0.01
Reversal_TP = 1.0 (base TP, dynamic: x1 / x1.5 / x2)
Min_SR_Dist = 2.0 (min $2 dari harga)
Max_SR_Dist = 6.0 (max $6 dari harga)
--- Trend Following ---
Trend_TP_Min = 3.0
Trend_TP_Max = 5.0
Trend_RSI_Exit = 65.0
--- Pre-Fill Guard ---
Prefill_Check_Dist = 1.5 (cek saat price < $1.5 dari entry)
Prefill_OB_Threshold = 70.0 (overbought threshold)
Prefill_OS_Threshold = 30.0 (oversold threshold)
--- Alignment ---
Min_TF_Align = 2 (minimal 2/6 TF)
--- RSI ---
RSI_Extreme_High = 80.0
RSI_Extreme_Low = 20.0
RSI_Strong_Uptrend = 75.0
RSI_Strong_Downtrend = 25.0
--- Safety ---
Emergency_SL = 8.0 (SL fixed)
Hard_Stop_Loss = 10.0 (force close kalau loss > ini)
Breakout_Range = 5.0 (skip kalau range > $5/5min)
--- Smart Cancel ---
Max_Order_Age = 10 (cancel kalau > 10 menit)
Cancel_Price_Dist = 5.0 (cancel kalau price move > $5)
--- ADX ---
ADX_Min = 20.0 (min ADX untuk entry)
--- Double Play (V12+) ---
Enable_Double_Play = true
Second_Order_Dist = 2.0 (jarak order kedua $2)
Second_Order_Lot = 0.01 (lot order kedua)
--- News Filter (V12+) ---
Enable_News_Filter = true
News_Minutes_Before = 30 (skip 30min sebelum news)
News_Minutes_After = 30 (skip 30min sesudah news)
News_Countries = "US" (filter negara)
News_Min_Impact = 2 (1=Low, 2=Medium, 3=High)
--- Trend Rider Exit (V10+) ---
Min_Profit_For_RSI_Exit = 1.0
Exit_RSI_Buy = 40.0 (close BUY kalau M1 RSI < 40)
Exit_RSI_Sell = 60.0 (close SELL kalau M1 RSI > 60)
--- Trailing Profit Lock (V11+) ---
Trail_Activation_Profit = 3.0 (aktif setelah profit $3)
Trail_Lock_Percent = 70.0 (kunci 70% dari max profit)
--- Bounce ---
Max_Bounce_Count = 3
Total_Timeout_Min = 15
================================================================================
LOGIKA OB/OS DIRECTION-AWARE (V13 KEY FEATURE)
================================================================================
+------------------+------------+-------------+---------------------------+
| Order Direction | OB/OS | Aksi | Alasan |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Overbought | CANCEL | Momentum LAWAN |
| | | | Mau beli tapi harga sudah |
| | | | jenuh beli = bahaya! |
+------------------+------------+-------------+---------------------------+
| BUY LIMIT | Oversold | SAFE (biar) | Momentum SEARAH |
| | | | Mau beli saat jenuh jual |
| | | | = bounce opportunity! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Oversold | CANCEL | Momentum LAWAN |
| | | | Mau jual tapi harga sudah |
| | | | jenuh jual = bahaya! |
+------------------+------------+-------------+---------------------------+
| SELL LIMIT | Overbought | SAFE (biar) | Momentum SEARAH |
| | | | Mau jual saat jenuh beli |
| | | | = rejection opportunity! |
+------------------+------------+-------------+---------------------------+
Intinya: OB/OS hanya berbahaya kalau BERLAWANAN dengan arah order.
Kalau SEARAH, justru itu momen terbaik untuk entry!
================================================================================
CARA INSTALL & TEST
================================================================================
1. Copy XAUUSD_ScalpEA_V13.mq5 ke folder:
C:\Users\Hp\AppData\Roaming\MetaQuotes\Terminal\D0E8209F...\MQL5\Experts\
2. MetaEditor (F4) -> Open -> XAUUSD_ScalpEA_V13.mq5
3. Compile (F7) -> pastikan 0 errors, 0 warnings
4. Strategy Tester:
- Expert: XAUUSD_ScalpEA_V13
- Symbol: XAUUSD
- Period: M5
- Date: 2026.01.01 - 2026.06.15
- Deposit: 500 USD
- Leverage: 1:500
5. Journal tab -> cari: "V13-FRESH"
6. Live: Drag ke chart XAUUSD M5, pastikan "Allow Algo Trading" ON
================================================================================
DISCLAIMER
================================================================================
EA ini dibuat untuk scalping XAUUSD dengan risk management ketat.
Tidak ada EA yang bisa menjamin profit 100%. Selalu test di demo/strategy
tester sebelum live. Past performance != future results.
Max loss per trade: $10 (Hard Stop Loss)
Max loss per day: tergantung jumlah trade
Balance minimum recommended: $20+
================================================================================
# New Scalping EA for XAUUSD Released: XAUUSD Scalp EA V3 Focuses on Multi-Strategy Precision **JAKARTA, June 16, 2026** — A new automated trading system, **XAUUSD Scalp EA V3**, has been released for the MetaTrader 5 platform, promising a more sophisticated approach to gold (XAUUSD) scalping through a multi-layered strategy system. ### A Departure from "Guaranteed Profit" Myths Unlike many trading robots that advertise "guaranteed" returns, the developers of XAUUSD Scalp EA V3 have taken a
A massive momentum shift just hit the gold market!
From a slow bearish drift into a high-volatility breakout phase, price action on XAUUSD M1 shows a powerful institutional-style reversal followed by an aggressive bullish expansion.
📈 Key market behavior:
Clean downtrend → liquidity sweep
Sharp reversal from demand zone
Strong bullish impulse breakout
Continuation momentum with no major pullback
💥 This is exactly the type of movement where AurumX Scalper Pro / PRO SCALPING AI SYSTEM thrives:
✔ Fast trend detection
✔ Early reversal entry logic
✔ Momentum confirmation filtering
✔ Scalping precision entries during breakout expansion
🧠 Market insight:
This is not random movement — it reflects a liquidity grab followed by aggressive buy-side dominance, typical of high-volume sessions in Gold.
⚡ Opportunity type:
→ Trend Reversal + Breakout Continuation
→ High-probability scalping zone
→ Strong momentum follow-through conditions
🚀 Result:
Fast price expansion = ideal environment for algorithmic scalping systems designed for XAUUSD volatility.
If you want, I can also:
🔥 make it more “clickbait viral” (like MQL5 top sellers style)
🔥 or rewrite it as EA product marketing page (with buy conversion focus)
🔥 or create daily signal post template for your EA updates
Your Chance https://www.mql5.com/en/market/product/177871?source=Site+Market+MT5+New+Search+Rating006%3aaurum
🔥 AurumX Scalper Pro – Smart XAUUSD Trading EA AurumX Scalper Pro is an Expert Advisor (EA) for MetaTrader 5, specifically designed for trading XAUUSD (Gold) using a scalping approach based on trend and market momentum . This EA helps traders capture fast entry opportunities in the market with a structured trading system, making trading more disciplined, measurable, and emotion-free . ⚙️ Key Features ✔ Smart Scalping Logic (Trend + Momentum Filter) ✔ Auto Entry & Exit System ✔ Built-in Risk
