• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion EURO SCALPER EA with Source code but....

I have tried back test this EA with default setting. EUR/USD Pair, TF M30, date range Jan 01, 2024 to Feb 23, 2024. Good result
 

Attachments

  • graph.jpeg
    graph.jpeg
    70.9 KB · Views: 413
  • detail.jpeg
    detail.jpeg
    76.5 KB · Views: 412
90%?Please use the 99%quality for the backtest.
And it use martingale,if your deposit not big,it will blow your account sooner or later.
 
90%?Please use the 99%quality for the backtest.
And it use martingale,if your deposit not big,it will blow your account sooner or later.
with big capital too, it's just logic, nobody can control market, so during big trend bye bye
 
SCAM EA!!


EA membaca hasil dari riwayat pesanan untuk “curang” di Strategy Tester
if (OrderSelect(G_i_2, 0, 1) && OrderMagicNumber() == I_i_0) {
G_l_1 = OrderCloseTime();
if (G_l_1 >= iTime(_Symbol, 1440, 0) && OrderType() <= OP_SELL) {
G_d_33 = OrderProfit();
G_d_33 = (G_d_33 + OrderCommission());
G_d_2 = ((G_d_33 + OrderSwap()) + G_d_2);
}
}


dan bagian lain seperti:

HistoryTotal();
OrderSelect(..., SELECT_BY_POS, MODE_HISTORY);
OrderProfit();
OrderCloseTime();

Artinya EA mengakses data order historis yang sudah ditutup untuk menghitung logika selanjutnya.
Dalam Strategy Tester, fungsi ini bisa digunakan untuk “membaca masa depan” (karena semua history sudah tersedia).
Dengan kata lain — EA ini bisa memanipulasi hasil backtest agar tampak profit, padahal tidak mungkin dilakukan pada kondisi real-time.

 
Back
Top