• 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 :)

Search results

  1. amtwoxtwo

    Suggestion Menghilangkan tampilan indikator pada Strategy Tester

    if(IsTesting()){HideTestIndicators(true);}
  2. amtwoxtwo

    Suggestion Mencari source code refresh chart

    mana source indikatornya.
  3. amtwoxtwo

    Bagaimana Membuat TP tetap di harga OP Pertama Di Martingale system

    mengetahui TP op pertama. asumsi tanpa magicnumber jika ada magic number, diganti ini OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber && OrderCloseTime() == 0 double TPBuy=0, TPSell=0; for (int a = OrdersTotal() ; a >= 0; a--) {...
  4. amtwoxtwo

    Bagaimana cara Mengetahui Harga Order terakhir

    mengetahui price terakhir. asumsi tdk ada magic number jika ada magic number yg ditambah , (OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber && OrderCloseTime() == 0) double lastprice=0; for (int a = 0; a < OrdersTotal(); a++) { if(OrderSelect(a, SELECT_BY_POS,MODE_TRADES) ==...
  5. amtwoxtwo

    I need help

    enum pairs{ AUDCAD = 1, AUDJPY = 2, AUDNZD = 3, AUDUSD = 4, CHFJPY = 5, EURAUD = 6, }; input pairs yourpair = AUDCAD;
  6. amtwoxtwo

    area jawa timur yang bisa buat ea dari indikator

    knp musti jawa timur? saya jawa timur
  7. amtwoxtwo

    Suggestion I will make a Free EA with your Indicator

    try enable_daily_profit =1 then fill daily_profit 1 or smaller. so EA will stop after hit TP. it's nearly same. right?
  8. amtwoxtwo

    Suggestion I will make a Free EA with your Indicator

    it can't edited because format ex4. try to post mq4 format
  9. amtwoxtwo

    Suggestion I will make a Free EA with your Indicator

    it's already equipped with martingale mode. try disable stealth_mode
  10. amtwoxtwo

    Suggestion I will make a Free EA with your Indicator

    both of this, is martingale EA
  11. amtwoxtwo

    Suggestion I will make a Free EA with your Indicator

    cannot edit with EX4 ekstension bro.. post MQ4 to edit
  12. amtwoxtwo

    Risk Management

    void OnTick(){ double marjin = AccountMargin(); double ekuity = AccountEquity(); double saldo = AccountBalance(); if(saldo-ekuity>=ekuity*(marjin*0.1)){closeloss();} } int closeloss(){ int TotalClose=0; int Slippage=3; if(Digits==3 || Digits==5){ Slippage=Slippage*10; } for( int...
  13. amtwoxtwo

    Kalau mau mendalami pembuatan EA bacanya buku apa ya?

    kan udah di pinned tutorial di atas sub ini.. yg terpenting nalar diasah dulu. logika dipertajam.
  14. amtwoxtwo

    Tutorial 2. Belajar Function dan Looping - Webinar Cara Membuat EA (Robot Forex)

    || = atau. bisa salah satu parameter saja yg terpenuhi untuk bs memanggil fungsi dibawahnya. && = dan. semua parameter harus terpenuhi untuk memanggil fungsi dibawahnya.
  15. amtwoxtwo

    [ASK] Kalau menghitung profit pakai fungsi apa ya ?

    ketahui dulu nilai per pips dg tickvalue. lalu bagi dg lots yg digunakan. nanti ketemu nett per pips. stlh itu tinggal dikali sj dg TP yg diinginkan.
  16. amtwoxtwo

    SoeHoe nanya donk, code gini bakal masalah gak ya nantinya?

    bisa saja. namun kalo penulisan spt itu dikhawatirkan ketika real acc, jika server busy maka close tdk tereksekusi. if (mySym==Symbol() && myMagic==MagicNumber && Profit>=Need) {Modif = OrderModify(ticket,OpenPrice,0,0,0,clrNONE); if(Modif>0){Tutup =...
  17. amtwoxtwo

    [ASK] Gimana sih cara bikin auto rectangle berdasarkan pola candlestick?

    per 3 candle dibelakang atau nunggu sampe break?
  18. amtwoxtwo

    One doubt about MQL4 Programming

    limit global trades? did you say limit orders each pair?
Back
Top