Persistent save location

 

I'm starting to experiment a bit with a neural network library in MT5.  The library has some handy load and save methods which are useful to retain the network weightings between separate runs of the EA.

I'm about to implement the load/save functionality but this leads me to my problem; Normally EAs write their files to the agents work area and they are wiped before each back-test.

How can I get round this problem?  How can I save files in MQL5 which won't ever get deleted unless I choose to do so myself?

Thanks

Chris.

 
Use the common area.
 
William Roeder:
Use the common area.

Thanks William.  I didn't know you could do that.