It looks like you're new here. If you want to get involved, click one of these buttons!
from kiteconnect import KiteConnect
kite = KiteConnect(api_key=api_key)
# kite object initialized with access token and api key
kite.place_gtt(
trigger_type="two-leg",
tradingsymbol="NSE:INFY",
exchange="NSE",
trigger_values=[1550, 1650],
last_price=1600,
order={"transaction_type": "SELL", "quantity": 100},
)
But what about the price
field that's required in order
? What should that be ? I'm confused if I am missing something ..
Thanks for a quick response!