🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
This commit is contained in:
parent
0c1d454c42
commit
da28279d67
|
@ -69,13 +69,17 @@ most mature on the danish market, and does support KuCoin.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- [ ] Parse configuration from json.
|
- [ ] 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.
|
- [ ] 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 errors to log.
|
||||||
* Stop loop and exit with results, and error indicator.
|
* Stop loop and exit with results, and error indicator.
|
||||||
- [ ] Document configuration
|
- [ ] Document configuration
|
||||||
- [ ] Document code auditing
|
- [ ] Document code auditing
|
||||||
|
- [X] Parse configuration from json.
|
||||||
- [X] Ensure sell time is included in order details
|
- [X] Ensure sell time is included in order details
|
||||||
- [X] Log all trades to CSV file.
|
- [X] Log all trades to CSV file.
|
||||||
- [X] Collect information during the run and output after run
|
- [X] Collect information during the run and output after run
|
||||||
|
|
|
@ -8,6 +8,8 @@ lint.ignore = [
|
||||||
|
|
||||||
'TCH', # Microoptimization at the cost of readability
|
'TCH', # Microoptimization at the cost of readability
|
||||||
|
|
||||||
|
'D407', 'D413', # Weird documentation stuff
|
||||||
|
|
||||||
'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work)
|
'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work)
|
||||||
'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards?
|
'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards?
|
||||||
"E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603',
|
"E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603',
|
||||||
|
@ -19,7 +21,7 @@ lint.ignore = [
|
||||||
|
|
||||||
# Autofix
|
# Autofix
|
||||||
lint.fixable = [
|
lint.fixable = [
|
||||||
'SIM', 'C', 'Q', 'D',
|
'SIM', 'C', 'Q',
|
||||||
'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001',
|
'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001',
|
||||||
'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101',
|
'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101',
|
||||||
]
|
]
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -78,13 +78,17 @@ most mature on the danish market, and does support KuCoin.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- [ ] Parse configuration from json.
|
- [ ] 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.
|
- [ ] 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 errors to log.
|
||||||
* Stop loop and exit with results, and error indicator.
|
* Stop loop and exit with results, and error indicator.
|
||||||
- [ ] Document configuration
|
- [ ] Document configuration
|
||||||
- [ ] Document code auditing
|
- [ ] Document code auditing
|
||||||
|
- [X] Parse configuration from json.
|
||||||
- [X] Ensure sell time is included in order details
|
- [X] Ensure sell time is included in order details
|
||||||
- [X] Log all trades to CSV file.
|
- [X] Log all trades to CSV file.
|
||||||
- [X] Collect information during the run and output after run
|
- [X] Collect information during the run and output after run
|
||||||
|
|
Loading…
Reference in New Issue
Block a user