我在这里发布了部分代码。我只想从 nifty_opn 中获取“执行价格”信息,但我在这里得到的是,strike_price 信息也包含日期,如下所示:
2014-12-01 2100
怎么做?
nifty_opn = get_history(symbol="NIFTY",
start=sdate,
end=sdate,
index=True,
option_type='CE',
strike_price=int(numpy.round(nifty_price.get('Close'),-2)),
expiry_date=expiry)
symbol=nifty_opn.get('Symbol')
date=nifty_price.get('Date')
close=nifty_price.get('Close')
expiry=nifty_opn.get('Expiry')
strike_price=nifty_opn.get('Strike Price')
settle_price=nifty_opn.get('Settle Price')
contracts_no=nifty_opn.get('Number of Contracts')
data=[symbol,date,close,expiry,strike_price,settle_price,contracts_no]