interface CandleStyle {
    borderDownColor: string;
    borderUpColor: string;
    borderVisible: boolean;
    downColor: string;
    hollow?: boolean;
    upColor: string;
    wickDownColor: string;
    wickUpColor: string;
    wickVisible: boolean;
    widthScale?: (bar: Bar) => number;
}

Properties

borderDownColor: string
borderUpColor: string
borderVisible: boolean
downColor: string
hollow?: boolean

Draw up-candle bodies as outlines only (hollow candles).

upColor: string
wickDownColor: string
wickUpColor: string
wickVisible: boolean
widthScale?: (bar: Bar) => number

Per-bar body-width scale 0..1 (volume candles); 1 = full width.