From 9f790ed1ef74bbed5eb213509bd1444c5c501115 Mon Sep 17 00:00:00 2001 From: Prajeet Singh Kalchuri <67830925+prajeetkalchuri@users.noreply.github.com> Date: Thu, 1 Oct 2020 09:51:54 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab2e24f..176e270 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# StockAnalysis +# StockAnalysis | A Must Need For Begineer Traders 1 Downloading and preprocessing the data In this we are going to get familiar with pandas, the python module which is used to process and analyse data. Processing could include removing unknown values from the data or replacing unknown values with values which make sense, maybe 0. Analysing the data could include finding out the trend of a stock price, e.g. how the stock price changes with respect to the Nifty 50 basket of stocks or S&P500. The data was stored in the pandas dataframe. We calculated the max and min price of last 90 days. Then we analysed the data types and converted the date into the datetime64(ns) for performing operations based on the date. In this finally we calculated VWAP (Volume weighted average price) of the stack. ( VWAP = sum(price*volume)/sum(volume) ) [https://www.investopedia.com/terms/v/vwap.asp]. Adding a column “Day Perc Change” where the values are the daily change in percentage i.e. percentage change between the two consecutive days closing price and then with the help of this info add info in the trend column.