-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v0.0.3] Updated Revoke; Added debug hooks
- Exchange: Updated revoke params for SIWC changelog - Exchange: Verified meta on transactions:send - Exchange: Added `dbg` call to show token - Exchange: Added `tick` call to show expiration - PyExch / DCA / Results: Added debug hooks - DCA: Added a wait for deposits to show on balance - DCA: No longer do market orders at min_size - Results: See try/except for date bug in API - Results: Add calc to compare to DCA better - PKG: Added setup.cfg ### Todo: - [ ] BugRpt try/except in Results - [ ] BugRpt meta on trans:send undocumented - [ ] BugRpt login URL in SIWC revoke docs - [ ] BugRpt revoke docs not fully updated
- Loading branch information
Showing
6 changed files
with
149 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# migrate to pyproject.toml | ||
# black config in .black, run with `black --config .black .` | ||
# | ||
[black] | ||
line-length = 88 | ||
target-version = ['py38'] | ||
|
||
# Run with `flake8` | ||
# | ||
[flake8] | ||
max-line-length = 88 | ||
filename = | ||
./examples/*.py, | ||
./pyexch/*.py, | ||
ignore = | ||
# E501: line too long | ||
E501, | ||
# W503 line break before binary operator | ||
W503, | ||
# E203 whitespace before ':' | ||
E203, | ||
|
||
# Run with `isort .` | ||
# | ||
[isort] | ||
py_version = 38 | ||
profile = black | ||
src_paths = pyexch, examples | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters