We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSVDailyBarDataSource.get_assets_historical_closes does not accept the parameter "adjusted".
BacktestDataHandler.get_assets_historical_range_close_price attempts to pass the parameter "adjusted" to CSVDailyBarDataSource, which throws an error.
def get_assets_historical_range_close_price( self, start_dt, end_dt, asset_symbols, adjusted=False ): """ """ prices_df = None for ds in self.data_sources: try: prices_df = ds.get_assets_historical_closes( start_dt, end_dt, asset_symbols, adjusted=adjusted ) if prices_df is not None: return prices_df except Exception: raise return prices_df
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CSVDailyBarDataSource.get_assets_historical_closes does not accept the parameter "adjusted".
BacktestDataHandler.get_assets_historical_range_close_price attempts to pass the parameter "adjusted" to CSVDailyBarDataSource, which throws an error.
The text was updated successfully, but these errors were encountered: