TensorFlow-stocks-prediction-Machine-learning-RealTime
TensorFlow-stocks-prediction-Machine-learning-RealTime copied to clipboard
Predict operation stocks points (buy-sell) with past technical patterns, and powerful machine-learning libraries such as: Sklearn.RandomForest , Sklearn.GradientBoosting, XGBoost, Google TensorFlow an...
https://github.com/Leci37/TensorFlow-stocks-prediction-Machine-learning-RealTime/blob/386a580efbb2828dd366b20df2a031d45e5f9252/3_Model_creation_models_for_a_stock.py#L6 When running `3_Model_creation_models_for_a_stock.py` I'm receiving the following error: ``` Traceback (most recent call last): File "3_Model_creation_models_for_a_stock.py", line 6, in from keras.backend import set_session ImportError: cannot import name 'set_session' from...
https://github.com/Leci37/TensorFlow-stocks-prediction-Machine-learning-RealTime/blame/386a580efbb2828dd366b20df2a031d45e5f9252/requirements_x.y.z.txt#L6 When installing with requirements_x.y.z.txt I get the following error. (numpy cannot satisfy all requirements) ``` ERROR: Cannot install -r requirements_x.y.z.txt (line 2), -r requirements_x.y.z.txt (line 3), -r requirements_x.y.z.txt (line...
https://github.com/Leci37/TensorFlow-stocks-prediction-Machine-learning-RealTime/blob/386a580efbb2828dd366b20df2a031d45e5f9252/requirements_x.y.z.txt#L19 I receive the following when trying to install pyine 1.1.2 from requirements_x.y.z.txt ``` ERROR: Ignored the following yanked versions: 1.0.1, 1.1.0, 1.1.1, 1.1.2 ERROR: Could not find a version...
### Proposal and some questions Hello. I really like your project, I have reviewed all the readme and tutorials in detail. I have a few questions and maybe some suggestions...
import yfinance as yf import pandas as pd from datetime import datetime, timedelta import _KEYS_DICT def get_bars(symbol, start_date, end_date, interval='15m'): start_date = datetime.strptime(start_date, "%Y-%m-%d") end_date = datetime.strptime(end_date, "%Y-%m-%d") all_data =...
0_API_alphavantage_get_old_history.py not working since alphavantage API url changed and non of this files are working. If possible please rebuild this excellent project and upload the new version please. Also install...
there is a mismatch between the length of the header or column names and the actual data being read into a pandas DataFrame. This could result in some data loss...