From 70063547e39b0d34b31a26417b5d1c0e4ac36a1f Mon Sep 17 00:00:00 2001 From: developer-dash <92014604+developer-dash@users.noreply.github.com> Date: Wed, 6 Oct 2021 12:41:46 +0530 Subject: [PATCH] tier 1: stock price tracker --- Projects/1-Beginner/Stock-price.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Projects/1-Beginner/Stock-price.md diff --git a/Projects/1-Beginner/Stock-price.md b/Projects/1-Beginner/Stock-price.md new file mode 100644 index 00000000..fe3a4445 --- /dev/null +++ b/Projects/1-Beginner/Stock-price.md @@ -0,0 +1,25 @@ +# Stock price tracker + +**Tier:** 1-Beginner + +Get given stock's price in the stock exchange + +## User Stories + +- [ ] User can enter stock name or symbol to get the quote +- etc... + +## Bonus features + +- [ ] Storing the stock quotes in a backend database +- [ ] Create charts of available data +- etc... + +## Useful links and resources + +[Python package to get stock quotes from NSE (National Stock Exchange, India)](https://pypi.org/project/nsetools/) +[Yahoo finance API](https://www.yahoofinanceapi.com/) + +## Example projects + +[NSE automation (The project aims to completely automate the process and store results in spreadsheets.)](https://github.com/mdb2301/nse_automation/blob/master/nse.py)