Hello Petra!

"Script" lines because I though that way "loads" those r files.

I have two different model files, DL3b.ml and DL3c.ml If I use, for example, Keras I can rename "Script" line in the deeplearn script included in Zorro/Strategy folder

I can run the file to load one model, for example DL3b.ml, but I want to load two models, an evaluate both of them.

vLongb evaluates DL3b.ml and vLongc evaluates DL3c.ml. But I don´t find the way to use both models.

That´s why I wanted to use:

Code
 if(vLongb>threshold and vLongc>threshold) 
enterLong();

or similar logic.

As stated in the manual: https://zorro-project.com/manual/en/advisor.htm
Quote
However, different methods and signals can be used for different assets and algorithm identifiers, so call algo() for combining multiple advise methods in the same script. Ensemble or hybrid methods can also be implemented this way, using different algo identifiers.


But I don´t find the way of doing so. Can I "load" two models in the same script? With keras.

Not sure if I´ve explained well.

Thank you!