sql-synergy
Version:
Synergy Wave TA
34 lines (33 loc) • 950 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IConstants = void 0;
class IConstants {
}
exports.IConstants = IConstants;
IConstants.DATE_TIME = 0;
IConstants.OPEN = 1;
IConstants.HIGH = 2;
IConstants.LOW = 3;
IConstants.CLOSE = 4;
IConstants.VOLUME = 5;
IConstants.BUY_SIGNAL = 1;
IConstants.SELL_SIGNAL = -1;
IConstants.NO_SIGNAL = 0;
IConstants.HOURLY = 0;
IConstants.DAILY = 1;
IConstants.WEEKLY = 2;
IConstants.MONTHLY = 3;
IConstants.QUARTERLY = 4;
IConstants.YEARLY = 5;
IConstants.sTable = ["HOURLY", "DAILY", "WEEKLY", "MONTHLY", "QUARTERLY", "YEARLY"];
IConstants.sChart = ["1H", "D", "W", "M", "Q", "Y"];
IConstants.sChartPeriods = ["1H", "D", "W", "M", "Q", "Y"];
IConstants.NORMAL = 0;
IConstants.LEVELI = 1;
IConstants.LEVELII = 2;
IConstants.sST = ["Normal", "Level I", "Level II"];
IConstants.NONE = -1;
IConstants.DN = 0;
IConstants.DOWN = 0;
IConstants.UP = 1;
IConstants.sUPDN = ["Dn", "Up"];