pricehistory
Version:
Transforms raw OHLCV series data into enriched candles with technical indicators, pattern recognition, and trend analysis.
28 lines • 488 B
JavaScript
export const smaKeys = [
"priceOpen",
"priceHigh",
"priceLow",
"priceClose",
"priceMean",
"priceChange",
"priceChangePremarket",
"priceChangeIntraday",
"priceChangeCumulative",
"priceRange",
"priceRangeDiff",
"priceRangeMean",
"volume",
"volumeValue",
"obv",
"obvValue",
];
export const trendKeys = [
"rsi",
"ema",
"macd",
"sma",
"signal",
"phase",
"pressure",
];
//# sourceMappingURL=keys.js.map