我有一栏想要的期权类型(看涨期权或看跌期权),一栏是我想要该期权的收盘价的日期,期权到期日和期权行使价。鉴于此信息,我想在收盘价上找到期权价格。
我写了下面的公式,试图找到19/3/19到期的3600价在3/8/19的价格,但这给了我#N / A连接错误。
= BDP(“ SX5E 12/20/19 C3600”,“ px_last”,“ 03/08/2019”,“ 03/08/2019”)
我希望能得到上面描述的内容,但遇到#N / A错误
答案 0 :(得分:1)
如果您对检索历史数据(非当前数据)感兴趣,则最好使用 BDH 公式代替 BDP ,该公式将为您提供更好的服务给你当前值。
也许这可能对您有帮助
I have these relevant annotations in my web service:
@StreamingAttachment(parseEagerly = false, memoryThreshold = 4194304L) // 4Mb threshold.
@MTOM
I setup MTOM this way too:
// Get the web service port. Make sure MTOM is enabled.
Map<String, Object> context = ((BindingProvider)port).getRequestContext();
context.put(JAXWSProperties.HTTP_CLIENT_STREAMING_CHUNK_SIZE, 8*1024); // 8Kb chunks.
context.put(JAXWSProperties.CONNECT_TIMEOUT, 60*60*1000); // 1 hour timeout.
context.put(JAXWSProperties.MTOM_THRESHOLOD_VALUE, 4*1024*1024); // 4Mb threshold.
I create a DataHandler this way:
new DataHandler(new FileDataSource(downloads + slash + fileName));
。
注意我如何在安全名称上添加“索引”以使其有效。