Propose: MIT license - #2
Merged
Julian-dev28 merged 1 commit intoJun 16, 2026
Merged
Conversation
Adds a LICENSE file in the repository owner's name. Only the copyright holder can license this code — merging this PR is that act; see the PR description for the reasoning behind MIT. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Julian-dev28
added a commit
that referenced
this pull request
Jun 16, 2026
…on a resumed uptrend Fixes autopsy leak #2: a force-entered name (e.g. SPCX) gets noise-stopped, then the 180m loss-cooldown locks us out of its subsequent +29% run. The cooldown is anti-revenge (correct for a FALLING name) but wrong for one breaking back to new highs. momentum_reentry_allowed(): bypass the loss-cooldown when a stopped LONG reclaims >= reclaim_pct% ABOVE its prior stop-out price AND composite >= min_composite. Whipsaw-guarded: the reclaim margin + composite gate filter noise, and each re-entry that loses re-arms the cooldown at a NEW higher stop (rising bar). memory.last_close_for() supplies the stop-out price. Validated on 10 real recent stops (no lookahead): only the 2 that genuinely recovered above their stop (SKHX +1.8%, DRAM +2.8%) would re-enter; the 8 falling/flat names (BABY/TRUMP/DOGE/SUI/...) correctly stay out. Selective, not trigger-happy. Config momentum_reentry{enabled,reclaim_pct:1.0,min_composite:30} (hot-read, reversible). 7 new tests + 45 regression green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Julian-dev28
approved these changes
Jun 16, 2026
Julian-dev28
approved these changes
Jun 16, 2026
Owner
|
Thanks for taking the time to have a look at my project @Freecey |
Julian-dev28
added a commit
that referenced
this pull request
Jun 27, 2026
…obust) Batch #2 (edge_sweep2.py): vol-scaled xs-momentum +0.92-1.70% (steadier OOS — fold into the live rebalancer), skip-momentum +0.81%, TSMOM +0.53% (all robust but same momentum family); BTC lead-lag REFUTED. Batch #3 (edge_pairs.py): PAIRS / cointegration stat-arb — mean-reversion of co-moving log-spreads (z>2 entry, exit on reversion). +1.08%/trade, n=2413, OOS +1.10/+1.06 ROBUST. ORTHOGONAL to momentum → a genuinely INDEPENDENT edge family; stacking the two diversifies. Now 2 robust independent families (momentum + pairs stat-arb) + variants. ALPHA-PLAN.md updated (candidate queue continues: seasonality, OI-quadrant, 4h, liq-fade, dynamic-hedge pairs, regime-switch, and the momentum+pairs STACK). Research only — no live trade-path change. Co-Authored-By: Claude Opus 4.8 <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.
Why this PR
The repository currently has no license, which makes it technically all-rights-reserved: forks, contributions (like #1), and any reuse of the code sit in a legal gray zone, and some people/companies won't touch or contribute to an unlicensed repo at all.
This is entirely your call — only the copyright holder can license this code, which is why this PR is separate from the bug-fix PR and why the LICENSE file carries your name. Merging it is the act of licensing; closing it is a perfectly valid answer too.
Why MIT specifically
If you'd rather use Apache-2.0 (adds an explicit patent grant) or anything else, happy to update the file — the point of the PR is just that some license exists.
One optional extra worth considering alongside this: a short financial disclaimer in the README ("this software executes real leveraged trades autonomously; use at your own risk, nothing here is financial advice"). Didn't include it here to keep the PR to a single decision.
🤖 Generated with Claude Code