This project encompasses various stages, including data collection, exploratory data analysis, data preprocessing, and the three kind of models: time series, machine learning, and deep learning models. The final step involves comparing the results of each model using the Root Mean Squared Error (RMSE) metric.
I retrieved stock data using WebSocket due to the nature of the data being presented in a chart. Unfortunately, conventional methods such as requests or BeautifulSoup are not applicable in this scenario. The data fetched pertains to Adanc stock, representing Advanced Info Service Public Company Limited, Thailand's largest GSM mobile phone operator. For more details on the source of the data, you can visit the following website: Link
The data includes closing, opening,highest, lowest, and date which covers the period from 2018-12-21 to 2023-12-20.
- Time series methods: ARIMA (done), EWMA
- Machine learning methods: Random forests, XGBoost, MARS
- Deep learning methods: RNN and LSTM (next)