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

Recent content by amtwoxtwo

  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.
Back
Top