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.


bro aiman..?
Ada tak EA yg boleh buat duit..?
Adakah semua teknik forex boleh di EA kn..?
double P = 0,
//---- Set line labels on chart window
if(ObjectFind("P label") != 0)
{
ObjectCreate("P label", OBJ_TEXT, 0, Time[20], P);
ObjectSetText("P label", " Pivot", 8, "Arial", Red);
}
else
{
ObjectMove("P label", 0, Time[20], P);
}

Code:double P = 0, //---- Set line labels on chart window if(ObjectFind("P label") != 0) { ObjectCreate("P label", OBJ_TEXT, 0, Time[20], P); ObjectSetText("P label", " Pivot", 8, "Arial", Red); } else { ObjectMove("P label", 0, Time[20], P); }
soalan saya
1 - bagaimana nak ambil nilai P bagi open candle jam 10am hari ini?
string today = TimeToStr(TimeCurrent(),TIME_DATE);
datetime myTime = TimeCurrent() - (TimeCurrent() - StrToTime(today + " 10:00"));
int myBar=iBarShift(Symbol(),Period(),myTime,0);
P=Open[myBar];
memula define today
Code:string today = TimeToStr(TimeCurrent(),TIME_DATE);
lepas tu define myTime
Code:datetime myTime = TimeCurrent() - (TimeCurrent() - StrToTime(today + "10:00"));
last sekali candle pilihan
Code:int myBar=iBarShift(Symbol(),Period(),myTime,0);
pastu letak P dekat Open bar pilihan tadi
Code:P=Open[myBar];

double zon_a, zon_b, zon_c, zon_max, zon_min, zon_patah_balik
int tp1, tp2, tp3, sl1, sl2, sl3, trailingSL