Hi All,
Let's say I buy a stock using a limit order:
order(stock, buy_amt, style=LimitOrder(price))
Later I can access this order with:
orders = get_open_orders(context, stock)
order_ = orders[0]
My question is, how can I edit the limit price, or volume on this order?
Seems unlikely, but would changing the limit property have any effect (since I do not see any methods relating to editing the order):
order_.limit = 100
Or do I have to cancel it and then reorder at a new price or quantity?