All Projects → philipxjm → Steward

philipxjm / Steward

Licence: other
A stock portfolio manager that provides neural net based short-term predictions for stocks and natural language processing based analysis on community sentiments.

Programming Languages

java
68154 projects - #9 most used programming language
javascript
184084 projects - #8 most used programming language
FreeMarker
481 projects
CSS
56736 projects

Projects that are alternatives of or similar to Steward

stocktwits-sentiment
Stocktwits market sentiment analysis in Python with Keras and TensorFlow.
Stars: ✭ 23 (-8%)
Mutual labels:  sentiment-analysis, stock, stock-market, stock-price-prediction
Stocksight
Stock market analyzer and predictor using Elasticsearch, Twitter, News headlines and Python natural language processing and sentiment analysis
Stars: ✭ 1,037 (+4048%)
Mutual labels:  sentiment-analysis, stock-market, 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 (+304%)
Mutual labels:  sentiment-analysis, stock-market, stock-price-prediction
Beibo
🤖 Predict the stock market with AI 用AI预测股票市场
Stars: ✭ 46 (+84%)
Mutual labels:  stock, stock-market, stock-price-prediction
Chase
Automatic trading bot (WIP)
Stars: ✭ 73 (+192%)
Mutual labels:  stock, stock-market, stock-price-prediction
stox
A Python Module That Uses ANN To Predict A Stocks Price And Also Provides Accurate Technical Analysis With Many High Potential Implementations!
Stars: ✭ 29 (+16%)
Mutual labels:  stock-market, stock-price-prediction
funcat
Using very simple code to compute indicator of stock\crytocurrency. For example, MA(C, 5) means average closed-price for last 5 days.
Stars: ✭ 19 (-24%)
Mutual labels:  stock, stock-price-prediction
web trader
📊 Python Flask game that consolidates data from Nasdaq, allowing the user to practice buying and selling stocks.
Stars: ✭ 21 (-16%)
Mutual labels:  stock, stock-market
Paper-Implementation-DSTP-RNN-For-Stock-Prediction-Based-On-DA-RNN
基於DA-RNN之DSTP-RNN論文試做(Ver1.0)
Stars: ✭ 62 (+148%)
Mutual labels:  stock, stock-price-prediction
hmm market behavior
Unsupervised Learning to Market Behavior Forecasting Example
Stars: ✭ 36 (+44%)
Mutual labels:  stock-market, stock-price-prediction
TerminalStocks
Pure terminal stock ticker for Windows.
Stars: ✭ 88 (+252%)
Mutual labels:  stock, stock-market
ChartTheStockMarket
🔥 📈 💸 Chart the Stock Market - FCC Challenge
Stars: ✭ 39 (+56%)
Mutual labels:  stock, stock-market
wallstreet
Stock Quotes and Charts for the Terminal
Stars: ✭ 75 (+200%)
Mutual labels:  stock, stock-market
SwiftYFinance
The best Yahoo Finance library with the power of Swift
Stars: ✭ 30 (+20%)
Mutual labels:  stock, stock-market
orderbook modeling
Example of order book modeling.
Stars: ✭ 38 (+52%)
Mutual labels:  stock-market, stock-price-prediction
alpha-vantage-api
Alpha Vantage PHP Client
Stars: ✭ 57 (+128%)
Mutual labels:  stock, stock-market
TradingView-Machine-Learning-GUI
Let Python optimize the best stop loss and take profits for your TradingView strategy.
Stars: ✭ 396 (+1484%)
Mutual labels:  stock, stock-market
open-climate-investing
Application and data for analyzing and structuring portfolios for climate investing.
Stars: ✭ 20 (-20%)
Mutual labels:  stock, stock-market
StockMarketML
Predicting stocks with ML.
Stars: ✭ 36 (+44%)
Mutual labels:  stock-market, stock-price-prediction
getbhavcopy
Free NSE and BSE data downloader
Stars: ✭ 93 (+272%)
Mutual labels:  stock, stock-market

Steward: a smart stock portfolio manager that provides short-term predictions and social media sentimental analysis for stocks selections.

Team Members: Kevin Jin (kjin2), Will Povell (wpovell), Matt Robins (mrobins), Philip Xu (jx24)

Mentor: Sean Segal ([email protected])

Project Specs and Mockup

Specs:

Interfaces:
  1. Graphical User Interface:

    The user interface of this project will be a web application. The layout is demonstrated in the mockups.
    Features:

    1. Signup, Login and Data Retention:

      Users should be able to sign up on our service using an username, password, and email.
      Users should be able to log in to the service and create/edit their portfolio. That information should be retained and everytime the user logs in they should be able to have access to the same portfolio they created.
      Users should also be able to log out, change their passwords, or delete their accounts.

    2. Portfolio Editting:

      Users should be able to create and edit their portfolios using a search box through symbol or stock name query. There should be an extensive stock database containing all currently traded NYSE or more stocks.

    3. Stock Information Display:

      When a user clicks on a stock, for example AAPL, the stock's candlestick chart, statistics, fundamentals, predictions, should be displayed. Users should be able to zoom in on the graph, mouse over for more daily information, and draw trendlines with percentage displays. The current traded price, volumes traded, volatility, and fundamentals of the company will be displayed below the graph, and a user can click to see more details. News articles or twitter feeds regarding the stock will be displayed on the right, along with a sentamental analysis of social media feeds.

  2. Backend Interface:

    The backend interface will do the following:

    1. A neural network API, a stock data API, a twitter feed API, and other relevant finance news APIs such as Yahoo Finance will be used.
    2. A neural network will be trained using the quantitative variables of a stock’s fundamentals and a sentiment value (as obtained from using our sentiment API on relevant news data)
      1. At the very least, the sentiment value will be obtained by applying the sentiment API to tweets that use the stock’s ticker symbol. However, it would be ideal to extend this model by using multiple keywords to assess sentiment such as company name, CEO name, sector name, etc. through different news mediums
      2. The neural network will be used to make both a one-day price prediction and a five-day price prediction.
    3. When a stock’s home page is presented on the front end, all of the fundamentals, graph data, and prediction data will come from a GSON variable sent from the backend. This GSON will include the following key, value pairs:
      1. (Daily Data) “dd/mm/yyyy” contains an array of the following:
        1. Open, Close, Daily, High, Daily, Low, Volume
      2. (Minute Data) “dd/mm/yyyy@hh:mm:ss” is used for displaying a stock chart for more recent intervals, including the past week and the current day, and will contain an array of:
        1. Current Price, Total Daily Volume
      3. (Fundamental) “fundamental” i.e. P/E Ratio, Dividend Yield, Shares Outstanding, and other fundamentals will be included as key, value pairs where the key is the name of the fundamental (String) and the value is a number representing the value of the fundamental
      4. (5 Day prediction) “FiveDay” is generated by the neural network in the backend and contains a number representing a five-day prediction for the given stock price
      5. (1 Day prediction) “OneDay” is generated by the neural network in the backend and contains a number representing a one-day prediction for the given stock price
    4. Predictions for stocks in the portfolio will be cached and predictions for portfolio stocks should be generated in less than 2 second.
    5. Predictions for stocks not in the portfolio will be generated in under twenty seconds, a loading bar with approximate time remaining will be displayed.
Functionalities:
  1. User Login/Signup:
    Users should be able to sign up on our service using an username, password, and email. Users should be able to log in to the service and create/edit their portfolio. That information should be retained and everytime the user logs in they should be able to have access to the same portfolio they created.
    Users should also be able to log out, change their passwords, or delete their accounts.
  2. Portfolio Management: Users will have access to a complete set of all stocks currently trading in the U.S.. Users should be able to edit their portfolio and have access to it when they re log in.
  3. Stock: Users should be able to have access to all relevant stock information: Current price, fundamentals, daily open, daily close, daily low, daily low, daily volume, volatility, news articles, projections, and sentimental analysis informations.
    Users should be able to draw trendlines, zoom onto graphs, have access to info on the graphs.
Performance:

Minimal computations will be performed on the frontend, most of the data manipulation and preperations will be done on the backend.

  1. User data management.
    User data will be stored in a SQL database. Insertions upon creation, and query upon login. All performance will be limited by SQL operations, which will likely O(log(n)).
  2. Prediction.
    The backend will performance prediction using APIs for recurrent neural networks and sentimental analysis. The performance of this will depend on the APIs used. After the initial run the results will be cached and any redundant queries will be retrieved from the cache instead to speed up querying.
  3. Stock Info Querying:
    The backend will provide information of charts and fundamentals. This information will be queried from a SQL database and cached for future uses.
Safety:

Our app will not have any financial transactions or irreversible actions. We will store the usernames and passwords for logins on the site in a database on the server. We will find an online package to use as a password hasher.

Compatibility:

Our portfolio manager will be a web app that supports at least Chrome that can be accessed from personal computers. Our stretch goals include support for Firefox, Safari, IE, Edge, and smartphone browsing.

We will not require any files to be provided from the client.

Mockups:

Main page

Main page

Register page

Register page

Graph page

Graph page

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].