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. --- scripts/deploy.bash | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 scripts/deploy.bash (limited to 'scripts/deploy.bash') diff --git a/scripts/deploy.bash b/scripts/deploy.bash deleted file mode 100755 index 0fd8193..0000000 --- a/scripts/deploy.bash +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/bash - -set -e - -# create env -TMP=`mktemp -t -d ibkr-cpgw.XXXXXX` -mkdir -p $TMP -cp resources/clientportal.gw.zip $TMP -cp resources/custom.yaml $TMP - -# build env -cd $TMP -unzip clientportal.gw.zip -cp custom.yaml ./root/custom.yaml - -# run gateway -./bin/run.sh ./root/custom.yaml - -rm -rf $TMP -- cgit v1.3