Skip to content

a3X3k/AMR-Team5

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation


Table of Contents


Table Of Contents
1 About
2 Input
3 Setup
4 Libraries
5 Project Images
6 Members

Directory Structure

├── RSI Code
│   ├── RSI.py
│
└── OHLC Engine
│   ├── OHLC.py
│ 
└── README.md

About

  • This Project is about creating a Dashboard based on which User would be able to analyze the sentiment of the specific stock.
  • Analytical Server OHLC (Open/High/Low/Close) time series based on the Stock List dataset is created which is imported from the JSON file.
  • An OHLC chart is a type of bar chart that shows open, high, low, and closing prices for each period.
  • OHLC charts are useful since they show the four major data points over a period, with the closing price being considered the most important by many traders.
  • The final output will be displayed in a report printed in Charts.

Input

  • The Stock List dataset which is provided in JSON format comprise of certain attributes, following is the associated meanings of some of the attributes.
struct OHLC
{
	symbol : Stock Ticker string
	open : opening price Double
	high : highest price Double
	low : lowest price Double
	close : closed price Double
	date : date of transaction Date
}
  • Rest all attributes can be ignored for generating the OHLC Bar charts

Setup

  • To run this project, install and setup the following Libraries,
pip install dash   

pip install dash-html-components                                         

pip install dash-core-components                                     

pip install plotly

pip install dash-bootstrap-components

pip install stockstats

pip install mpl_finance

pip install yfinance

Libraries


Images

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages