Skip to content

Commit

Permalink
[Profiles] add default trailing grid profile
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDSM committed Jan 24, 2025
1 parent c058bc7 commit a9ea307
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 0 deletions.
9 changes: 9 additions & 0 deletions profiles/grid_trading/specific_config/GridTradingMode.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"use_fixed_volume_for_mirror_orders": false,
"mirror_order_delay": 0,
"use_existing_orders_only": false,
"allow_funds_redispatch": false,
"enable_trailing_up": false,
"enable_trailing_down": false,
"funds_redispatch_interval": 24
},
{
Expand All @@ -33,6 +36,9 @@
"use_fixed_volume_for_mirror_orders": false,
"mirror_order_delay": 0,
"use_existing_orders_only": false,
"allow_funds_redispatch": false,
"enable_trailing_up": false,
"enable_trailing_down": false,
"funds_redispatch_interval": 24
},
{
Expand All @@ -50,6 +56,9 @@
"use_fixed_volume_for_mirror_orders": false,
"mirror_order_delay": 0,
"use_existing_orders_only": false,
"allow_funds_redispatch": false,
"enable_trailing_up": false,
"enable_trailing_down": false,
"funds_redispatch_interval": 24
}
]
Expand Down
45 changes: 45 additions & 0 deletions profiles/trailing_grid_trading/profile.json
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
}
}
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
}
]
}
7 changes: 7 additions & 0 deletions profiles/trailing_grid_trading/tentacles_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"tentacle_activation": {
"Trading": {
"GridTradingMode": true
}
}
}

0 comments on commit a9ea307

Please sign in to comment.