This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-30
Channels
- # aleph (39)
- # announcements (5)
- # babashka (7)
- # beginners (14)
- # biff (1)
- # clj-kondo (7)
- # clojure (38)
- # clojure-chicago (3)
- # clojure-europe (3)
- # clojure-norway (1)
- # clojurescript (8)
- # cursive (17)
- # data-science (6)
- # defnpodcast (3)
- # emacs (4)
- # figwheel-main (1)
- # honeysql (2)
- # hyperfiddle (2)
- # malli (20)
- # missionary (24)
- # off-topic (27)
- # reagent (4)
- # scittle (11)
- # shadow-cljs (51)
- # spacemacs (1)
- # xtdb (2)
Hi. I’d like to know what’s the right tool for representing time series in stock market, like SMA, etc.
Hi @UGC0NEP4Y! I haven't tried these so much, but one project worth learning from seems to be https://github.com/jjttjj/trateg by @U064UGEUQ -- an experimental project wrapping the https://github.com/ta4j/ta4j Java library (which has many of those so called technical analysis indicators). There is also an active https://github.com/clojure-quant/trateg by @UCSJVFV35, which connects that with the new stack of data libraries (dtype-next, tech.ml.dataset, tablecloth). For further discussion, it is helpful to bring such topics to the https://scicloj.github.io/docs/community/chat/ at the Clojurians Zulip.
A plain Tablecloth dataset is a lightweight / easy way to get started 🙂 https://github.com/scicloj/tablecloth
(ns ai.scicloj-experiment
(:require [scicloj.ml.core :as ml]
[scicloj.ml.metamorph :as mm]
[scicloj.ml.dataset :as ds]))
Intellij + Cursive can’t resolve anything from scicoi and I can’t see what functions are, what parameters they get, jump to function etc.
Is it possible to fix? It will make live much easier.Hi. This problem is specific to Cursive and other tools that do some code analysis to determine if things are defined or not. http://scicloj.ml does some tricks with its namespaces, which are not compatible with the approach of these tools. Worth asking at Zulip.