Replies: 1 comment
-
Hi @xwartz and thank you for your detailed description of Tom Demark's Sequential Indicator. I will have a look at it. In the meantime, you can checkout this JavaScript implementation: https://github.com/ourarash/tdsequential |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The Tom Demark Sequential is a very popular indicator yet there are not libraries available for it in TS.
Strategy
Buy Strategy
the trigger to buy ->
When you see 9 consecutive closes “lower” than the close 4 bars prior.
An ideal buy is when the low of bars 6 and 7 in the count are exceeded by the low of bars 8 or 9.
Sell Strategy
trigger to sell ->
When you see 9 consecutive closes “higher” than the close 4 candles prior.
An ideal sell is when the the high of bars 6 and 7 in the count are exceeded by the high of bars 8 or 9.
Available in Python
https://github.com/freqtrade/freqtrade-strategies/blob/master/user_data/strategies/berlinguyinca/TDSequentialStrategy.py
Source
Beta Was this translation helpful? Give feedback.
All reactions