1
0

Compare commits

..

No commits in common. "0563974396fdc194b6b2700c2696350671e5c1ae" and "752ab05de1451da9479d1b578df33487cf727078" have entirely different histories.

3 changed files with 16 additions and 43 deletions

View File

@ -101,20 +101,14 @@ most mature on the danish market, and does support KuCoin.
## TODO ## TODO
- [ ] Allow multiple secrets configs - [ ] Present an overview of what the script will be doing
- [ ] Allow multiple output directories * Sell what for what? How much, how often?
- [ ] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might * Give an estimate of how long it will take.
require implementing own kucoin backend in `fin_depo`. * Wait 20 seconds before starting, to allow the user to review.
- [ ] Ensure that a failure during selling results in a safe winding down of the system. - [ ] Ensure that a failure during selling results in a safe winding down of the system.
* Catch runtime errors when selling * Catch runtime errors when selling
* Show status * Show errors to log.
* Show errors to log. * Stop loop and exit with results, and error indicator.
* 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 configuration
- [X] Document code auditing - [X] Document code auditing
- [X] Parse configuration from json. - [X] Parse configuration from json.
@ -124,21 +118,7 @@ most mature on the danish market, and does support KuCoin.
## Dependencies # License
All requirements can be installed easily using:
```bash
pip install -r requirements.txt
```
Full list of requirements:
- [secret_loader](https://gitfub.space/Jmaa/secret_loader)
- [fin_defs](https://gitfub.space/Jmaa/fin-defs)
- [fin_depo](https://gitfub.space/Jmaa/fin-depo)
## License
``` ```
MIT License MIT License

View File

@ -1 +1 @@
__version__ = '0.1.12' __version__ = '0.1.11'

View File

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