Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-W-M committed Oct 1, 2021
1 parent bc15be3 commit 5041125
Show file tree
Hide file tree
Showing 5 changed files with 179 additions and 120 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ services:
command: >
trade
--logfile /freqtrade/user_data/logs/freqtrade.log
--db-url sqlite:////freqtrade/user_data/database/main.sqlite
--db-url sqlite:////freqtrade/user_data/database/botBoi.sqlite
--config /freqtrade/user_data/config.json
--strategy GodCard
2 changes: 1 addition & 1 deletion user_data/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 13 additions & 21 deletions user_data/config.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@

{
"max_open_trades": 5,
"max_open_trades": 20,
"stake_currency": "USDT",
"stake_amount": "unlimited",
"tradable_balance_ratio": 0.99,
"fiat_display_currency": "USD",
"timeframe": "1h",
"dry_run": false,
"dry_run_wallet": 4000,
"timeframe": "15m",
"dry_run": true,
"cancel_open_orders_on_exit": false,
"unfilledtimeout": {
"buy": 10,
"sell": 30,
"unit": "minutes"
},
"bid_strategy": {
"price_side": "ask",
"price_side": "bid",
"ask_last_balance": 0.0,
"use_order_book": true,
"order_book_top": 1,
Expand Down Expand Up @@ -59,7 +63,6 @@
"DOGE/USDT",
"LINK/USDT",
"SRM/USDT",
"USDC/USDT",
"FET/USDT",
"TRX/USDT",
"FTT/USDT",
Expand Down Expand Up @@ -131,7 +134,6 @@
"REN/USDT",
"OGN/USDT",
"FUN/USDT",
"EUR/USDT",
"QNT/USDT",
"POND/USDT",
"ROSE/USDT",
Expand Down Expand Up @@ -208,20 +210,10 @@
"TFUEL/USDT",
"CVC/USDT",
"FIO/USDT"

],
"pair_blacklist": [
"BNB/BTC",
"BNB/BUSD",
"BNB/ETH",
"BNB/EUR",
"BNB/NGN",
"BNB/PAX",
"BNB/RUB",
"BNB/TRY",
"BNB/TUSD",
"BNB/USDC",
"BNB/USDS",
"BNB/USDT",
"BNB/.*"
]
},
"pairlists": [
Expand All @@ -241,18 +233,18 @@
"max_trade_duration_minute": 1440,
"remove_pumps": false
},
"telegram": {
"telegram": {
"enabled": true,
"token": "1934537219:AAFqXKuvhFcBEXzTMlb6Iznc0KT93SA8xbk",
"chat_id": "528209470"
},
"api_server": {
"enabled": true,
"listen_ip_address": "127.0.0.1",
"listen_port": 8081,
"listen_port": 8080,
"verbosity": "error",
"enable_openapi": false,
"jwt_secret_key": "286befcf7fcbc75c019594a973171093af6f69111b60e2a427b8c906a049d3e1",
"jwt_secret_key": "6444bc41d988df4b88932f79b407434a74be249b27a44bf9a92d4dc7bb398170",
"CORS_origins": [],
"username": "freqtrader",
"password": ""
Expand Down
37 changes: 37 additions & 0 deletions user_data/strategies/strat_online.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"strategy_name": "GodCard",
"params": {
"buy": {
"buy_rsi": 17,
"buy_rsi_enabled": false,
"buy_trigger": "bb_two"
},
"sell": {
"sell_rsi": 41,
"sell_rsi_enabled": true,
"sell_trigger": "bb_low_sell"
},
"protection": {
"cooldown_lookback": 6,
"stop_duration": 38,
"use_stop_protection": false
},
"roi": {
"0": 0.28300000000000003,
"85": 0.049,
"255": 0.028,
"493": 0
},
"stoploss": {
"stoploss": -0.185
},
"trailing": {
"trailing_stop": true,
"trailing_stop_positive": 0.225,
"trailing_stop_positive_offset": 0.261,
"trailing_only_offset_is_reached": true
}
},
"ft_stratparam_v": 1,
"export_time": "2021-10-01 01:37:05.329056+00:00"
}
Loading

0 comments on commit 5041125

Please sign in to comment.