@4ex/indicators
Version:
Technical indicators for ohlc charts written in TypeScript
25 lines (24 loc) • 809 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PivotEnum = exports.PivotPointsEnum = void 0;
/**
* Methodology used to calculate Pivot Points
*/
var PivotPointsEnum;
(function (PivotPointsEnum) {
PivotPointsEnum["CLASSIC"] = "CLASSIC";
PivotPointsEnum["WOODIE"] = "WOODIE";
PivotPointsEnum["CAMARILLA"] = "CAMARILLA";
PivotPointsEnum["FIBONACCI"] = "FIBONACCI";
})(PivotPointsEnum = exports.PivotPointsEnum || (exports.PivotPointsEnum = {}));
/**
* Method used to calculate Pivot
*/
var PivotEnum;
(function (PivotEnum) {
PivotEnum["HLC3"] = "hlc3";
PivotEnum["OHL3"] = "ohl3";
PivotEnum["OHLC4"] = "ohlc4";
PivotEnum["HLCC4"] = "hlcc4";
PivotEnum["OOHL4"] = "oohl4";
})(PivotEnum = exports.PivotEnum || (exports.PivotEnum = {}));