我需要从交互式经纪人中提取特定底层证券的所有选项。例如,我需要所有到期日在未来 3 个月内的期权作为ADS
底层证券。我正在使用ib_insync
包装器来提取必要的信息,例如bid
andask
等。它运行良好,但我需要可用选项的列表。
因此,我需要类似的东西(即下面的伪代码):
contracts = []
for underlying in ["ADS", "VOW"]:
tmp = **give me a list of all options (i.e., strikes, expiration date) for *underlying***
contracts.append(tmp)
感谢任何帮助!