Using data from demo account to decide about real account. Is it possible?

 

I want to know if is it possible to use data from a terminal to calculate an indicator and use that indicator in another terminal?

For example use a Demo account trade history and use it for some calculations and make an indicator. Then use that indicator in another terminal which a real account is set on it. Is it possible?

Documentation on MQL5: Constants, Enumerations and Structures / Environment State / Account Properties
Documentation on MQL5: Constants, Enumerations and Structures / Environment State / Account Properties
  • www.mql5.com
Account Properties - Environment State - Constants, Enumerations and Structures - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
 
Yes, that is possible.

You need to write the buffers from demo indicator into a file and then have another indicator on real account read in the values from that file.

One way to solve it.
 
Dominik Christian Egert #:
Yes, that is possible.

You need to write the buffers from demo indicator into a file and then have another indicator on real account read in the values from that file.

One way to solve it.

Thanks Dominik

Reason: