imkoukou
imkoukou
The problem is in algorithm.py, you can find the following main loop for all bars: for perf in self.get_generator(): perfs.append(perf) # convert perf dict to pandas dataframe daily_stats = self._create_daily_stats(perfs)...
@apoorvkalra Hi. I updated the edited algorithm.py I am using and the original one. You can compare them to see what I changed. The displayed report depends on what is...
@studyquant 1. Have you done the correct setting for minute csv data, including calendar setting? In the last version of Zipline, the minute data process have been included, which is...
@studyquant The file I posted are for a older version of Zipline. The Version 1.3.0 changed the folder structure, even the calendar has been separated as a single package folder...
@studyquant The error may be caused some other changes I did to benchmark function, just ignore it. : )
@dpkdeepakpandey @balut91 My solution to run at any period by: 1. In utils/events.py class EventManager(object) change the handle_data() method to return a value. That will receive the value returned by...