From 4982a858a06e96ebd657b7b0e94ef71783cda2ac Mon Sep 17 00:00:00 2001 From: c9s Date: Sat, 5 Aug 2023 02:00:35 +0800 Subject: [PATCH] config: update convert strategy sample config --- config/convert.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config/convert.yaml diff --git a/config/convert.yaml b/config/convert.yaml new file mode 100644 index 000000000..ae5f14485 --- /dev/null +++ b/config/convert.yaml @@ -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 + +