1. 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 :)
    Dismiss Notice

Suggestion Mirror EURUSD USDCHF

Discussion in 'Expert Advisor atau Robot Forex' started by Trancexe, 16 Feb 2016.

  1. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    Pergerakannya terlalu cepat untuk ditangani ea. ><
     
  2. Joel Sammer

    Joel Sammer Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hi all,
    Is it working? Cos it did not make any trade on M1 EURUSD and neither USDCHF all day
     
  3. Syaleh

    Syaleh New Member

    Equity
    Credit
    Ref Point
    yes it's work with new version in [HASHTAG]#29[/HASHTAG], u should redownload it and try again.
     
    • Like Like x 3
  4. Joel Sammer

    Joel Sammer Member Credit Hunter

    Equity
    Credit
    Ref Point
    Thank you Syaleh! :) i will try!
     
  5. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    pakai distance berapa?
    saya baru bisa cek vps. ternyata sepanjang news tadi belum masuk minimal distance/gap dari rules
     
  6. Rizarma

    Rizarma Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    • Like Like x 1
  7. Joel Sammer

    Joel Sammer Member Credit Hunter

    Equity
    Credit
    Ref Point
    I had a problem with this exper. Would you help me? With default settings
    I had "Error opening SELL order: invalid price (129)"
    Any Idea?
     
  8. Rizarma

    Rizarma Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    requote if im not wrong..
    i guess this problem come from the script..
     
    • Like Like x 1
  9. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    Can you copy and paste some entries from the Experts tab/Journal tab to show this error?
     
  10. tomoforek

    tomoforek Member Credit Hunter

    Equity
    Credit
    Ref Point
    pakai insta demo 4 digit error

     

    Attached Files:

  11. Atif Ahmed

    Atif Ahmed Member Credit Hunter

    Equity
    Credit
    Ref Point
    not working ....
     
  12. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    requote sepertinya. padahal di funsgi order send sudah saya beri RefreshRates(). itu pas news kah?


    read page one
     
  13. Threadmark: V1.1 Fix Bug Order Send
    Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    saya mohon maaf untuk semua. dan terimakasih atas FT nya.
    Saya sudah menemukan kesalahan di code nya.
    ini sudah saya perbaiki.
    Code:
    //--
       if (signal1>=1)
       {
          for (i=0; i<MaxTries; i++)
             {
             RefreshRates();
             if(AccountFreeMarginCheck(S1,OP_SELL,Lot1) <= 0)Print(Id+": Not enough money to open Sell Order!");
             else {      
                ticket = Sell(S1,Lot1,MarketInfo(S1,MODE_BID),0,0,magic,"Mirror Trancexe");
                if(ticket>0)
                Print(TimeToStr(Time[0])+" Sell at "+S1+" "+DoubleToStr(MarketInfo(S1,MODE_BID),Digits)+" Lots="+DoubleToStr(Lot1,2));
                break;
             }
             }
          //--
          for (i=0; i<MaxTries; i++)
             {
             RefreshRates();
             if(AccountFreeMarginCheck(S2,OP_SELL,Lot2) <= 0)Print(Id+": Not enough money to open Sell Order!");
             else {      
                ticket = Sell(S2,Lot2,MarketInfo(S2,MODE_BID),0,0,magic,"Mirror Trancexe");
                if(ticket>0)
                Print(TimeToStr(Time[0])+" Sell at "+S2+" "+DoubleToStr(MarketInfo(S2,MODE_BID),Digits)+" Lots="+DoubleToStr(Lot2,2));
                break;
             }
             }  
       }
       //--    
       if (signal2>=1)
       {
          for (i=0; i<MaxTries; i++)
             {
             RefreshRates();
             if(AccountFreeMarginCheck(S1,OP_BUY,Lot1) <= 0)Print(Id+": Not enough money to open Buy Order!");
             else {      
                ticket = Buy(S1,Lot1,MarketInfo(S1,MODE_ASK),0,0,magic,"Mirror Trancexe");
                if(ticket>0)
                Print(TimeToStr(Time[0])+" Buy at "+S1+" "+DoubleToStr(MarketInfo(S1,MODE_ASK),Digits)+" Lots="+DoubleToStr(Lot1,2));
                break;
             }
             }
          //--
          for (i=0; i<MaxTries; i++)
             {
             RefreshRates();
             if(AccountFreeMarginCheck(S2,OP_BUY,Lot2) <= 0)Print(Id+": Not enough money to open Buy Order!");
             else {      
                ticket = Buy(S2,Lot2,MarketInfo(S2,MODE_ASK),0,0,magic,"Mirror Trancexe");
                if(ticket>0)
                Print(TimeToStr(Time[0])+" Buy at "+S2+" "+DoubleToStr(MarketInfo(S2,MODE_ASK),Digits)+" Lots="+DoubleToStr(Lot2,2));
                break;
             }
             }  
       }
    di code ini saya kebalik memerikan MODE_BID dan MODE_ASK. Sell harunya Bid, Buy harusnya ASK. sehingga price tidak dapat tercapai untuk order send. ea mencoba sampai 5 kali. dan akhirnya gagal open.
    *mohon yang paham bisa mengkoreksi juga script saya

    sekali lagi saya mohon maaf atas kekurangan ini

    Catatan. Menggunakan EA harus dengan kesabaran. Karena ada rules yang harus di patuhi.
     

    Attached Files:

    • Like Like x 2
  14. rafik

    rafik New Member

    Equity
    Credit
    Ref Point
    Thanks for the EA, im testing it on Demo today.
     
    • Like Like x 1
  15. redhibiki

    redhibiki New Member

    Equity
    Credit
    Ref Point
    ea korelasi lg, ijin FT om. mau ane bandingin dengan ea korelasi yg di share om yonif. moga2 bisa dpt inspirasi baru
     
  16. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    secara prinsip memang memanfaatkan korelasi. namun berbeda rules OP. yang ini lebih jarang. paling seminggu masuk rules itu cuma 2-3 hari aja. minggu ini sudah hari ke 4 tapi belum masuk rules juga.
     
  17. singo njoget

    singo njoget Member Credit Hunter

    Equity
    Credit
    Ref Point
    ini opnya diaveraging atau di marti bos kalo floting?
     
    • Agree Agree x 1
  18. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    tidak ada averaging atau marti.
    karena salama ini saya main manual belum pernah terfloating sampai lewat hari. asal masih dalam rules ya.

    Max Floating 20 PIP. klo lebih dari itu di hedging manual sesuai dengan OP Lama
     
  19. Joel Sammer

    Joel Sammer Member Credit Hunter

    Equity
    Credit
    Ref Point
    Thanks for your efforts and bug fixing. I will try today. ;) It is initalized, but there is not any ordering. Is it working on any timeframe? You told us it had calculated on ATR daily? So the TF is not important?

    Cheers, :)
     
  20. Trancexe

    Trancexe Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    :ok: yes sir. you can use this ea on any timeframe
     
    • Like Like x 2

Share This Page