Add the indicator as a require:
Then add it as:
Gekko won't automatically update this, so in the update block you need to call update, with your HA candle instead of the normal candle:
Code:
var myInd = require(./indicators/myInd.js);
Then add it as:
Code:
this.myIndicator = new myInd(myParameters);
Gekko won't automatically update this, so in the update block you need to call update, with your HA candle instead of the normal candle:
Code:
this.myIndicator.update(myHACandle);