30s Timeframe MA Cross EA - how do you pull tick data when you cant choose seconds in the enum_timeframes? - page 2

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
If you require standard Chart display, then Custom Symbol seems the easiest, otherwise you would have to code a custom display processing using a bitmap "canvas" to draw your own charting.
If you require standard Chart display, then Custom Symbol seems the easiest, otherwise you would have to code a custom display processing using a bitmap "canvas" to draw your own charting.
I managed to display S15 Timeframe (on the right chart), but although I record the bar every 15 seconds, it seems that MT5 does not allow having less than 1 minute between each bar, even on a custom symbol.
It looks like I'll have to manage "Canvas" if I want to display my S15 timeframewith the correct times
It does allow less than 1 minute in the OHLC data itself, but the "Open Time" property/variable is only accurate to the minute resolution.
Also, a "Canvas" will not update the "Data Window", so you will have to "draw" your own data window in the "canvas".
It does allow less than 1 minute in the OHLC data itself, but the "Open Time" property/variable is only accurate to the minute resolution.
Also, a "Canvas" will not update the "Data Window", so you will have to "draw" your own data window in the "canvas".
Yes, I realized my mistake in the meantime.