/** * Market Cipher A (VuManChu Cipher A) * * EMA ribbon overlay with 8 EMAs (5,11,15,18,21,24,28,34), WaveTrend oscillator, * RSI, and RSI+MFI for signal generation. * * Display elements from Pine: * - 8 EMA ribbon lines with conditional colors (blue shades when bullish, gray when bearish) * - Fills between EMA1-EMA2 and EMA2-EMA8 * - 8 plotshape markers: longEma, shortEma, redCross, blueTriangle, redDiamond, * bullCandle, bloodDiamond, yellowCross * * Reference: TradingView "VuManChu Cipher A" (overlay=true) */ import { type IndicatorResult, type InputConfig, type PlotConfig, type Bar } from 'oakscriptjs'; import type { MarkerData } from '../types'; export interface MarketCipherAInputs { wtChannelLen: number; wtAverageLen: number; wtMALen: number; ema1Len: number; ema2Len: number; ema3Len: number; ema4Len: number; ema5Len: number; ema6Len: number; ema7Len: number; ema8Len: number; rsiLen: number; rsiMFIPeriod: number; rsiMFIMultiplier: number; } export declare const defaultInputs: MarketCipherAInputs; export declare const inputConfig: InputConfig[]; export declare const plotConfig: PlotConfig[]; export declare const metadata: { title: string; shortTitle: string; overlay: boolean; }; export declare function calculate(bars: Bar[], inputs?: Partial): IndicatorResult & { markers: MarkerData[]; }; export declare const MarketCipherA: { calculate: typeof calculate; metadata: { title: string; shortTitle: string; overlay: boolean; }; defaultInputs: MarketCipherAInputs; inputConfig: InputConfig[]; plotConfig: PlotConfig[]; }; //# sourceMappingURL=market-cipher-a.d.ts.map