What the offline symbol and timeframe?
Do You get this problem if remove EA from offline chart (or do not attach EA to the chart)?
What the offline symbol and timeframe?
Do You get this problem if remove EA from offline chart (or do not attach EA to the chart)?
I'm the developer of Renko charts, but the problem can be easily reproduced with period_converter. Just take any symbol (I'm testing EURUSD) and multiply (I do it for 10). I can put any indicator at the chart and it is OK. When I drop EA on it with a costruct:
while(!IsStopped())
{
if(RefreshRates())
{
cnt++;
Comment("p=",DoubleToStr(Bid,Digits)," (",cnt,")");
}
Sleep(100);
}
Then it works for a while, sometimes very long indeed, and after some time it hangs. If I put more code in the while() loop it hangs very fast.
There is big problem to open offline standard symbol-periods. One of part (symbol or period) MUST BE NON-STANDARD!
There is big problem to open offline standard symbol-periods. One of part (symbol or period) MUST BE NON-STANDARD!
Ok. We've reproduced this problem. Thanks.
Download build 215 dated 04 Apr and try again
Ok. We've reproduced this problem. Thanks.
Download build 215 dated 04 Apr and try again
I didn't see it on the metaquotes.net website.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
I'm trying to use an EA on offline chart (for example such as created by period_converter). They don't receive ticks which needs to use while() loop inside. However, after few minutes the offline charts shows "Waiting for update" and is not updated anymore. I suspect it is a kind of deadlock, because when I open another offline chart then it is updated correctly, and when I close it the original chart is OK for a while untill the next "Waiting for update" lockout.
Am I doing something wrong or is this a problem of MT4?