Account Data API
Account, wallet, open order & position information
All the account data endpoints require a signature
Get accounts
Returns:
A dictionary where the keys are the account guid and the values are the account names.
Example URL:
Get all accounts details
Returns:
A dictionary where the keys are the account guid and the values are objects of `AccountInformation`.
Example URL:
Get account details
Required input:
accountGuid : the guid of the account
Returns:
Object of `AccountInformation`.
Example URL:
Adjust wallet of simulated account
Required input:
accountGuid : the guid of the account
coin : the coin to adjust
amount : the new amount. Set on 0 to remove the coin from the wallet.
Returns:
Object of `Wallet`.
Example URL:
Clear wallet of simulated account
Required input:
accountGuid : the guid of the account
Returns:
Object of `Wallet`.
Example URL:
Get wallet
Required input:
accountGuid : the guid of the account
Returns:
A `Wallet` object.
Example URL:
Get open orders
Required input:
accountGuid : the guid of the account
Returns:
A `OrderContainer` object.
Example URL:
Get available order templates
Returns:
A dictionary where the keys are the template guid and the values are the template names.
Example URL:
Last updated