假设我在 1990 年 1 月 10 日买入 EuroSTOXX 5O 欧洲看涨期权,到期日为 9 年。我想知道什么是到期日。任何的想法?
我可以从quantmod
包开始:
require(quantmod)
getSymbols("^STOXX50E", from = "1990-01-01")
maturity <- 9
dates <- index(STOXX50E)
问题是我不能使用
dates[1] + maturity*365
或者
dates[1] + maturity*252
找到到期日,因为工作日数因年份而异。
任何的想法?
谢谢。