Skip to content

Instantly share code, notes, and snippets.

@PhillRob
Last active February 12, 2021 20:36
Show Gist options
  • Save PhillRob/424a34ad89aa1db5dba9d89890830a33 to your computer and use it in GitHub Desktop.
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
// 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