Time series analysis enables us to visualize trends in stock prices, seasonality, autocorrelations and hence predict subsequent prices and trends. These insights are essential for many financial and non financial companies, portfolio analysis etc. In this notebook, I have explored various feature engineering techniques and models exclusive to time series data.
Please find the link to my kaggle notebook here: https://www.kaggle.com/breenda/lstm-rnn-arimax-ar-models-and-analysis
Goal of this project was to explore the techniques to handle stock data. I started of with visualizing the various parameters to get an idea of the trends in data, seasonality, if its present etc. Next, I explored a few engineering techniques to generate exogenous features. Then I used models such as ARIMA, Autoregressors, LSTMs and RNNs to see which models best predict the target variable.
https://www.kaggle.com/rohanrao/nifty50-stock-market-data
- Series: Here EQ stands for equity series of stock market.
- Prev Close: The closing price of the stock for the day before.
- Open,High, Low, Last, Close: The opening price, highest price, lowest price, last price and closing price of ICICI shares on the current day.
- VWAP: Volume Weighted Average Price,the target variable to predict. VWAP is a trading benchmark used by traders that gives the average price the stock has traded at throughout the day, based on both volume and price.
- Volume: Volume of shares traded on the current day.
- Turnover: It is a measure of stock liquidity calculated by dividing the total number of shares traded over a period by the average number of shares outstanding for the period.
- Trades: total number of trades on the current day.
- Deliverable Volume: is the quantity of shares which actually move from one set of people to another set of people.
- Deliverable(%): Deliverable volume in percentage.