Jump to content

littlemonster

Members
  • Posts

    28
  • Joined

  • Last visited

Posts posted by littlemonster

  1. Re: caspian EA

     

    Anyway, caspian chf this week only opened 3 position on fxopen, I think all breakeven. I don't know what is wrong with this, as soon as the price is at breakeven, it closes the trade, also caspian gbp does not wait for take profit, it just closes as soon as the price is 1 or 2 pips away the opening price. :-? any idea on that?

     

    Thats very simple to understand. Fxopen has smoothed their feed weeks ago. Prices are almost frozen during caspian's trading time. \m/

  2. Re: [REQ] Thunderbolt EA

     

    2009.09.12 15:20:31 2009.09.11 22:59 Thunderbolt-909v1a EURUSD,M15: Alert: 1108995 - THUNDERBOLT - EA had the following error(s): \n--->Program path invalid, please set 'Start In' parameter from your desktop shortcut. Contact our support team (suppoooort@forexhooooop*.com) for more information

     

     

    The manual says the EA cannot be backtested, but I can see you guys can backtest...

     

    What's wrong?

     

    Thanks in advance

  3. Hello guys,

    Here is a decompiled and educated Copy Tool MT4 >> MT4.

    A very fast one. It copies trades in some miliseconds :)

    Unfortunately, I am getting some erros on 50% of the orders.

    "No trade - ExpireMinutes limitation"

    "No trade - MaxMarketDiff limitation"

    I already tryed to put the ExpireMinutes on 100000000000000000 minutes and MaxMarketDiff on 100000000000000000 and I still have the same problems.

    The stranger thing is that when I copy manual trades, everything is OK. When I copy trades from an EA, this erros happens.

    Could someone please fix it?

    Thanks in advance,

    h**p://www.mediafire*com/download.php?zznn1ymy2yj

    MANUAL + SLAVE EA + MASTER EA + DLL

  4. Re: ISEA (Investiva Super Expert Advisor)

     

    I have tested this EA at FXCBS ECN and the results were really great for eurgbp during normal spread conditions time. FXCBS has blocked my IP for demo accounts because ISEA modifyes orders at almost every single new tick and their servers were getting troubles.

    The 1st thing we need to do is put this EA to open orders on market (no sell limit and buy limit) and then we could try a spread filter, to trade only when spread conditions are ok for this trading style.

    IS THERE ANY VERSION OF THIS EA THAT OPENS ORDERS ON MARKET (NO BUY LIMIT OR SELL LIMIT)?

     

    I am not a coder, but you can try this little trick:

    put "Sleep(10000);" without the quotes in the modify order routine (see below),

    you can modify the number if 10 seconds is too long.

     

    Tell me if it is better with your broker, like that.

     

     

     

     

     

    ========================

     

    void Modify_order() {

    if (HasBuyLimitOrder == TRUE) {

    AveragePrice = MA_currentbar - MA_distance;

     

    //---- wait for 10 seconds

    Sleep(10000);

     

     

     

     

    if (MathAbs(BL_openprice - AveragePrice) > Point / 2.0) OrderModify(BL_ticket, AveragePrice, AveragePrice - stoploss, AveragePrice + LimitEntry, 0, DeepSkyBlue);

    }

    if (HasSellLimitOrder == TRUE) {

    AveragePrice = MA_currentbar + spread + MA_distance;

     

    //---- wait for 10 seconds

    Sleep(10000);

     

     

    if (MathAbs(SL_openprice - AveragePrice) > Point / 2.0) OrderModify(SL_ticket, AveragePrice, AveragePrice + stoploss, AveragePrice - LimitEntry, 0, Pink);

    }

    }

     

    =====================

     

    Hope it helps!

    regards

     

    Thanks Freddy.

    I will try this. I hope it really works and I dont get blocked by fxcbs one more time :">

    Does anyone have more suggestions?

    Regards

×
×
  • Create New...