标签:any 位置 com margin page eem tool 参与 tco
账户信息相关函数
double AccountBalance()
返回账户余额(账户中钱数) .
示例:
Print("账户余额 = ",AccountBalance());
double AccountCredit()
返回账户信用额度.
示例:
Print("账户信用额度 = ", AccountCredit());
string AccountCompany()
返回账户所在公司名称.
示例:
Print("账户所在公司名:", AccountCompany());
string AccountCurrency()
返回账户结算货币名称.
示例:
Print("账户结算货币:", AccountCurrency());
double AccountEquity()
返回账户净值.
示例:
Print("账户净值 = ", AccountEquity());
double AccountFreeMargin()
返回账户可用保证金.
示例:
Print("账户可用保证金 = ", AccountFreeMargin());
double AccountFreeMarginCheck( string symbol, int cmd, double volume)
当前账户以现价在指定的位置开仓后还剩余的保证金。如果保证金余额不足,将会生成错误134 (ERR_NOT_ENOUGH_MONEY)。
参数:
symbol - 交易的货币对。 cmd - 交易类型,可能是 OP_BUY 或者 OP_SELL。 volume - 交易手数。
示例:
if(AccountFreeMarginCheck(Symbol(),OP_BUY,Lots)<=0 || GetLastError()==134) return;
double AccountFreeMarginMode()
开仓时可用保证金计算方式。计算方式可能采取以下值:
示例:
if(AccountFreeMarginMode()==0) Print("浮动盈利/亏损不使用。");
int AccountLeverage()
返回账户杠杆比例.
示例:
Print("账户杠杆比例:", AccountLeverage());
double AccountMargin()
返回账户已用保证金金额.
示例:
Print("账户已用保证金:", AccountMargin());
string AccountName()
返回账户的账户名.
示例:
Print("账户名:", AccountName());
int AccountNumber()
返回账户的账户号码.
示例:
Print("账户号码:", AccountNumber());
double AccountProfit()
返回账户的盈利金额.
示例:
Print("账户盈利:", AccountProfit());
string AccountServer()
返回账户连接的服务器名称.
示例:
Print("服务器名称:", AccountServer());
int AccountStopoutLevel()
返回账户止损水平设置.
示例:
Print("账户止损水平设置 = ", AccountStopoutLevel());
int AccountStopoutMode()
返回账户止损水平的计算方式,计算方式可以采用下列的值:
示例:
int level=AccountStopoutLevel(); if(AccountStopoutMode()==0) Print("止损水平= ",level, "%"); else Print("止损水平= ", level, " ", AccountCurrency());
标签:any 位置 com margin page eem tool 参与 tco
原文地址:https://www.cnblogs.com/anlewang/p/10189771.html