From 239f3cb4c15ef68bd5bdba88bbf7b0728e15a425 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Fri, 14 Mar 2025 00:54:31 -0500 Subject: [PATCH] signal file init --- src/propeller/push/instructions/signal.cljc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/propeller/push/instructions/signal.cljc diff --git a/src/propeller/push/instructions/signal.cljc b/src/propeller/push/instructions/signal.cljc new file mode 100644 index 0000000..95ea7d1 --- /dev/null +++ b/src/propeller/push/instructions/signal.cljc @@ -0,0 +1,8 @@ +(ns propeller.push.instructions.signal + "SIGNAL instructions. Instructions pertaining only to trading signals + are located here." + (:require [propeller.tools.math :as math] + [propeller.push.instructions :refer [def-instruction + generate-instructions + make-instruction]])) +