From 0b083adcb726b6a00ab074644556c015fe1b0d8d Mon Sep 17 00:00:00 2001 From: Craig P Jolicoeur Date: Thu, 25 Jan 2018 11:48:31 -0500 Subject: [PATCH] Update strategy param docs I believe, from reading the code, that this should be the `abs(trend_ema_rate)` and not `abs(trend_ema)`. --- extensions/strategies/trend_ema/strategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/strategies/trend_ema/strategy.js b/extensions/strategies/trend_ema/strategy.js index 6acbcad0a9..7f49ed2739 100644 --- a/extensions/strategies/trend_ema/strategy.js +++ b/extensions/strategies/trend_ema/strategy.js @@ -11,7 +11,7 @@ module.exports = function container (get, set, clear) { this.option('period_length', 'period length, same as --period', String, '2m') this.option('min_periods', 'min. number of history periods', Number, 52) this.option('trend_ema', 'number of periods for trend EMA', Number, 26) - this.option('neutral_rate', 'avoid trades if abs(trend_ema) under this float (0 to disable, "auto" for a variable filter)', Number, 'auto') + this.option('neutral_rate', 'avoid trades if abs(trend_ema_rate) under this float (0 to disable, "auto" for a variable filter)', Number, 'auto') this.option('oversold_rsi_periods', 'number of periods for oversold RSI', Number, 14) this.option('oversold_rsi', 'buy when RSI reaches this value', Number, 10) },