Dokumentation zu MQL5: Konstanten, Enumerationen und Strukturen / Datenstrukturen / Struktur fuer Erfassung der laufenden Preise
- www.mql5.com
Struktur fuer Erfassung der laufenden Preise - Datenstrukturen - Konstanten, Enumerationen und Strukturen - Nachschlagewerk MQL5 - Nachschlagewerk über die Sprache des algothitmischen/automatischen Handels für MetaTrader 5
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
We can get history of high, low, open, close and ... and use it in buffer in OnCalculate function. for example close[3]
Question: Can we get all Ticks? for example something like this : Tick[3]
But each candle has a lot of ticks, and I know this example is wrong, so something like this is right.
Tick[3][1] // candle 3 , tick 1
Tick[3][2] // candle 3 , tick 2
Or something like that.
But note that I want to have the data of all the ticks and use them in the buffer,
like close[1],close [2], ... ,close[1000] that work in OnCalculate function.