Funds
The funds page contains the entire fund related information of the user.
Branded button for Funds page
You can use the branded button for the hosted funds page
<fyers-button data-open="funds" data-fyers="API_KEY"></fyers-button>
Custom button for Funds page
You can create a custom button for the hosted funds page and assign it to the same functionality.
<!--A custom button--!>
<button id="custom-button">Funds</button>
<script>
Fyers.ready(function(){
var fyers = new Fyers("API_KEY")
//link the button id to funds module
fyers.linkandredirect("#custom-button","funds");
})
</script>