UNPKG

stock-indicator

Version:

Stock Indicator Library

35 lines (34 loc) 1.06 kB
import { MA } from "./idicators/ma"; import { BOLL } from "./idicators/boll"; import { EXPMA } from "./idicators/expma"; import { DMA } from "./idicators/dma"; import { MACD } from "./idicators/macd"; import { RSI } from "./idicators/rsi"; import { KDJ } from "./idicators/kdj"; import { CCI } from "./idicators/cci"; import { DMI } from "./idicators/dmi"; import { TRIX } from "./idicators/trix"; import { BRAR } from "./idicators/brar"; import { CR } from "./idicators/cr"; import { VR } from "./idicators/vr"; import { OBV } from "./idicators/obv"; import { EMV } from "./idicators/emv"; declare const _default: { MA: typeof MA; EXPMA: typeof EXPMA; DMA: typeof DMA; MACD: typeof MACD; RSI: typeof RSI; KDJ: typeof KDJ; BOLL: typeof BOLL; CCI: typeof CCI; DMI: typeof DMI; TRIX: typeof TRIX; BRAR: typeof BRAR; CR: typeof CR; VR: typeof VR; OBV: typeof OBV; EMV: typeof EMV; }; export default _default; export { MA, EXPMA, DMA, MACD, RSI, KDJ, BOLL, CCI, DMI, TRIX, BRAR, CR, VR, OBV, EMV, };