-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add docs and tests for Monowave #7
base: master
Are you sure you want to change the base?
Conversation
Adding tests and documentation to MonoWave feature
Approved |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks a lot for this improvement docu and test wise
drop a mail if you are interested in deeper conversation e.g. telegram to push the code further to a more usable state from a practical point of view, e.g. scanning markets :-)
@@ -0,0 +1,12 @@ | |||
# Copyright (c) 2023 Nightingale Professional Services, LLC |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove this commercial licence text
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove the cached (gitignore pycache) files from git, or are they commited on purpose?
self.lows_arr = lows | ||
self.highs_arr = highs | ||
self.dates_arr = dates | ||
self.skip_n = skip | ||
self.idx_start = idx_start | ||
self.idx_end = int | ||
|
||
self.count = int # the count of the monowave, e.g. 1, 2, A, B, etc | ||
self.degree = 1 # 1 = lowest timeframe level, 2 as soon as a e.g. 12345 is found etc. | ||
self.count = int |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be more like .count = 0
or .count: int
as type hint not assigned to class int (but i know that its old code anyway and i m overdue to clean it up myself :-) )
Adding tests and documentation to MonoWave feature