This forum is in read-only mode now. You may discuss your questions on forums of MQL4.community and MQL5.community
Does anybody know how to get value OHLC on the previous bar?Back to topics list |
|
Andy2b2
2005.06.29 14:22
Dear all,
I’m using MT3 need some advise… does anybody knows how to get value OHLC from the previous bars? regards, Andy |
|
Andy2b2
2005.06.29 14:23
Dear all, I’m using MT3 need some advise… does anybody knows how to get value OHLC from the previous bars? regards, Andy |
|
Slawa
2005.06.29 15:18
Open[1], High[1], Low[1], Close[1]
|
|
Andy2b2
2005.07.03 10:26
Hi Slawa.....tx for your answer....
but one more question.... is it the same way if we want to know the value of indicator in the previuos bars? for example: I want to know the value of RSI on the last 2 or 3 bars from the current bar..... |
|
Andy2b2
2005.07.03 10:26
Hi Slawa.....tx for your answer....
but one more question.... is it the same way if we want to know the value of indicator in the previuos bars? for example: I want to know the value of RSI on the last 2 or 3 bars from the current bar..... |
|
Vooch
2005.07.03 10:32
This is how you do it in MetaTrader 4:
double rsi0 = iRSI(NULL,Period(),14,PRICE_TYPICAL,0); // this bar double rsi1 = iRSI(NULL,Period(),14,PRICE_TYPICAL,1); // previous bar double rsi2 = iRSI(NULL,Period(),14,PRICE_TYPICAL,2); // 2 bars away double rsi3 = iRSI(NULL,Period(),14,PRICE_TYPICAL,3); // 3 bars away
|
Download MetaTrader 5 (450 Kb, web installer) — a new terminal for financial markets
