Skip to content
EliteChart

AlertsDialogRow

Documentation


Documentation / @elitechart/core / AlertsDialogRow

Defined in: ui/alerts-dialog.ts:22

One row in the Alerts dialog. Mirrors Alert flattened to dialog-friendly primitives.

Example

code
const row: AlertsDialogRow = {
  id: 'a1', price: 67_500, note: 'breakout',
  toolDrawingId: undefined, triggered: false, createdAt: Date.now(),
};

Properties

createdAt

code
readonly createdAt: number;

Defined in: ui/alerts-dialog.ts:28


id

code
readonly id: string;

Defined in: ui/alerts-dialog.ts:23


note

code
readonly note: string | undefined;

Defined in: ui/alerts-dialog.ts:25


price

code
readonly price: number;

Defined in: ui/alerts-dialog.ts:24


toolDrawingId

code
readonly toolDrawingId: string | undefined;

Defined in: ui/alerts-dialog.ts:26


triggered

code
readonly triggered: boolean;

Defined in: ui/alerts-dialog.ts:27