Hi
I am try to write code by MQL4 for check open day price, any one know how we can calculate open day price?
iOpen(NULL, PERIOD_D1, 0);
Thanks a lot
i have this code
if (Low[0] > High[1])
i need to replace low[0] by open day price
can i replace it like
if (iOpen(NULL,PERIOD_D1, 0) > High[1]);
will this work
thanks again
Thanks a lot
i have this code
if (Low[0] > High[1])
i need to replace low[0] by open day price
can i replace it like
if (iOpen(NULL,PERIOD_D1, 0) > High[1]);
will this work
if (iOpen(NULL,PERIOD_D1, 0) > High[1])......???????; will this work ???
ofcours it can happen that the highprice closed bar lower timeframe daily is lower then openprice of the day
but What has to happen if the condition is true
there is no command to see at,........ before ;
Thanks but expert did not work when i put this code
(iOpen(NULL,PERIOD_D1, 0)
if (iOpen(NULL,PERIOD_D1, 0) > High[1]);
but i found it work fine i replace it by old code
if (Low[0] > High[1])
any new idea about calculate open daily price,(15 min time frame)
another quetion
IS High[1] = open day price in 15 min frame???
Thanks
Thanks but expert did not work when i put this code
(iOpen(NULL,PERIOD_D1, 0)
if (iOpen(NULL,PERIOD_D1, 0) > High[1]);
but i found it work fine i replace it by old code
if (Low[0] > High[1])
any new idea about calculate open daily price,(15 min time frame)
another quetion
IS High[1] = open day price in 15 min frame???
Thanks
looks like you have no idea what High Low Close Open stands for....
and what it means iHigh iLow, .....
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Hi
I am try to write code by MQL4 for check open day price, any one know how we can calculate open day price?