Jump to content

getting

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by getting

  1. the feeling of being the master of the universe is so great... no one in their right mind want to share that.

    advice; search in myfxbook, and do a reverse engineering on the History and you could pretty much figured out the setup and perimeter for each EA's. Just remember: "you don't have to be smart, just knows who to copy!!!"

  2. I had posted this before: put the dll into windows\system instead of system32 for vista/server 2003/server 2008.

     

    I suppose you should do that for Windows 7 as well.

     

    I'm Using mt4i TradeCopy; sometimes(twice I noticed) my "receiver EA" MT4 would get disconnected, but when it's reconnected the heartbeat wouldn't be receiving signal from "sender EA"

     

    I'll try your method by deleting QuickChannel.dll from expert/library folders and only put in the system folder. Great! doesn't cause any problem, but will need to wait and see if Same issue would happened when my receiving MT4 is disconnected.

    copying market order average about 1 to 2 seconds delay from sender to receiver EA; loving it!

     

    ON Windows Server 2003 - Datacenter x64 edition

     

    update & confirmed; no more heartbeat issue after putting QuickChannel.dll in system folder.

  3. cacus,

     

    if u have some time can u please add this code to this to cacus_MACCImo_v2.mq4,

    so EA would close open order after specific length of time.

     

    You need to check the OrderOpenTime() function.

     

    Code:

    Total = Orderstotal();

     

    for (int i = 0; i < Total; i++)

    {

    OrderSelect(i, SELECT_BY_POS, MODE_TRADES);

    if(OrderMagicNumber() == MagicNumber && OrderSymbol() == Symbol() && (OrderType() == OP_BUY || OrderType == OP_SELL))

    {

    Print("The trade was opened "+TimeCurrent() - OrderOpenTime()+" seconds ago.");

    }

    }

  4. demo it first, this process will clear up all the question u guys have.

    used lotType=1 for scalable; copy exact same lot amount as master

    fixedLot=1

    kLot=1 - copy exactly same size as master (=2 is twice as much, =.1 is 10% of master)

    LotDigit=2 - so it can copy .01 lot size

     

    used s-mtfx_s.mq4 along with mapSymbols.txt to copy from EURUSDm to EURUSD or from

    EURUSD to EURUSDm; just edit the text file to suit your need.

  5. ForexLegend uses the same authentication codes as MegaDroid's. I think they're relative to each other.

    Here is the edu version

    http://www.4shared.com/file/r9ppiF-S/ForexLegend_edu.html

     

    Can someone tweak ForexLegend scalper so it would trade EU M1

    Thanks

×
×
  • Create New...