Skip to content

Commit

Permalink
Merge c71d068 into 87bc534
Browse files Browse the repository at this point in the history
  • Loading branch information
mhallsmoore committed Aug 31, 2020
2 parents 87bc534 + c71d068 commit 5944535
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions qstrader/price_handler/yahoo_daily_csv_bar.py
Expand Up @@ -48,11 +48,7 @@ def _open_ticker_price_csv(self, ticker):
"""
ticker_path = os.path.join(self.csv_dir, "%s.csv" % ticker)
self.tickers_data[ticker] = pd.io.parsers.read_csv(
ticker_path, header=0, parse_dates=True,
index_col=0, names=(
"Date", "Open", "High", "Low",
"Close", "Adj Close", "Volume"
)
ticker_path, parse_dates=True, index_col=0
)
self.tickers_data[ticker]["Ticker"] = ticker

Expand Down

0 comments on commit 5944535

Please sign in to comment.