egui-charts 0.2.0

High-performance financial charting engine for egui — candlesticks, 95 drawing tools, 130+ indicators, and a full design-token theme system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Alert creation dialog.
//!
//! Modal dialog for creating price, indicator, and volume alerts.

mod actions;
mod config;
mod dialog;
mod tabs;

pub use actions::{AlertData, AlertDialogAction};
pub use config::AlertDialogConfig;
pub use dialog::{AlertDialog, IndicatorAlertFormData, PriceAlertFormData, VolumeAlertFormData};
pub use tabs::AlertTab;