-
Notifications
You must be signed in to change notification settings - Fork 0
/
fmp.asd
29 lines (28 loc) · 844 Bytes
/
fmp.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;;;; fmp.asd
(asdf:defsystem #:fmp
:description "FMP + Common Lisp"
:author "leytzher"
:license "MIT"
:version "0.0.1"
:serial t
:depends-on (:dexador :cl-json :alexandria :serapeum :cl-dotenv :websocket-driver-client :local-time )
:components (
(:file "package")
(:file "settings")
(:file "utils")
(:file "url-methods")
(:file "general")
(:file "fundamentals")
(:file "fundamental-analysis")
(:file "insider-trading")
(:file "sec-filings")
(:file "earnings-calendar")
(:file "important-events")
(:file "cik")
(:file "price-target")
(:file "symbol-list")
(:file "prices")
(:file "returns")
(:file "company")
(:file "sector")
(:file "fmp")))