Skip to content

Commit

Permalink
trigger ci
Browse files Browse the repository at this point in the history
  • Loading branch information
awb99 committed Apr 23, 2024
1 parent 7ca6564 commit efd8b43
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 51 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ jobs:
uses: DeLaGuardo/[email protected]
with:
cli: 1.10.3.929 # Clojure CLI based on tools.deps
- name: Execute clojure code on Linux and MacOS
if: ${{ matrix.os != 'windows-latest' }}
run: clojure -e "(+ 1 1)"
shell: bash
- name: clj-fmt
if: ${{ matrix.os != 'windows-latest' }}
run: clojure -M:cljfmt
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/pr.yml

This file was deleted.

20 changes: 7 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@ Quanta is a technical analysis datascience platform written in Clojure.
- Statistics and Machine Learning Libraries:
You can use libraries similar to matplotlib, scipy, statsmodels, and sklearn to support development, analysis, and visualization of state-of-the-art trading systems.

## DOCS

Quanta is a library.
[quanta docs](docs/README.md)

## DEMO APP

[demo](https://github.com/clojure-quant/quanta-demo)

## VAULT

Expand Down Expand Up @@ -44,16 +50,7 @@ MYVAULT environment variable needs to be set.



## GoldlyDocs Web app

- MYVAULT environment variable needs to be set.
- run: `cd app/demo && clojure -X:docs`
- in webbrowser go to localhost:8080
- you connect nrepl to port 8080 (clj repl)

## Notebook Eval

`bb notebook-eval`

## Tradingview Chart Study maker

Expand All @@ -67,7 +64,7 @@ This reads profiles/resources/gann.edn and creates tradingview charts for each s
The charts can be loaded via the tradingview page.


## for TA developers
## for developers

*code linter* `clj -M:lint`

Expand All @@ -78,9 +75,6 @@ The charts can be loaded via the tradingview page.
*warehouse io-performance speed test* `bb performance-test`


## Algo template spec
[Template spec](docs/template-spec.md)




Expand Down
10 changes: 1 addition & 9 deletions build.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
(ns build
(:require
[babashka.fs :as fs]
[clojure.java.io :as io]
[clojure.string :as str]
[clojure.tools.build.api :as b]
[org.corfield.build :as bb] ; https://github.com/seancorfield/build-clj
[deps-deploy.deps-deploy :as dd]))

[clojure.tools.build.api :as b]))

(def lib 'org.pinkgorilla/ta)
(def version (format "0.3.%s" (b/git-count-revs nil)))
Expand All @@ -17,11 +12,8 @@
:version version
:src-pom "pom-template.xml"
:transitive true)
;(bb/run-tests)
;(bb/clean)
(bb/jar)))


(defn deploy [opts]
(println "Deploying to Clojars.")
(-> opts
Expand Down
6 changes: 3 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@
:main-opts ["-m" "kaocha.runner"]}

:build {:deps {io.github.clojure/tools.build {:git/tag "v0.6.1" :git/sha "515b334"}
io.github.slipset/deps-deploy {:git/sha "b4359c5d67ca002d9ed0c4b41b710d7e5a82e3bf"}
;io.github.slipset/deps-deploy {:git/sha "b4359c5d67ca002d9ed0c4b41b710d7e5a82e3bf"}
io.github.seancorfield/build-clj {:git/tag "v0.5.4" :git/sha "bc9c0cc"}
;rewrite-clj/rewrite-clj {:mvn/version "1.0.699-alpha"}
babashka/fs {:mvn/version "0.0.5"}}
;babashka/fs {:mvn/version "0.0.5"}
}
:ns-default build}

;
Expand Down

0 comments on commit efd8b43

Please sign in to comment.