Brokers that support More than 100 Orders at a Time?

Sep 27, 2012 at 07:09
559 Görüntüleme
4 Replies
ForexScam
forex_trader_32776
Mar 28, 2011 zamanından beri üye   1008 iletiler
Sep 27, 2012 at 07:09
Most brokers Max Order count stops at 100. Then the broker will refuse your next order.

What brokers accept more than 100? And not InstaForex.

Also More importantly, How can I find out this information within the Metatrader Platform.

Within MarketInfo ( ) ,, there is not a MAX Order COunt, Only Max Lots. Any help Much appreciated.

Thanks
Feb 08, 2012 zamanından beri üye   48 iletiler
Sep 27, 2012 at 08:51
https://4xtrader.net/ One of the EA shows that.
ForexScam
forex_trader_32776
Mar 28, 2011 zamanından beri üye   1008 iletiler
Oct 01, 2012 at 05:55
Can some one help me out with this request?

I've had to contact Brokers Directly to get this information
ForexScam
forex_trader_32776
Mar 28, 2011 zamanından beri üye   1008 iletiler
Oct 01, 2012 at 05:57
otherwise Ill have to make a script that continues to place limit orders until the limit is reached . lol. hmm
stevewalker
forex_trader_79941
Jun 06, 2012 zamanından beri üye   1439 iletiler
Oct 01, 2012 at 17:37 (Oct 01, 2012 at 17:42 düzenlendi)
first you will ask your broker to learn the max number of trades that they allow.

then in your code

you will count trades that are not pending orders

extern int max orders allowed long == 100;
extern int max orders allowed short == 100;

void ordercount()
{
      orderL=0;
      orderS=0;

      for(int a=0;a<=OrdersTotal();a++)
      {
      if(OrderSelect(a, SELECT_BY_POS, MODE_TRADES)==true)
         {
         if(OrderSymbol()==Symbol() && OrderMagicNumber() == Magic_N)
            {
            if(OrderType()==0)orderL++;
            if(OrderType()==1)orderS++;
            }
         }
      }
}

then you will limit your orders Long , Short regarding to the ordercount & max orders allowed .

if( orderL < max orders allowed long && your code.......................) send long order...........

same for short

or you can group short & long

this will help

good luck!

walker.
Giriş yap / Kayıt Ol to comment
You must be connected to Myfxbook in order to leave a comment
*Ticari kullanım ve istenmeyen e-postalara müsamaha gösterilmez ve hesabın feshedilmesine neden olabilir.
İpucu: Bir resim/youtube urlsi yayınlamak, onu otomatik olarak gönderinize gömer!
İpucu: Bu tartışmaya katılan bir kullanıcı adını otomatik olarak tamamlamak için @ işaretini yazın.