-
-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: update convert strategy sample config
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
exchangeStrategies: | ||
- on: binance | ||
convert: | ||
## the initial asset you want to convert to | ||
from: BNB | ||
|
||
## the final asset you want to convert to | ||
to: BTC | ||
|
||
## interval is the period of trigger | ||
interval: 1m | ||
|
||
## minBalance is the minimal balance line you want to keep | ||
## in this example, it means 1 BNB | ||
minBalance: 1.0 | ||
|
||
## maxQuantity is the max quantity per order for converting asset | ||
## in this example, it means 2 BNB | ||
maxQuantity: 2.0 | ||
|
||
## useTakerOrder uses the taker price for the order, so the order will be a taker | ||
## which will be filled immediately | ||
useTakerOrder: true | ||
|
||
|