From 348b1686f20ba524c4cc36db62b3ff82ec7e025d Mon Sep 17 00:00:00 2001 From: Michael Schimmel Date: Tue, 10 Mar 2026 15:34:10 +0100 Subject: [PATCH] Refactor soa_series example to use a constant for ticks --- examples/soa_series.myc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/soa_series.myc b/examples/soa_series.myc index f3f4f01..3e892a5 100644 --- a/examples/soa_series.myc +++ b/examples/soa_series.myc @@ -8,7 +8,8 @@ (push my_ticks {:price 11.2 :volume 200 :msg "B"}) (push my_ticks {:price 15.5 :volume 300 :msg "C"}) - (repeat n 100 (push my_ticks {:price (+ n 15.5) :volume (ceil (/ n 300)) :msg "??"}) ) + ;(repeat n 100 (push my_ticks {:price (+ n 15.5) :volume (ceil (/ n 300)) :msg "??"}) + (def prices (.price my_ticks))