nak belajar ea kena slow slow.
kawan kawan kalau kita OP manual.
lepas tu nak ea close.... nak buat mcm mana.
senang je, tak payah EA tu...lepas OP manual, letak TP & SL...pasti akan otomatik close.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
nak belajar ea kena slow slow.
kawan kawan kalau kita OP manual.
lepas tu nak ea close.... nak buat mcm mana.
senang je, tak payah EA tu...lepas OP manual, letak TP & SL...pasti akan otomatik close.![]()
salam nak tanya ada EA utk OP sell n buy
yg siap letak TP n SL
boleh ejas berapa post nak buka harap membantu![]()

if ()
{
}
if ()
{
}
else
{
}
if (AccountEquity() >= AccountBalance() * 1.1)
{
[COLOR="SlateGray"]//-- function close all di sini[/COLOR]
}

contoh sekiranya saya target 10% gain from balance
code saya lebih kurang macam ni
Code:
if (AccountEquity() >= AccountBalance() * 1.1)
{
//-- function close all di sini
}
target macam ne tu?guna 10% margin ke?
contoh sekiranya saya target 10% gain from balance
code saya lebih kurang macam ni
Code:
if (AccountEquity() >= AccountBalance() * 1.1)
{
//-- function close all di sini
}
target macam ne tu?guna 10% margin ke?
[I]if(expression)
operator1
else
operator2[/I]
If (x==1)
{
y=3;
}
if(x=='a')
{
y=1;
}
else if(x=='b')
{
y=2;
}
else if(x=='c')
{
y=3;
}
else
{
y=0;
}
int Start()
{
if(StringFind(Symbol(),"GBPUSD",0)>=0)
{
Comment("Anda telah pilih pair yang betul!!!");
}
else
{
Comment("Salah pair!!! Anda baru memilih "+Symbol()+"!!!");
}
}