UNPKG

ta-pattern-lib

Version:

Technical Analysis and Backtesting Framework for Node.js

9 lines (8 loc) 941 B
export { compute_adx, compute_alligator, compute_atr, compute_bollinger_bands, compute_macd, compute_obv, compute_rsi, compute_vwap, DEFAULT_FUNCTION_REGISTRY } from "./features/feature_indicators_formulaes"; export { calculate_heikin_ashi } from "./features/feature_ohlc"; export { linear_regression } from "./features/feature_regression"; export { compute_ema, correlate, stats_calculate_similarity, stats_calculate_slope, stats_mean, stats_median, stats_min_max_scaling, stats_normalize, stats_resample_data, stats_sma, stats_standard_deviation } from "./features/feature_statistics"; export { Candle, IHeikinAshi } from "./types/types_ohlc"; export { StrategyTrade, StrategyCandleDecision, StrategyReport, StrategySchema, StrategyState, StrategyReportMetric } from "./types/types-strategy"; export { DSLParser, FunctionRegistry } from "./features/feature_dsl_parser"; export { StrategyRunner } from "./features/feature_strategy_runner";