Predicting stock prices using Time series forecasting techniques like: SMA (Simple Moving Average), EMA (Exponential Moving Average), MOM (Momentum), RSI (Relative Strength Index), MACD (Moving Average Convergence Divergence).
And ML Algorithms such as: Linear Regression, Decision Trees, RandomForest, XGBoost.
NSEPY library TA-LIB Library
Run these commands to set-up TIP: Works on colab easily
!wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
!tar -xzvf ta-lib-0.4.0-src.tar.gz
%cd ta-lib
!./configure --prefix=/usr
!make !make install
!pip install Ta-Lib
!pip install nsepy
LEARN how to use NSEPY: here