Is it even possible to write to the objectstore from a backtest?  Looks like it is possible, I'm running in the quantconnect in the cloud.  I'm not sure what was being discussed in the post below, seems that this is what i want to implement.  So at the end of the backtest, I just want to save a dataframe in the objectstore.  

 

 

json_string = self.df.to_json(orient='split')
self.ObjectStore.Save(model_key, json_string)

Does not work as the objectStore is not defined.  Is there some class that has to be imported like ‘from ObjectStore import Objectstore’?