트레이딩/메타트레이더 코딩
MQL5. Account
i.got.it
2019. 6. 3. 01:06
void OnStart()
{
//--- show all the information available from the function AccountInfoDouble()
printf("ACCOUNT_BALANCE = %G",AccountInfoDouble(ACCOUNT_BALANCE));
printf("ACCOUNT_CREDIT = %G",AccountInfoDouble(ACCOUNT_CREDIT));
printf("ACCOUNT_PROFIT = %G",AccountInfoDouble(ACCOUNT_PROFIT));
printf("ACCOUNT_EQUITY = %G",AccountInfoDouble(ACCOUNT_EQUITY));
printf("ACCOUNT_MARGIN = %G",AccountInfoDouble(ACCOUNT_MARGIN));
printf("ACCOUNT_MARGIN_FREE = %G",AccountInfoDouble(ACCOUNT_MARGIN_FREE));
printf("ACCOUNT_MARGIN_LEVEL = %G",AccountInfoDouble(ACCOUNT_MARGIN_LEVEL));
printf("ACCOUNT_MARGIN_SO_CALL = %G",AccountInfoDouble(ACCOUNT_MARGIN_SO_CALL));
printf("ACCOUNT_MARGIN_SO_SO = %G",AccountInfoDouble(ACCOUNT_MARGIN_SO_SO));
}
https://www.mql5.com/en/docs/account
Documentation on MQL5: Account Information
www.mql5.com
클래스 CAccountInfo
https://www.mql5.com/en/docs/standardlibrary/tradeclasses/caccountinfo
Documentation on MQL5: Standard Library / Trade Classes / CAccountInfo
www.mql5.com
첫등록 : 2019년 6월 3일
최종수정 :
본 글 단축주소 : https://igotit.tistory.com/2201