Hi GAT, I have a couple of questions about pysystemtrade
1) for live running, can I write the optimiser generated weights to config file so that all estimation is turned off in a system dedicated for generating live trades. Optimiser can be run in a separate process say each day.
2) Am I right to say that both variables below are only used during optimization?
forecast_weight_ewma_span
instrument_weight_ewma_span
3) To get the position for trading, I should call portfolio.get_subsystem_position
Thanks a lot
1) In theory yes, but you'd need to write your own code to do it. Adding it to the package is on my (long) to do list
2) No, they are used even if you don't optimise
3) No. system.portfolio.get_actual_position()
GAT
