Remove unused Propa example

The `Propa.myc` example was not being used and has been removed to clean
up the examples directory.
This commit is contained in:
2026-03-30 10:31:45 +02:00
parent 9b13546609
commit 0ef5faed91
2 changed files with 15 additions and 12 deletions
-11
View File
@@ -1,11 +0,0 @@
(do
(def last (fn [s] (s 0)))
(def f (fn [n] n))
(def r (series 5))
(push r 4)
[(last f) (last r)]
)
+15 -1
View File
@@ -8,7 +8,6 @@
(def cnt 1)
(def gs (series 2))
;IDEE (pipe lookback [EURUSD acc] --> series acc
(pipe [EURUSD GER40]
(fn [eu ge]
(do
@@ -20,4 +19,19 @@
)
)
)
; TODO: IDEE - pipe mit automatischer Value-Akkumulation: pipe <lookback> <inputs>
(pipe 2 [EURUSD GER40]
(fn [eu ge]
(do
; eu und ge werden hier zu Serien mit lookback 2
(def dax (.close (ge 0)))
(push gs dax)
(def eur (- dax (ge 1)))
(print cnt ": dax=" eur " (" (/ eur (.close (eu 0))) "$)" )
(assign cnt (+ cnt 1))
)
)
)
)