gateio cross margin account method
See original GitHub issueMake sure your local version of CCXT is up to date. Check by comparing the output of ccxt.version
to https://github.com/ccxt/ccxt/blob/master/package.json#L3
- OS:
- Programming Language version:
- CCXT version: 1.71.39
exchange2 = ccxt.gateio(
{
'enableRateLimit': True,
'apiKey': 'key',
'secret': 'secret',
'options': {
'defaultType': 'margin'
}
}
)
print(exchange2.private_margin_get_cross_accounts())
Is there a unified method available for fetching cross margin account on ccxt? Or there is only implicit method?
Issue Analytics
- State:
- Created 2 years ago
- Comments:11 (11 by maintainers)
Top Results From Across the Web
How to Conduct Cross Margin Trading - Gate.io
Step 1: Log in to your Gate.io account. Go to "Trade" - "Margin Trading". You can either choose "standard" or "professional" version.
Read more >Isolated Margin & Cross Margin - Gate.io
Under the cross margin mode, all balance in the user's account is used as the margin. Users can set up multiple contract positions...
Read more >Rules for Cross Margin Trading - Gate.io
2.1 Margin traders can use their cross margin account's net balance as collateral for cross margin trading. 2.2 All currencies that are traded...
Read more >Margin Trading_Cryptopedia Gateio
Essentially, margin trading is a method to trade assets using funds borrowed from the markets, which requires investors to commit a percentage of...
Read more >How to use Margin Trading? - Gate.io
Margin trading is a way of trading that magnifies the profit and loss of spot trading. The user needs to provide a margin,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@samgermain we have this in huobi.js, for example: https://github.com/ccxt/ccxt/blob/master/js/huobi.js#L1875 . I’m ok with making it a unified option + param override.
@samgermain Thank you. will test it out later. Can I check if watch_balance will be upgraded to include cross too?