Dear Community,
I'm trying to export the daily results of a backtest to a flat file, so I've done:
bt = get_backtest('YOUR_CODE_HERE')
result = bt.daily_performance
res.to_csv("result.csv",sep=",")
but it says to me that to_csv function is not supported.
Does any of you know any function to perform it?
Regards,
Carlos