A P&F column. Carries the box size it was built with (modes vary it).

interface PointFigureColumn {
    boxes: number;
    boxSize: number;
    close: number;
    color?: string;
    high: number;
    low: number;
    open: number;
    time: number;
    volume?: number;
}

Hierarchy (View Summary)

  • Bar
    • PointFigureColumn

Properties

boxes: number

Number of boxes (glyphs) stacked in this column.

boxSize: number

Price height of one box in this column — one X or O glyph.

close: number
color?: string

Per-bar colour override, honoured by every Family-A renderer: candles and OHLC bars take it on body, border and wick together, histogram and column on the bar, and line, step, area and the HLC-area close line split their stroke into runs at the bars where it changes. Baseline is the exception, its stroke is already split by the above/below-base rule. A MACD histogram is four colours by momentum, and a conditional study is two. Neither is expressible with one colour for the whole series.

high: number
low: number
open: number
time: number
volume?: number