-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a238b8
commit 634b722
Showing
3 changed files
with
36 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
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
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,33 @@ | ||
### Support Strategy | ||
|
||
This strategy uses K-lines with high volume as support and buys the target asset, then takes profit at specified price. | ||
|
||
|
||
#### Parameters | ||
|
||
- `symbol` | ||
- The trading pair symbol, e.g., `BTCUSDT`, `ETHUSDT` | ||
- `quantity` | ||
- Quantity per order | ||
- `interval` | ||
- The K-line interval, e.g., `5m`, `1h` | ||
- `minVolume` | ||
- The threshold, e.g., `1000000`, `5000000`. A K-line with volume larger than this is seen as a support, and | ||
triggers a market buy order. | ||
- `movingAverageWindow` | ||
- The MA window to filter out noises, e.g., 99. The support higher than the MA is seen as invalid | ||
- `maxBaseAssetBalance` | ||
- Maximum quantity of the target asset. Orders will not be submitted if the current balance reaches this threshold. | ||
- `minQuoteAssetBalance` | ||
- Minimum quantity of the quote asset. Orders will not be submitted if the current balance reaches this threshold. | ||
- `targets` | ||
- `profitPercentage` | ||
- Take profit ratio, e.g., 0.01 means taking profit when the price rises 1%. | ||
- `quantityPercentage` | ||
- The position ratio to take profit, e.g., 0.5 means selling 50% of the original buy order position when takes | ||
profit. | ||
|
||
|
||
#### Examples | ||
|
||
See [support.yaml](../../config/support.yaml) |