Added collateral example

This commit is contained in:
Sam Germain 2021-10-04 01:36:26 -06:00
parent 2714c02842
commit 449710d662

View File

@ -488,14 +488,14 @@ Leverage results from using borrowed capital as a funding source when investing
``` python ``` python
"trading_mode": "spot" "trading_mode": "futures"
``` ```
### Collateral ### Collateral
The possible values are: `isolated` (default), or `cross`(*coming soon*) The possible values are: `isolated`, or `cross`(*coming soon*)
# TODO: I took this definition from bitmex, is that fine? https://www.bitmex.com/app/isolatedMargin # TODO: I took this definition from bitmex, is that fine? https://www.bitmex.com/app/isolatedMargin
**ISOLATED** **ISOLATED**
Margin assigned to a position is restricted to a certain amount. If the margin falls below the Maintenance Margin level, the position is liquidated. Margin assigned to a position is restricted to a certain amount. If the margin falls below the Maintenance Margin level, the position is liquidated.
@ -504,6 +504,10 @@ Margin assigned to a position is restricted to a certain amount. If the margin f
Margin is shared between open positions. When needed, a position will draw more margin from the total account balance to avoid liquidation. Margin is shared between open positions. When needed, a position will draw more margin from the total account balance to avoid liquidation.
``` python
"collateral": "isolated"
```
### Exchange configuration ### Exchange configuration
Freqtrade is based on [CCXT library](https://github.com/ccxt/ccxt) that supports over 100 cryptocurrency Freqtrade is based on [CCXT library](https://github.com/ccxt/ccxt) that supports over 100 cryptocurrency