diff --git a/README.md b/README.md index c7e1ced..0621560 100644 --- a/README.md +++ b/README.md @@ -101,14 +101,20 @@ most mature on the danish market, and does support KuCoin. ## TODO -- [ ] Present an overview of what the script will be doing - * Sell what for what? How much, how often? - * Give an estimate of how long it will take. - * Wait 20 seconds before starting, to allow the user to review. +- [ ] Allow multiple secrets configs +- [ ] Allow multiple output directories +- [ ] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might + require implementing own kucoin backend in `fin_depo`. - [ ] Ensure that a failure during selling results in a safe winding down of the system. - * Catch runtime errors when selling - * Show errors to log. - * Stop loop and exit with results, and error indicator. + * Catch runtime errors when selling + * Show status + * Show errors to log. + * Stop loop and exit with results, and error indicator. +- [X] Present an overview of what the script will be doing + * Sell what for what? How much, how often? + * Give an estimate of how long it will take. + * Wait 20 seconds before starting, to allow the user to review. +- [X] Document command-line arguments - [X] Document configuration - [X] Document code auditing - [X] Parse configuration from json. diff --git a/setup.py b/setup.py index 4596683..9349cae 100644 --- a/setup.py +++ b/setup.py @@ -108,14 +108,20 @@ most mature on the danish market, and does support KuCoin. ## TODO -- [ ] Present an overview of what the script will be doing - * Sell what for what? How much, how often? - * Give an estimate of how long it will take. - * Wait 20 seconds before starting, to allow the user to review. +- [ ] Allow multiple secrets configs +- [ ] Allow multiple output directories +- [ ] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might + require implementing own kucoin backend in `fin_depo`. - [ ] Ensure that a failure during selling results in a safe winding down of the system. - * Catch runtime errors when selling - * Show errors to log. - * Stop loop and exit with results, and error indicator. + * Catch runtime errors when selling + * Show status + * Show errors to log. + * Stop loop and exit with results, and error indicator. +- [X] Present an overview of what the script will be doing + * Sell what for what? How much, how often? + * Give an estimate of how long it will take. + * Wait 20 seconds before starting, to allow the user to review. +- [X] Document command-line arguments - [X] Document configuration - [X] Document code auditing - [X] Parse configuration from json. @@ -147,6 +153,7 @@ REQUIREMENTS_MAIN = [ 'fin_depo @ git+https://gitfub.space/Jmaa/fin-depo.git', ] REQUIREMENTS_TEST = [ + 'pytest', ]