https://github.com/milewski/bbgo-chaser
A custom price chaser strategy for BBGO bot framework.
https://github.com/milewski/bbgo-chaser
bbgo bot crypto-bot strategy
Last synced: 3 months ago
JSON representation
A custom price chaser strategy for BBGO bot framework.
- Host: GitHub
- URL: https://github.com/milewski/bbgo-chaser
- Owner: milewski
- License: mit
- Created: 2022-08-13T11:58:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T03:40:19.000Z (almost 3 years ago)
- Last Synced: 2025-03-16T17:24:12.456Z (3 months ago)
- Topics: bbgo, bot, crypto-bot, strategy
- Language: Go
- Homepage:
- Size: 53.7 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bbgo-chaser
```yaml
exchangeStrategies:
- on: binance
chaser:
symbol: BTCBUSD # symbol of the market
quantity: 0.1 # how much BTC to purchase per trade
#gap: 5 # how much $ to place the order bellow / above current price
profit: 0.5 # alternatively instead of setting gap you can set the desired profit per trade directly
maxDistance: 5 # if the current price go above this value, the order is canceled and re-created with new calculated price
maxNumberOfOrders: 4 # max number of orders to keep open at the same time
waitAfter: 2 # once there are X orders pending to be sold, wait `waitMinutes` minutes before creating new orders
waitMinutes: 1 # how long to wait before creating new orders once the `waitAfter` is reached
```