Add order submission example script

This commit is contained in:
moshferatu 2023-12-18 05:29:53 -08:00
parent af92a7647f
commit f80ae0727e

View File

@ -0,0 +1,14 @@
from datetime import datetime
from ibkr import Client, OptionLeg
from ibkr.option_type import PUT
from ibkr.order_action import BUY, SELL
client = Client(host = '127.0.0.1', port = 7497)
symbol, sub_symbol = 'SPX', 'SPXW'
expiration = datetime.now()
short_leg = OptionLeg(symbol, expiration, 4695.0, PUT, SELL, sub_symbol)
long_leg = OptionLeg(symbol, expiration, 4645.0, PUT, BUY, sub_symbol)
client.submit_combo_option_order([short_leg, long_leg], 1)