-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Profiles] add default trailing grid profile
- Loading branch information
1 parent
c058bc7
commit a9ea307
Showing
4 changed files
with
86 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"config": { | ||
"crypto-currencies": { | ||
"Bitcoin": { | ||
"enabled": true, | ||
"pairs": [ | ||
"BTC/USDT" | ||
] | ||
} | ||
}, | ||
"exchanges": { | ||
"binance": { | ||
"enabled": true | ||
} | ||
}, | ||
"trader": { | ||
"enabled": false, | ||
"load-trade-history": false | ||
}, | ||
"trader-simulator": { | ||
"enabled": true, | ||
"fees": { | ||
"maker": 0.1, | ||
"taker": 0.1 | ||
}, | ||
"starting-portfolio": { | ||
"BTC": 10, | ||
"USDT": 1000 | ||
} | ||
}, | ||
"trading": { | ||
"reference-market": "USDT", | ||
"risk": 0.5 | ||
} | ||
}, | ||
"profile": { | ||
"avatar": "default_profile.png", | ||
"risk": 1, | ||
"complexity": 1, | ||
"description": "Trailing Grid Trading is a profile similar to the Grid Trading profile, except that it will create a trailing grid. When the BTC price will rise beyond the initial grid sell orders, the grid will automatically adapt to trade according to the updated price.", | ||
"id": "trailing_grid_trading", | ||
"name": "Trailing Grid Trading", | ||
"read_only": true | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
profiles/trailing_grid_trading/specific_config/GridTradingMode.json
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,25 @@ | ||
{ | ||
"required_strategies": [], | ||
"pair_settings": [ | ||
{ | ||
"pair": "BTC/USDT", | ||
"flat_spread": 1300, | ||
"flat_increment": 800, | ||
"buy_orders_count": 15, | ||
"sell_orders_count": 15, | ||
"sell_funds": 0, | ||
"buy_funds": 0, | ||
"starting_price": 0, | ||
"buy_volume_per_order": 0, | ||
"sell_volume_per_order": 0, | ||
"ignore_exchange_fees": false, | ||
"use_fixed_volume_for_mirror_orders": false, | ||
"mirror_order_delay": 0, | ||
"use_existing_orders_only": false, | ||
"allow_funds_redispatch": false, | ||
"enable_trailing_up": true, | ||
"enable_trailing_down": false, | ||
"funds_redispatch_interval": 24 | ||
} | ||
] | ||
} |
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,7 @@ | ||
{ | ||
"tentacle_activation": { | ||
"Trading": { | ||
"GridTradingMode": true | ||
} | ||
} | ||
} |