@sunrise1002/tats
Version:
Techincal Indicators written in javascript
62 lines (61 loc) • 1.73 kB
JavaScript
import { Indicator, IndicatorInput } from '../indicator/indicator';
/**
* Created by AAravindan on 5/17/16.
*/
;
export class OBVInput extends IndicatorInput {
}
export class OBV extends Indicator {
constructor(input) {
super(input);
var closes = input.close;
var volumes = input.volume;
this.result = [];
this.generator = (function* () {
var result = 0;
var tick;
var lastClose;
tick = yield;
if (tick.close && (typeof tick.close === 'number')) {
lastClose = tick.close;
tick = yield;
}
while (true) {
if (lastClose < tick.close) {
result = result + tick.volume;
}
else if (tick.close < lastClose) {
result = result - tick.volume;
}
lastClose = tick.close;
tick = yield result;
}
})();
this.generator.next();
closes.forEach((close, index) => {
let tickInput = {
close: closes[index],
volume: volumes[index]
};
let result = this.generator.next(tickInput);
if (result.value != undefined) {
this.result.push(result.value);
}
});
}
nextValue(price) {
return this.generator.next(price).value;
}
;
}
OBV.calculate = obv;
export function obv(input) {
Indicator.reverseInputs(input);
var result = new OBV(input).result;
if (input.reversedInput) {
result.reverse();
}
Indicator.reverseInputs(input);
return result;
}
;