Tulisan di Robot Forex. Cara Menambahkan Teks EA Forex. Cara Menampilkan Informasi Akun di Grafik EURUSD Yang diPasang Expert Advisor. Informasi akun tersebut meliputi Spread, Profit, Nama akun, Nomor Akun, Leverage, Balance, Equity, dll.
CODING MQL4 UNTUK MEMBUAT FUNGSI KOMENTAR UNTUK MENAMPILKAN INFORMATION ACCOUNT PADA EA FOREX:
void InfoAkunTrader()
{
string temp = ""
+ "Spread: " + DoubleToStr(MarketInfo(Symbol(), MODE_SPREAD)/PipValue, 2)+ " "
+ "Profit " + DoubleToStr(AccountProfit(), 2)+ "\n"
+ "------------------------------------------------\n"
+ "ACCOUNT INFORMATION:\n"
+ "\n"
+ "Account Name: " + AccountName()+ "\n"
+ "Account Leverage: " + DoubleToStr(AccountLeverage(), 0)+ "\n"
+ "Account Balance: " + DoubleToStr(AccountBalance(), 2)+ "\n"
+ "Account Equity: " + DoubleToStr(AccountEquity(), 2)+ "\n"
+ "Free Margin: " + DoubleToStr(AccountFreeMargin(), 2)+ "\n"
+ "Used Margin: " + DoubleToStr(AccountMargin(), 2)+ "\n"
+ "------------------------------------------------\n";
Comment(temp);
Count4++;
}
Di bagian atas sebelum Expert initialization function atau fungsi in init Tambahkan Variable Ini : int Count4 = 0;
Pelajari lagi: Cara Menambahkan Teks Info Akun Pada EA.
Demikian Penjelasan Tulisan di Robot Forex. Cara Menambahkan Teks EA Forex. Cara Menampilkan Informasi Akun di Grafik EURUSD Yang diPasang Expert Advisor. Informasi akun tersebut meliputi Spread, Profit, Nama akun, Nomor Akun, Leverage, Balance, Equity, semoga bermanfaat..
0 comments:
Posting Komentar