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
- [ ] 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`.
- [ ] 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.
- [ ] Ensure that a failure during selling results in a safe winding down of the system.
* 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
* Catch runtime errors when selling
* Show errors to log.
* Stop loop and exit with results, and error indicator.
- [X] Document configuration
- [X] Document code auditing
- [X] Parse configuration from json.
@ -124,21 +118,7 @@ most mature on the danish market, and does support KuCoin.
## Dependencies
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
# 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
- [ ] 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`.
- [ ] 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.
- [ ] Ensure that a failure during selling results in a safe winding down of the system.
* 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
* Catch runtime errors when selling
* Show errors to log.
* Stop loop and exit with results, and error indicator.
- [X] Document configuration
- [X] Document code auditing
- [X] Parse configuration from json.
@ -153,7 +147,6 @@ REQUIREMENTS_MAIN = [
'fin_depo @ git+https://gitfub.space/Jmaa/fin-depo.git',
]
REQUIREMENTS_TEST = [
'pytest',
]