Skip to content

This application visualize the stock performance and stats and also predict stock values in future

Notifications You must be signed in to change notification settings

yashbrid03/Stock-Stalker

Repository files navigation

Stock-Stalker

This application visualize the stock performance and stats and also predict stock values in future

Snippets (Till now)

image

image

image

Feature

  • Live broadcasting of realtime data
  • If one periodic task is idle then it is deleted automatically or else if it has more than one consumer it works as usual.
  • For each individual stock there is different websocket for getting live price
  • Gives Analysis of Individual Stock
  • Skeleton Loading

Architecture

A4 - 1

  • First user sends HTTP request to Django and it responds with HTTP response
  • Now client establishes websocket connection for specific task to be done. Each websocket is related to a consumer.
  • After that celery beat schedule the task and send its to broker (we are using redis as broker)
  • Now celery worker takes the task from broker and perform actual task and send results to Django (Actually it sends results to consumer and consumer send to client through ws)
  • Django responds with Ajax request which includes data

How to start

  • start the redis server
  • start the Django project by running following command in cmd python manage.py runserver
  • Start the celery Beat scheduler by running following command in another cmd celery -A realtime beat -l INFO
  • Start the celery Worker by running following command in another cmd celery -A realtime worker -l INFO -P eventlet --concurrency=5

Progress

  • Done with the Homepage
    • On homepage you can see realtime index such as Nifty50, Sensex, NiftyBank and NiftyIt.
    • Also you can see realtime Top Gainers and Top Losers of the current day.
    • Search functionality to search individual stocks
  • Individual Page
    • On individual page you can see the basic info of the stocks (like market cap, volume, P.E. ratio etc)
    • Realtime Price on individual stock page
    • Along with that you can see the Stock Analysis (for eg its Trend, EMA, SMA, MA, etc.)

Remaining Tasks

  • Creating seperate page for Top losers and top gainers
  • Analysis Part is remaining (Individual page) (40%)
  • Implementation of ML model to predict stock price

Limitations

  • It is not feasible to make one ML model for every stock. because every stock has its own different behaviour/timeseries.
  • because model trained on one stocks timeseries cannot predict other stock price

Alternative

  • Make ML model that is trained on multiple dataset of stock price. (still it is not proper way.)
  • Build ML model in runtime for the searched stock (Time consuming and if one stock is searched multiple times it will build again and again for same stock)
  • Build ML model for searched stock and store it in database, when next time the same stock is searched, perform lookup in DB. (still not feasible because stock data changes over a period)

About

This application visualize the stock performance and stats and also predict stock values in future

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages