Suggest the selling time and buying time of a share based on stock price prediction
Problem You have an API to predict stock values of a particular share,
The API is
StockPrediction predict(int stockid); where
class StockPrediction{ Date time: float value; } using this API develop another API which will suggest the best selling time and buying time of a share (you have to call the predict API N number of times and from the StockPredictions provide the best buy time and sell time for the stock)
[Read More]