Implement ZIGZAG#104
Open
febuz wants to merge 1 commit into
Open
Conversation
Inserted alphabetically into jhtalib/pattern_recognition/pattern_recognition.py so sibling PRs merge without conflicts. Full docstring with Theory/Returns/Source; pure Python; smoke- and known-value-verified.
Owner
|
Maybe more suitable in event_driven. |
Author
|
Is possible, but then it is an implementation choice This is a usage decision, not a package decision, logically it resides with pattern, as between high and low, you make the simples pattern, a trendline, automatically. |
Author
|
So I would allow for an event.py in which you allow indicators to be used in more advanced defs from other .py files, plus I corrected the broken link in the initial pull request |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Zig Zag: filters out price moves smaller than pct percent and connects the remaining swing highs and lows with straight lines.
Theory: ignoring countermoves below the threshold exposes the underlying wave structure for Elliott Wave counts, chart patterns and swing measurement. The last leg is provisional and repaints until confirmed, so it describes the past and is not a realtime signal.
Returns: list of floats
Source: https://chartschool.stockcharts.com/table-of-contents/technical-indicators-and-overlays/technical-overlays/zigzag
Review notes