Interactive Brokers - TWS API - 最小价格增量

Interactive Brokers - TWS API - Minimum Price Increment

我正在尝试创建一个 TWS API 脚本,它将在 STK 市场下订单。我发现有各种市场规则,这些规则规定了最低价格增量。我查询系统以找出 marketRuleIds,但我不知道如何解释 reqMarketRule 的结果,例如市场规则 ID 557 提供以下结果:

Price Increment. LowEdge: 0.000000, Increment: 0.000100
Price Increment. LowEdge: 1.000000, Increment: 0.010000

市场规则 ID 26 提供以下结果:

Price Increment. LowEdge: 0.000000, Increment: 0.010000

市场规则 ID 1916 提供以下结果:

Price Increment. LowEdge: 0.000000, Increment: 0.000001
Price Increment. LowEdge: 0.001000, Increment: 0.000002
Price Increment. LowEdge: 0.002000, Increment: 0.000005
Price Increment. LowEdge: 0.005000, Increment: 0.000010
Price Increment. LowEdge: 0.010000, Increment: 0.000020
Price Increment. LowEdge: 0.020000, Increment: 0.000050
Price Increment. LowEdge: 0.050000, Increment: 0.000100
Price Increment. LowEdge: 0.100000, Increment: 0.000200
Price Increment. LowEdge: 0.200000, Increment: 0.000500
Price Increment. LowEdge: 0.500000, Increment: 0.001000
Price Increment. LowEdge: 1.000000, Increment: 0.002000
Price Increment. LowEdge: 2.000000, Increment: 0.005000
Price Increment. LowEdge: 5.000000, Increment: 0.010000
Price Increment. LowEdge: 10.000000, Increment: 0.020000
Price Increment. LowEdge: 20.000000, Increment: 0.050000
Price Increment. LowEdge: 50.000000, Increment: 0.100000
Price Increment. LowEdge: 100.000000, Increment: 0.200000
Price Increment. LowEdge: 200.000000, Increment: 0.500000
Price Increment. LowEdge: 500.000000, Increment: 1.000000

当我尝试在 TWS 应用程序中使用市场规则 1916 进行 STK 交易时,我可以看到增量为 0.50 GBP,但我不确定如何将其追踪回以上输出。

你能帮我弄清楚吗?

如果要确定价格增量,可以从合同明细中获取信息。 minTick 字段为您提供合约的最小价格增量。例如,在合约 'QQQ' 上,minTick 为 0.01,这意味着您可以提交 U.S 中的订单。美元,1 便士增量。小数点右边超过 2 位数的订单将失败。

我从 Reddit 对同一问题的评论中得到了答案。谢谢 major_domo 的帮助!

所提供答案的摘录: “

Price Increment. LowEdge: 100.000000, Increment: 0.200000
Price Increment. LowEdge: 200.000000, Increment: 0.500000
Price Increment. LowEdge: 500.000000, Increment: 1.000000

或价格在100以上,最小增量为0.2;对于200以上的价格,最小增量为0.5;对于 500 以上的价格,它是 1。

如果TWS显示增量为0.5,我假设当前价格在200到500之间。 “