Am new to Amibroker and am getting a frequent Popup Saving Wizard during Intraday Market, its poping out every 10 seconds and due to this I can select any options in Amibroker. Attaching the popup as below. Can any one suggest how to disable this operation and run this operation as background only.
So why don't you contact this third party? It is most probably their faulty software causing your problems - I've never heard about such problems. Besides which AB version are you using?
Yes Milosz as per Travick response its a command running to save DB, may be that cause this issue.
Before am reaching the 3rd party support, is there option to control this popup. Your advice will be really helpful.
If some external script/software invokes every 10 seconds AmiBroker.SaveDatabase() I don't know any way how you can stop saving database so frequently, apart from not using such wrongly written formula.
For example this external jscript saves AmiBroker's database every time it is executed:
var AmiBroker = new ActiveXObject( "Broker.Application" );
AmiBroker.SaveDatabase();
You can also check if some of your AFLs don't contain similar lines. If yes, you can comment them out and see if it helps.