Flask API
A SVM model hosted with Flask to predict next days closing price of a Particular Stock
- Open Yahoo Finance and select get the Stock's Symbol from there
- Replace [stockname] with your stock symbol in the following endpoints
- To get buy sell hold flag for today
GET https://baseurl/predict/[stockname]
- To get list of Stocks
GET https://baseurl/stock
- To get Current Market price of stock
GET https://baseurl/current/[stockname]
- To get previous 1 week data of a stock
GET https://baseurl/week/[stockname]
- To get tomorrow's closing price prediction
GET https://baseurl/rawpredict/[stockname]
- To get full data of previous
n
days included moving average of a stock
GET https://baseurl/[stockname]/[n]