Turtle breakout rule + ADX/Donchian indicators (Closes #89) - #90
Merged
Conversation
Long-only trend-follower (KB §25 ADX>25, §27 asymmetric Donchian 20d/10d): close-above-Donchian-high entry + ADX trend gate + 2xATR stop, channel-low exit. Trades ONE_HOUR with bar-count lookbacks so it runs through both sim passes unchanged. Registered in agent.RULE_REGISTRY. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…ve-TF ADX>25 is a daily-scale trend filter; on hourly bars ADX is structurally suppressed (never >25) so the rule never fired. Move Donchian 20/10 + ADX(14) + ATR(20) to DAILY candles (classic Turtle). backtest/edge_table now key each rule's window by its own granularity so a daily rule is edge-testable; account sim already carries daily candles. Forming-bar guard prevents intraday lookahead. Refs #89 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Implements the long-only Turtle trend-follower (KB §25/§27) + ADX and Donchian indicators. Trades ONE_HOUR with bar-count lookbacks (480h/240h) so it runs through both the edge pass and the account pass unchanged. TDD: adds indicator + rule tests. Registered in agent.RULE_REGISTRY (+ _DECIMAL_PARAMS). Closes #89.