让我们先分解OrderSend()
调用:
int result = OrderSend( NULL, // string: _Symbol,
OP_SELL, // int: OP_SELL,
0.01, // double: NormalizeLOTs( nLOTs ),
Bid, // double: NormalizeDouble( Bid, Digits ),
5, // int: slippagePOINTs,
0, // double: { 0 | NormalizeDouble( aSlPriceTARGET, Digits ) },
Bid-0.002, // double: { 0 | NormalizeDouble( aTpPriceTARGET, Digits ) },
NULL, // string: { NULL | aBrokerUnguaranteedStringCOMMENT },
0, // int: { 0 | aMagicNUMBER },
0, // datetime: { 0 | aPendingOrderEXPIRATION },
clrGreen // color: { clrNONE | aMarkerCOLOR }
);
为了让人们更加安心,应该始终对所有值进行规范化,这些值在MQL4
-side (价格 + 手数(量化)值)上有一些限制性处理 - 因为这些不是 R 域中的连续值,而是量子-步进:
价格:有0.00001
或0.0001
或0.001
或或0.01
或0.1
或1.0
等步进,
手数:受到经纪人特定设置的更多限制,每个工具,三个关键值,所有允许的交易量大小必须满足:
[aMinLOTs<=, +aMinLotSTEP, <=aMaxLOTs]
+
适当的数字规范化
〜因此double NormalizeLOTs( aProposedVOLUME ) {...}
是一个方便的工具,可以无缝实现这两个部分需要。
Error 4111:
还有一些其他障碍会阻止您MetaTrader Terminal 4
顺利运行代码:
4111
ERR_SHORTS_NOT_ALLOWED
Shorts are not allowed. Check the Expert Advisor properties
if ( !TerminalInfoInteger( TERMINAL_TRADE_ALLOWED ) )
Alert( "Check if automated trading is allowed in the terminal settings!" );
else if ( !MQLInfoInteger( MQL_TRADE_ALLOWED ) )
Alert( "Automated trading is forbidden in the program settings for ",
__FILE__
);
这指示用户在选项卡和经纪商交易工具条件下修改MetaTrader Terminal 4
设置,
在这些条件下,某些工具的卖空可能受到一般限制,或者仅针对某些账户类型。MT4 -> Tools -> Options -> ExpertAdvisor
if ( !AccountInfoInteger( ACCOUNT_TRADE_EXPERT ) )
Alert( "Automated trading is forbidden for the account",
AccountInfoInteger( ACCOUNT_LOGIN ),
" at the trade server side. Contact Broker's Customer Care Dept."
);
有关更多详细信息,请查看 printScreens 并演示了这组双方Terminal
/经纪人方障碍的编程处理:参考-> MQL4 参考/MQL4 程序/交易许可