- Joined
- 10/9/16
- Messages
- 5
- Points
- 11
I'm trying to understand the merits and flaws of the days I choose to bridge two data sets. I have already posted and addressed the issue of the method used. I'm now looking at the days.
Task: Converting Monthly data to daily data (for the purpose of this exercise I will use a linear approach).
The days I choose to count in each month to generate data for is what is important for this question.
Method: I have Quantlib (C++ quant library) and have tested other data sets such as stock data to see if they strictly adhere to the Business days for a given calendar (say Australia() in my case). And they don't . Days appear in that data set which are holidays but trading went ahead.. I think it will be rather difficult to find a robust way of adhering to the public holidays in each year so I have chosen another method.
Quantlib allows you to find Weekdays() for each day in each reference month. So I thought if I was going to turn monthly data into daily data (using a linear method, but that's not relevant), then I just adhere to adding days for weekdays and not weekends.
What's the best approach here? Is my method considered plausible?
Thanks
Task: Converting Monthly data to daily data (for the purpose of this exercise I will use a linear approach).
The days I choose to count in each month to generate data for is what is important for this question.
Method: I have Quantlib (C++ quant library) and have tested other data sets such as stock data to see if they strictly adhere to the Business days for a given calendar (say Australia() in my case). And they don't . Days appear in that data set which are holidays but trading went ahead.. I think it will be rather difficult to find a robust way of adhering to the public holidays in each year so I have chosen another method.
Quantlib allows you to find Weekdays() for each day in each reference month. So I thought if I was going to turn monthly data into daily data (using a linear method, but that's not relevant), then I just adhere to adding days for weekdays and not weekends.
What's the best approach here? Is my method considered plausible?
Thanks