请教下如何获得期货品种的主力合约?
比如要获取SHFE.rb的主力合约,能否以下? quote=api.get_quote(“SHFE.rb”) symbol=quote.underlying_symbol
可以的但是主连的合约名是KQ.m@SHFE.rb
可参考天勤文档:
https://doc.shinnytech.com/tqsdk/latest/usage/mddatas.html
symb='KQ.m@SHFE.rb' quote = api.get_quote(symb) klines = api.get_kline_serial(quote.underlying_symbol,duration_seconds=10)
[/apcode]
比如要获取SHFE.rb的主力合约,能否以下?
quote=api.get_quote(“SHFE.rb”)
symbol=quote.underlying_symbol