Last active
February 12, 2021 20:36
-
-
Save PhillRob/424a34ad89aa1db5dba9d89890830a33 to your computer and use it in GitHub Desktop.
Neural network settings for BTC-USDT gekko trading bot on binance. Advice published on twitter https://twitter.com/phillr0
This file contains hidden or 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
// neuralnet settings | |
config.neuralnet = { | |
threshold_buy: 1, | |
threshold_sell: -1, | |
learning_rate: 0.02, | |
momentum: 0.5, | |
decay: 0.01, | |
stoploss_enabled: false, | |
stoploss_threshold: 0.85, | |
hodl_threshold: 0.90, | |
price_buffer_len: 100, | |
min_predictions: 1000 | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment