From 706ea5cd221f64235f184de061e117e709f9d09c Mon Sep 17 00:00:00 2001 From: CollinLiu813 Date: Wed, 20 Apr 2022 19:58:44 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5e442ed..38b0f07 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,10 @@ cargo build cargo run ``` +## Optional +You can use an orderbook visualizer when running the script, like this very beautiful 3D variant built in WebGL by Kris Machowski at +[3dorderbook.com](https://www.3dorderbook.com). Use it to find some interesting patterns! + ## Settings `settings.json` contains all the configurable options: From 2405a814162736f18b6eee2d34c36d746f7f1374 Mon Sep 17 00:00:00 2001 From: CollinLiu813 Date: Wed, 25 May 2022 11:56:33 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 38b0f07..6f9eaf2 100644 --- a/README.md +++ b/README.md @@ -90,5 +90,8 @@ market conditions - [ ] Switch to websockets API for reduced data query lag ## Disclaimer -This project is only for educational purposes. There is no guarantee of the accuracy of the output data. Do not make -any trading or investment decisions based on these results. Always do your own research. +This project is for educational purposes only. You should not construe any such information or other material as legal, tax, investment, financial, or other advice. Nothing contained here constitutes a solicitation, recommendation, endorsement, or offer by me or any third party service provider to buy or sell any securities or other financial instruments in this or in any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction. + +If you plan to use real money, use at your own risk. + +Under no circumstances will I be held responsible or liable in any way for any claims, damages, losses, expenses, costs, or liabilities whatsoever, including, without limitation, any direct or indirect damages for loss of profits. From 8193e0e0e6e259e33ac17fb20c1c8f40dc73903c Mon Sep 17 00:00:00 2001 From: CollinLiu813 Date: Mon, 30 May 2022 00:45:20 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6f9eaf2..5f3a481 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ You can use an orderbook visualizer when running the script, like this very beau - [ ] Perform spectral analysis with wider timeframes to identify optimal market conditions - [ ] Switch to websockets API for reduced data query lag +- [ ] For more high frequency applications, switching to a library like [ccapi](https://github.com/crypto-chassis/ccapi/) is handy. Unfortunately this only exists for C++ right now. ## Disclaimer This project is for educational purposes only. You should not construe any such information or other material as legal, tax, investment, financial, or other advice. Nothing contained here constitutes a solicitation, recommendation, endorsement, or offer by me or any third party service provider to buy or sell any securities or other financial instruments in this or in any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction. From 976bf40acebae1bf2eeb113380f632258c69d9c9 Mon Sep 17 00:00:00 2001 From: CollinLiu813 Date: Mon, 30 May 2022 00:48:09 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f3a481..3a02ee4 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ You can use an orderbook visualizer when running the script, like this very beau ## TODO - [ ] Use Kelly criterion for order sizing (probabilities can be estimated from prior analysis) -- [ ] Use dynamic take profit and stop loss based on market movement +- [ ] Use dynamic take profit and stop loss based on market movement (this is simply used as protection from getting rekt, not as actual exit points) - [ ] Perform spectral analysis with wider timeframes to identify optimal market conditions - [ ] Switch to websockets API for reduced data query lag