All Projects → lucko515 → tesla-stocks-prediction

lucko515 / tesla-stocks-prediction

Licence: other
The implementation of LSTM in TensorFlow used for the stock prediction.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to tesla-stocks-prediction

Chase
Automatic trading bot (WIP)
Stars: ✭ 73 (+43.14%)
Mutual labels:  stock-price-prediction, lstm-neural-networks
Introneuralnetworks
Introducing neural networks to predict stock prices
Stars: ✭ 486 (+852.94%)
Mutual labels:  stock-price-prediction, lstm-neural-networks
Stock Market Analysis And Prediction
Stock Market Analysis and Prediction is the project on technical analysis, visualization and prediction using data provided by Google Finance.
Stars: ✭ 112 (+119.61%)
Mutual labels:  stock-price-prediction
recurrent-neural-net
A recurrent (LSTM) neural network in C
Stars: ✭ 68 (+33.33%)
Mutual labels:  lstm-neural-networks
Sentiment-analysis-amazon-Products-Reviews
NLP with NLTK for Sentiment analysis amazon Products Reviews
Stars: ✭ 37 (-27.45%)
Mutual labels:  lstm-neural-networks
Zerodha live automate trading using ai ml on indian stock market Using Basic Python
Online trading using Artificial Intelligence Machine leaning with basic python on Indian Stock Market, trading using live bots indicator screener and back tester using rest API and websocket 😊
Stars: ✭ 131 (+156.86%)
Mutual labels:  stock-price-prediction
FAIG
Fully Automated IG Trading
Stars: ✭ 134 (+162.75%)
Mutual labels:  stock-price-prediction
Bitcoin Value Predictor
[NOT MAINTAINED] Predicting Bit coin price using Time series analysis and sentiment analysis of tweets on bitcoin
Stars: ✭ 91 (+78.43%)
Mutual labels:  stock-price-prediction
privapi
Detect Sensitive REST API communication using Deep Neural Networks
Stars: ✭ 42 (-17.65%)
Mutual labels:  lstm-neural-networks
parapred
Paratope Prediction using Deep Learning
Stars: ✭ 49 (-3.92%)
Mutual labels:  lstm-neural-networks
TradeTheEvent
Implementation of "Trade the Event: Corporate Events Detection for News-Based Event-Driven Trading." In Findings of ACL2021
Stars: ✭ 64 (+25.49%)
Mutual labels:  stock-price-prediction
Stockprediction
Plain Stock Close-Price Prediction via Graves LSTM RNNs
Stars: ✭ 134 (+162.75%)
Mutual labels:  stock-price-prediction
lstm-kalman-hybrid-timeseries
Hybrid Time Series using LSTM and Kalman Filtering
Stars: ✭ 33 (-35.29%)
Mutual labels:  lstm-neural-networks
Stock Prediction
Smart Algorithms to predict buying and selling of stocks on the basis of Mutual Funds Analysis, Stock Trends Analysis and Prediction, Portfolio Risk Factor, Stock and Finance Market News Sentiment Analysis and Selling profit ratio. Project developed as a part of NSE-FutureTech-Hackathon 2018, Mumbai. Team : Semicolon
Stars: ✭ 125 (+145.1%)
Mutual labels:  stock-price-prediction
hmm market behavior
Unsupervised Learning to Market Behavior Forecasting Example
Stars: ✭ 36 (-29.41%)
Mutual labels:  stock-price-prediction
Stock Market Prediction Web App Using Machine Learning And Sentiment Analysis
Stock Market Prediction Web App based on Machine Learning and Sentiment Analysis of Tweets (API keys included in code). The front end of the Web App is based on Flask and Wordpress. The App forecasts stock prices of the next seven days for any given stock under NASDAQ or NSE as input by the user. Predictions are made using three algorithms: ARIMA, LSTM, Linear Regression. The Web App combines the predicted prices of the next seven days with the sentiment analysis of tweets to give recommendation whether the price is going to rise or fall
Stars: ✭ 101 (+98.04%)
Mutual labels:  stock-price-prediction
Deep Learning Machine Learning Stock
Stock for Deep Learning and Machine Learning
Stars: ✭ 240 (+370.59%)
Mutual labels:  stock-price-prediction
STAR Network
[PAMI 2021] Gating Revisited: Deep Multi-layer RNNs That Can Be Trained
Stars: ✭ 16 (-68.63%)
Mutual labels:  rnn-tensorflow
LSTM-footballMatchWinner
This repository contains the code for a conference paper "Predicting the football match winner using LSTM model of Recurrent Neural Networks" that we wrote
Stars: ✭ 44 (-13.73%)
Mutual labels:  lstm-neural-networks
DeepLog
This is the realization of core DeepLog
Stars: ✭ 29 (-43.14%)
Mutual labels:  lstm-neural-networks

Predicting Tesla stock prices with RNNs

This is an example on how to use RNNs to predict stock market price.

I've used LSTM as a type of RNN.

This LSTM cell image is from Colah's blog.

Dataset

The dataset used in this project is Tesla stocks history (From August 2014 - August 2017). I have downloaded this file from Google stocks, but you have csv file inside the project folder. Name of the file is tesla_stocks.csv.

Install

    Supported Python version

         - Python version used in this project: 3.5+

    Libraries used

Code

This project has 2 different implementations.

  1. Implementation by using Tensorflow built-in RNN functions. This is a version which you would use in an industry. This implementation can be found inside tensorflow_lstm.ipynb.

  2. Implementation number 2 has been done without using any high level functions from TensorFlow. This implementation is good for understanding how RNNs are working. This implementations is in file lstm_from_scratch_tensorflow.ipynb.

Run

To run this project you will need some software, like Anaconda, which provides support for running .ipynb files (Jupyter Notebook).

After making sure you have that, you can run from a terminal or cmd next lines:

For the 1st version of the code:

ipython notebook tensorflow_lstm.ipynb

or

jupyter notebook tensorflow_lstm.ipynb

For the 2nd version of the code:

ipython notebook lstm_from_scratch_tensorflow.ipynb

or

jupyter notebook lstm_from_scratch_tensorflow.ipynb

License

IT License

Copyright (c) 2017 Luka Anicin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].