From 0716a22d1fab76a18606ec031d33914ccbc56633 Mon Sep 17 00:00:00 2001 From: Dan Rostovtsev Date: Mon, 6 Apr 2026 15:48:14 -0400 Subject: First working IBKR API implementation. * doc/ibkr.org: Docs for using the IBKR API. * manifest.scm: Guix Manifest of all project dependencies. * scripts/run-gateway.bash: A script for building and deploying the IBKR Client Gateway. * src/ibkr/api.scm: Support for specific endpoints, and generic tools for using the IBKR API. * src/ibkr/types.scm: Basic types for the IBKR endpoints. Orders, positions, securities, etc. * test/*.json: IBKR response and request examples for testing. * test/api.scm: Response handling and endpoint construction. * test/types.scm: Tests JSON parsing of IBKR requests and responses. --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6e3343a --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +clean: + rm -rf $$(find . -name "*~") \ + $$(find . -name "*.texi") \ + $$(find . -name "*.info") \ + gw.* + +check: + guile -L ./src test/types.scm + guile -L ./src test/api.scm + +doc/ibkr.texi: doc/ibkr.org + emacs --script scripts/compile-docs.el + +doc/ibkr.info: doc/ibkr.texi + texi2any doc/ibkr.texi -o doc/ibkr.info + +doc: doc/ibkr.info -- cgit v1.3