Topic: EA Studio Portfolio Expert testing in MetaTrader 4

Hello Traders,

I just tested a Portfolio Expert in MetaTrader 4.
Very soon it will be possible to export such Portfolio Experts from EA Studio.

There is almost a complete match of the profit between the MT test and the EA Studio stats.


https://s2.postimg.org/mc58sbhyx/screenshot_440.png

Re: EA Studio Portfolio Expert testing in MetaTrader 4

Great news! Thanks a lot!

Re: EA Studio Portfolio Expert testing in MetaTrader 4

What an exciting news, is it a standalone EA?

Re: EA Studio Portfolio Expert testing in MetaTrader 4

Holy Cow! My trading eyes are shinning for such a beauty

Excellent news Popov

Re: EA Studio Portfolio Expert testing in MetaTrader 4

Dear traders,

We have Portfolio Experts that can be tested in MetaTrader. (please reload the app)

Please test it carefully and report all issues. This Portfolio Expert will replace the previous cloud calculated one.


https://s2.postimg.org/v1keti29l/screenshot_441.png



You export a complete MQL code with all indicators and calculations.

The Portfolio must be calculated in order to be able to export a Portfolio Expert.




It is easy to stop particular strategies to trade by commenting out or deleting the entry or exit signals functions. You can stop only the entries by removing only the GetEntrySignal_0XX(); function call.


void SetSignals(Signal *&signalList[])
  {
   int i=0;
   ArrayResize(signalList,2*strategiesCount);

   signalList[i++] = GetExitSignal_00();
   signalList[i++] = GetEntrySignal_00();

   signalList[i++] = GetExitSignal_01();
   signalList[i++] = GetEntrySignal_01();

   //signalList[i++] = GetExitSignal_02();
   //signalList[i++] = GetEntrySignal_02();

   //signalList[i++] = GetExitSignal_03();
   //signalList[i++] = GetEntrySignal_03();

The current version of the Portfolio doesn't have the strategies meta data and cannot be imported back in EA Studio. I'll add this feature tomorrow.

Have fun with this new expert and Trade Safe!

Re: EA Studio Portfolio Expert testing in MetaTrader 4

Truly a masterpiece, thank you very much smile

Re: EA Studio Portfolio Expert testing in MetaTrader 4

Now the exported Portfolio EA contains the strategies code and can be imported back and calculated with the Validator.

Re: EA Studio Portfolio Expert testing in MetaTrader 4

Wow, this is looking excellent!