Advertisement
Edit Your Comment
Brokers that support More than 100 Orders at a Time?

forex_trader_32776
तबसे मेंबर है Mar 28, 2011
942 पोस्टों
Sep 27, 2012 at 07:09
तबसे मेंबर है Mar 28, 2011
942 पोस्टों
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
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
46 पोस्टों
Sep 27, 2012 at 08:51
तबसे मेंबर है Feb 08, 2012
46 पोस्टों
http://4xtrader.net/ One of the EA shows that.

forex_trader_32776
तबसे मेंबर है Mar 28, 2011
942 पोस्टों
Oct 01, 2012 at 05:55
तबसे मेंबर है Mar 28, 2011
942 पोस्टों
Can some one help me out with this request?
I've had to contact Brokers Directly to get this information
I've had to contact Brokers Directly to get this information

forex_trader_32776
तबसे मेंबर है Mar 28, 2011
942 पोस्टों
Oct 01, 2012 at 05:57
तबसे मेंबर है Mar 28, 2011
942 पोस्टों
otherwise Ill have to make a script that continues to place limit orders until the limit is reached . lol. hmm

forex_trader_79941
तबसे मेंबर है Jun 06, 2012
1434 पोस्टों
Oct 01, 2012 at 17:37
(एडिट हो रहा है Oct 01, 2012 at 17:42)
तबसे मेंबर है Jun 06, 2012
1434 पोस्टों
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.
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.

*व्यवसायिक इस्तेमाल और स्पैम को ब्रदाश नहीं किया जाएगा, और इसका परिणाम खाता को बन्द करना भी हो सकता है.
टिप: किसी चित्र या यूट्यूब या URL को पोस्ट करने से वे अपने आप आपके पोस्ट में आजाएगा!
टिप: @ चिन्ह को टाइप करें उपभोगता के नाम को अपने आप करने के लिए जो इस चर्चा में भाग ले रहा है.