Code
datatable(
tail(asml, 100),
rownames = FALSE,
options = list(
pageLength = 10,
order = list(list(0, 'desc'))
)
)Project of Time Series Analysis for Economic and Financial Data
This project aims to conduct an in-depth time series analysis of the stock prices for ASML Holding NV (ASML), a global leader in the manufacturing of lithography systems for the semiconductor industry. The primary objective is to explore the dynamics of historical prices, volatility, and underlying trends of the stock.
We retrieve historical daily data using the quantmod R package, focusing on the Adjusted Closing Price to account for dividends and stock splits.
The dataset structure is shown below:
datatable(
tail(asml, 100),
rownames = FALSE,
options = list(
pageLength = 10,
order = list(list(0, 'desc'))
)
)