Orders
The orders page contains all the orders placed by the user in the current trading session. This page contains all orders placed across the exchanges (NSE, BSE, MCX) and will display orders irrespective of the order status (Market, Limit, Stop and Stoplimit).
This fully loaded orders page will provide the user with the following functionality:
- View all orders
- Modify / Cancel pending orders
- Filter the orders based product, symbol, etc
Branded Button for Order Page
You can use the branded button for the hosted orders page.
<fyers-button data-open="orderbook" data-fyers="API_KEY"></fyers-button>
Custom button for Order page
You can create a custom button for the hosted orders page and assign it to the same functionality.
<!--A custom button--!>
<button id="custom-button">Orders</button>
<script>
Fyers.ready(function(){
var fyers = new Fyers("API_KEY")
//link the button id to orderbook module
fyers.linkandredirect("#custom-button","orderbook");
})
</script>