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
I also had 15 505 1009 at first, but then the terminal was updated to the latest version (408) and it became 5 505 1009. But in any case, the end of file sign cannot be bigger than the size of the file itself. That's what worries me the most right now.
Slightly modified example of an indicator from the helpdesk:
Throw for example USDJPY (1h). Then, for example, run it on #C (30m). This all is done while the USA market has not opened yet. And we see that as soon as a tick comes on the USDJPY, OnCalculate at #C triggers, moreover, prev_calculated=0. And on the USDJPY itself, prev_calculated != 0 before the new bar. Looks like an obvious bug to me, although I may be missing something. Build 408
Throw, for example, on USDJPY (1h). Then, for example, we start it on #C (30m). All this is done while the US market has not yet opened. And we see that as soon as a tick comes on USDJPY, OnCalculate at #C triggers, moreover, prev_calculated=0. And on the USDJPY itself, prev_calculated != 0 before the new bar. Looks like an obvious bug to me, although I may be missing something. Build 408
This has already been discussed: https://www.mql5.com/ru/forum/3283/page2#comment_50176(last two paragraphs; and you can see the whole thread).
Question. The indicator buffer contains integers or, for example, time. Can I make the DataWindow display the indicator buffer values as integers or, for example, as time?
as a whole you can - by reducing the INDICATOR_DIGITS
as a whole you can - by reducing the INDICATOR_DIGITS
Question. The indicator buffer contains integers or, for example, time. Can I make the indicator buffer values be displayed in DataWindow as integers, or, for example, as time?
The indicator buffers are currently positioned as arrays of type double. Respectively, buffer values are displayed in DataWindow as values of type double. Apparently, we will not be able to solve this problem without the developers.