@sunrise1002/tats
Version:
Techincal Indicators written in javascript
63 lines (62 loc) • 1.84 kB
JavaScript
import { EMA } from '../moving_averages/EMA';
import { Indicator, IndicatorInput } from '../indicator/indicator';
export class ForceIndexInput extends IndicatorInput {
constructor() {
super(...arguments);
this.period = 1;
}
}
;
export class ForceIndex extends Indicator {
constructor(input) {
super(input);
var closes = input.close;
var volumes = input.volume;
var period = input.period || 1;
if (!((volumes.length === closes.length))) {
throw ('Inputs(volume, close) not of equal size');
}
let emaForceIndex = new EMA({ values: [], period: period });
this.result = [];
this.generator = (function* () {
var previousTick = yield;
var tick = yield;
let forceIndex;
while (true) {
forceIndex = (tick.close - previousTick.close) * tick.volume;
previousTick = tick;
tick = yield emaForceIndex.nextValue(forceIndex);
}
})();
this.generator.next();
volumes.forEach((tick, index) => {
var result = this.generator.next({
close: closes[index],
volume: volumes[index]
});
if (result.value != undefined) {
this.result.push(result.value);
}
});
}
;
;
nextValue(price) {
let result = this.generator.next(price).value;
if (result != undefined) {
return result;
}
}
;
}
ForceIndex.calculate = forceindex;
export function forceindex(input) {
Indicator.reverseInputs(input);
var result = new ForceIndex(input).result;
if (input.reversedInput) {
result.reverse();
}
Indicator.reverseInputs(input);
return result;
}
;