04-05-2018, 01:12 AM
(This post was last modified: 04-05-2018, 01:19 AM by Ualas.
Edit Reason: Update
)
Code:
log.debug(+this.settings.SMA.long );
log.debug(+this.settings.SMA.short);
log.debug(+this.settings.BULL.rsi );
log.debug(+this.settings.BEAR.rsi );
log.debug(+this.settings.ADX.adx );
log.debug(+this.BULL_MOD_high );
log.debug(+this.BULL_MOD_low );
log.debug(+this.BEAR_MOD_high );
log.debug(+this.BEAR_MOD_low );
log.debug(+this.settings.BEAR.high );
log.debug(+this.settings.BEAR.low);
log.debug(+this.settings.BULL.high );
log.debug(+this.settings.BULL.low);
log.debug(+this.settings.ADX.high );
log.debug(+this.settings.ADX.low);
All of the parameters are being populated ;(
from: '2018-03-05 00:12',
to: '2018-04-05 00:12'
candleValues: [9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25],
Any ideas?
EDIT
Code:
log.debug(+this.indicators.maSlow.result );
log.debug(+this.indicators.maFast.result );
log.debug(+this.indicators.BULL_RSI.result );
log.debug(+this.indicators.BEAR_RSI.result );
log.debug(+this.indicators.ADX.result );
I've tried this way and i'm getting zero for all of them. Whats could be wrong?