Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions LSTM_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import tensorflow as tf
from preprocessing import DataProcessing
import pandas_datareader.data as pdr
import fix_yahoo_finance as fix
fix.pdr_override()
import yfinance as yf
yf.pdr_override()

start = "2003-01-01"
end = "2018-01-01"
Expand Down
4 changes: 2 additions & 2 deletions MLP_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import tensorflow as tf
from preprocessing import DataProcessing
# import pandas_datareader.data as pdr if using the single test below
import fix_yahoo_finance as fix
fix.pdr_override()
import yfinance as yf
yf.pdr_override()

start = "2003-01-01"
end = "2018-01-01"
Expand Down
4 changes: 2 additions & 2 deletions get_prices.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas_datareader.data as pdr
import fix_yahoo_finance as fix
import yfinance as yf
import time
fix.pdr_override()
yf.pdr_override()


def get_stock_data(ticker, start_date, end_date):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pandas-datareader
fix-yahoo-finance
yfinance
numpy
pandas
tensorflow
Expand Down