duble AccountFreeMarginCheck(string symbol, int cmd, double volume)
Returns free margin that remains after the specified position has been opened at the current price on the current account. If the free margin is insufficient, an error 134 (ERR_NOT_ENOUGH_MONEY) will be generated.
現在アカウントで、指定されたポジションを持った後に残る余剰証拠金を返します。もし、余剰証拠金が足りない場合は、エラー134(ERR_NOT_ENOUGH_MONEY)が生成されます。
Parameters:
パラメータ:
|
Sample:
サンプル:
1 | if(AccountFreeMarginCheck(Symbol(),OP_BUY,Lots)<=0 || GetLastError()==134) return; |