Compare commits
23 Commits
752ab05de1
...
0563974396
Author | SHA1 | Date | |
---|---|---|---|
0563974396 | |||
b44cfa5e65 | |||
54ce0c4ff4 | |||
87bc91d454 | |||
fe406a1b65 | |||
0431a604d8 | |||
28bb1c6ea8 | |||
78b61d1221 | |||
2a43b1ac34 | |||
82ace7ac99 | |||
5d6b5300e1 | |||
14f36b4474 | |||
becbc0f928 | |||
70b78e8fd5 | |||
aee58b7814 | |||
b947f0d73e | |||
2c67f6facb | |||
1003d612e3 | |||
61ba80fc5f | |||
fb060f50b0 | |||
5357b44a16 | |||
3f54034bf2 | |||
dc20ade3c2 |
36
README.md
36
README.md
|
@ -101,14 +101,20 @@ most mature on the danish market, and does support KuCoin.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- [ ] Present an overview of what the script will be doing
|
- [ ] Allow multiple secrets configs
|
||||||
* Sell what for what? How much, how often?
|
- [ ] Allow multiple output directories
|
||||||
* Give an estimate of how long it will take.
|
- [ ] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might
|
||||||
* Wait 20 seconds before starting, to allow the user to review.
|
require implementing own kucoin backend in `fin_depo`.
|
||||||
- [ ] 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 errors to log.
|
* Show status
|
||||||
* Stop loop and exit with results, and error indicator.
|
* 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 configuration
|
||||||
- [X] Document code auditing
|
- [X] Document code auditing
|
||||||
- [X] Parse configuration from json.
|
- [X] Parse configuration from json.
|
||||||
|
@ -118,7 +124,21 @@ most mature on the danish market, and does support KuCoin.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# License
|
## 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
|
||||||
|
|
||||||
```
|
```
|
||||||
MIT License
|
MIT License
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '0.1.11'
|
__version__ = '0.1.12'
|
||||||
|
|
21
setup.py
21
setup.py
|
@ -108,14 +108,20 @@ most mature on the danish market, and does support KuCoin.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- [ ] Present an overview of what the script will be doing
|
- [ ] Allow multiple secrets configs
|
||||||
* Sell what for what? How much, how often?
|
- [ ] Allow multiple output directories
|
||||||
* Give an estimate of how long it will take.
|
- [ ] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might
|
||||||
* Wait 20 seconds before starting, to allow the user to review.
|
require implementing own kucoin backend in `fin_depo`.
|
||||||
- [ ] 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 errors to log.
|
* Show status
|
||||||
* Stop loop and exit with results, and error indicator.
|
* 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 configuration
|
||||||
- [X] Document code auditing
|
- [X] Document code auditing
|
||||||
- [X] Parse configuration from json.
|
- [X] Parse configuration from json.
|
||||||
|
@ -147,6 +153,7 @@ 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',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user