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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
use crate::model::Bar;
/// Avg Price Indicators
/// Simple price calculations useful for analysis
use crate::studies::{Indicator, IndicatorValue};
use crate::tokens::DESIGN_TOKENS;
use egui::Color32;

/// OHLC4 - Avg of Open, High, Low, Close
#[derive(Clone)]
pub struct OHLC4 {
    values: Vec<IndicatorValue>,
    color: Color32,
    visible: bool,
}

impl OHLC4 {
    pub fn new() -> Self {
        Self {
            values: Vec::new(),
            color: DESIGN_TOKENS.semantic.extended.purple, // Purple
            visible: true,
        }
    }

    pub fn with_color(mut self, color: Color32) -> Self {
        self.color = color;
        self
    }
}

impl Default for OHLC4 {
    fn default() -> Self {
        Self::new()
    }
}

impl Indicator for OHLC4 {
    fn name(&self) -> &str {
        "OHLC4"
    }

    fn desc(&self) -> &str {
        "OHLC4 - (Open + High + Low + Close) / 4"
    }

    fn calculate(&mut self, data: &[Bar]) {
        self.values.clear();

        for bar in data {
            let ohlc4 = (bar.open + bar.high + bar.low + bar.close) / 4.0;
            self.values.push(IndicatorValue::Single(ohlc4));
        }
    }

    fn values(&self) -> &[IndicatorValue] {
        &self.values
    }

    fn colors(&self) -> Vec<Color32> {
        vec![self.color]
    }

    fn set_colors(&mut self, colors: Vec<Color32>) {
        if !colors.is_empty() {
            self.color = colors[0];
        }
    }

    fn is_overlay(&self) -> bool {
        true
    }

    fn is_visible(&self) -> bool {
        self.visible
    }

    fn set_visible(&mut self, visible: bool) {
        self.visible = visible;
    }

    fn clone_box(&self) -> Box<dyn Indicator> {
        Box::new(self.clone())
    }

    fn line_names(&self) -> Vec<String> {
        vec!["OHLC4".to_string()]
    }
}

/// HLC3 - Avg of High, Low, Close
/// Note: Same formula as [`TypicalPrice`](super::TypicalPrice); this variant
/// uses the standard TradingView naming convention.
#[derive(Clone)]
pub struct HLC3 {
    values: Vec<IndicatorValue>,
    color: Color32,
    visible: bool,
}

impl HLC3 {
    pub fn new() -> Self {
        Self {
            values: Vec::new(),
            color: DESIGN_TOKENS.semantic.extended.info, // Blue
            visible: true,
        }
    }

    pub fn with_color(mut self, color: Color32) -> Self {
        self.color = color;
        self
    }
}

impl Default for HLC3 {
    fn default() -> Self {
        Self::new()
    }
}

impl Indicator for HLC3 {
    fn name(&self) -> &str {
        "HLC3"
    }

    fn desc(&self) -> &str {
        "HLC3 - (High + Low + Close) / 3"
    }

    fn calculate(&mut self, data: &[Bar]) {
        self.values.clear();

        for bar in data {
            let hlc3 = (bar.high + bar.low + bar.close) / 3.0;
            self.values.push(IndicatorValue::Single(hlc3));
        }
    }

    fn values(&self) -> &[IndicatorValue] {
        &self.values
    }

    fn colors(&self) -> Vec<Color32> {
        vec![self.color]
    }

    fn set_colors(&mut self, colors: Vec<Color32>) {
        if !colors.is_empty() {
            self.color = colors[0];
        }
    }

    fn is_overlay(&self) -> bool {
        true
    }

    fn is_visible(&self) -> bool {
        self.visible
    }

    fn set_visible(&mut self, visible: bool) {
        self.visible = visible;
    }

    fn clone_box(&self) -> Box<dyn Indicator> {
        Box::new(self.clone())
    }

    fn line_names(&self) -> Vec<String> {
        vec!["HLC3".to_string()]
    }
}

/// HL2 - Avg of High and Low (Midpoint)
/// Note: Same formula as [`MedianPrice`](super::MedianPrice); this variant
/// uses the standard TradingView naming convention.
#[derive(Clone)]
pub struct HL2 {
    values: Vec<IndicatorValue>,
    color: Color32,
    visible: bool,
}

impl HL2 {
    pub fn new() -> Self {
        Self {
            values: Vec::new(),
            color: DESIGN_TOKENS.semantic.extended.warning, // Orange
            visible: true,
        }
    }

    pub fn with_color(mut self, color: Color32) -> Self {
        self.color = color;
        self
    }
}

impl Default for HL2 {
    fn default() -> Self {
        Self::new()
    }
}

impl Indicator for HL2 {
    fn name(&self) -> &str {
        "HL2"
    }

    fn desc(&self) -> &str {
        "HL2 - (High + Low) / 2 - Midpoint price"
    }

    fn calculate(&mut self, data: &[Bar]) {
        self.values.clear();

        for bar in data {
            let hl2 = (bar.high + bar.low) / 2.0;
            self.values.push(IndicatorValue::Single(hl2));
        }
    }

    fn values(&self) -> &[IndicatorValue] {
        &self.values
    }

    fn colors(&self) -> Vec<Color32> {
        vec![self.color]
    }

    fn set_colors(&mut self, colors: Vec<Color32>) {
        if !colors.is_empty() {
            self.color = colors[0];
        }
    }

    fn is_overlay(&self) -> bool {
        true
    }

    fn is_visible(&self) -> bool {
        self.visible
    }

    fn set_visible(&mut self, visible: bool) {
        self.visible = visible;
    }

    fn clone_box(&self) -> Box<dyn Indicator> {
        Box::new(self.clone())
    }

    fn line_names(&self) -> Vec<String> {
        vec!["HL2".to_string()]
    }
}

/// True Range (not avgd)
#[derive(Clone)]
pub struct TrueRange {
    values: Vec<IndicatorValue>,
    color: Color32,
    visible: bool,
}

impl TrueRange {
    pub fn new() -> Self {
        Self {
            values: Vec::new(),
            color: DESIGN_TOKENS.semantic.extended.error, // Red
            visible: true,
        }
    }

    pub fn with_color(mut self, color: Color32) -> Self {
        self.color = color;
        self
    }
}

impl Default for TrueRange {
    fn default() -> Self {
        Self::new()
    }
}

impl Indicator for TrueRange {
    fn name(&self) -> &str {
        "TR"
    }

    fn desc(&self) -> &str {
        "True Range - Max of H-L, |H-Cp|, |L-Cp|"
    }

    fn calculate(&mut self, data: &[Bar]) {
        self.values.clear();

        if data.is_empty() {
            return;
        }

        // First bar: just H-L
        self.values
            .push(IndicatorValue::Single(data[0].high - data[0].low));

        for i in 1..data.len() {
            let prev_close = data[i - 1].close;
            let hl = data[i].high - data[i].low;
            let hc = (data[i].high - prev_close).abs();
            let lc = (data[i].low - prev_close).abs();
            let tr = hl.max(hc).max(lc);
            self.values.push(IndicatorValue::Single(tr));
        }
    }

    fn values(&self) -> &[IndicatorValue] {
        &self.values
    }

    fn colors(&self) -> Vec<Color32> {
        vec![self.color]
    }

    fn set_colors(&mut self, colors: Vec<Color32>) {
        if !colors.is_empty() {
            self.color = colors[0];
        }
    }

    fn is_overlay(&self) -> bool {
        false
    }

    fn is_visible(&self) -> bool {
        self.visible
    }

    fn set_visible(&mut self, visible: bool) {
        self.visible = visible;
    }

    fn clone_box(&self) -> Box<dyn Indicator> {
        Box::new(self.clone())
    }

    fn line_names(&self) -> Vec<String> {
        vec!["TR".to_string()]
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use chrono::Utc;

    fn make_bar(open: f64, high: f64, low: f64, close: f64) -> Bar {
        Bar {
            time: Utc::now(),
            open,
            high,
            low,
            close,
            volume: 1000.0,
        }
    }

    #[test]
    fn test_ohlc4() {
        let mut ohlc4 = OHLC4::new();
        let data = vec![make_bar(100.0, 110.0, 90.0, 105.0)];

        ohlc4.calculate(&data);

        // OHLC4 = (100 + 110 + 90 + 105) / 4 = 101.25
        if let IndicatorValue::Single(v) = ohlc4.values[0] {
            assert!((v - 101.25).abs() < 0.01);
        }
    }

    #[test]
    fn test_hlc3() {
        let mut hlc3 = HLC3::new();
        let data = vec![make_bar(100.0, 110.0, 90.0, 105.0)];

        hlc3.calculate(&data);

        // HLC3 = (110 + 90 + 105) / 3 = 101.67
        if let IndicatorValue::Single(v) = hlc3.values[0] {
            assert!((v - 101.67).abs() < 0.01);
        }
    }

    #[test]
    fn test_hl2() {
        let mut hl2 = HL2::new();
        let data = vec![make_bar(100.0, 110.0, 90.0, 105.0)];

        hl2.calculate(&data);

        // HL2 = (110 + 90) / 2 = 100
        if let IndicatorValue::Single(v) = hl2.values[0] {
            assert!((v - 100.0).abs() < 0.01);
        }
    }

    #[test]
    fn test_true_range() {
        let mut tr = TrueRange::new();
        let data = vec![
            make_bar(100.0, 105.0, 95.0, 102.0),
            make_bar(102.0, 108.0, 99.0, 106.0),
        ];

        tr.calculate(&data);

        assert_eq!(tr.values.len(), 2);
    }
}