Hi Folks,
may i please know, limit order via ALGO - trading view webhook is possible?
currently market orders are getting punched.
also apart from below payload, anything else is available, which can be used?
{“symbol”:“{{ticker}}”,“side”:“{{strategy.order.action}}”,“qty”:“{{strategy.order.contracts}}”,“trigger_time”:“{{timenow}}”,“strategy_id”:“aaaaaaa”}
Hi @theCinematic
All TradingView webhook orders are executed as market orders.
This means that regardless of your webhook payload configuration, all orders triggered through TradingView alerts will be executed as market orders at the current market price. This is done as to make sure on a valid signal you get completely filled on the size you want to trade.
The Webhook parameters mentioned by you are the only ones available. these are sufficient to run a trading strategy. If you are wondering about SL and TP, that can be coded in pinescript inside your trading strategy easily and deployed.
1 Like
thanks for prompt response.