Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Special pages
PlusEV Wiki Page
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Component:Probability Zone
Page
Discussion
English
Read
Edit
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
View history
General
What links here
Related changes
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
= Probability Zone Analysis = == Purpose == '''"Where is price in the range & what are the odds of continuation?"''' # Divides price range into halves and thirds # Calculates continuation probability based on zone # Detects Three-Finger Spread (profit-taking pressure) # Identifies crash bars (structural breaks) # Filters signals based on zone probability ---- == Trading Market Principle == '''"Trade with the odds. Top third after pullback = 80% continuation. Bottom third = 15%."''' * Price in top third = high probability of new high (80%) β favor LONG * Price in bottom third = low probability of new high (15%) β favor SHORT * Three-finger spread = profit-taking imminent β avoid new positions * Crash bar = structural break β short the bounce * Sideways market = mean reversion β opposite logic applies ---- === The Asymmetric Probability Edge === When odds are low on one outcome, '''the opposite side usually carries high odds''': * If new high probability drops to 15%, then '''85% odds favor reversal''' * We position ourselves on the high-probability side == Probability Zones == Divide recent swing range into zones: <pre> βββββββββββββββββββββββββββββββββββββββββ β Swing High β β β TOP THIRD (80%) β β 80% continuation probability β (Above 66% of range) β βββββββββββββββββββββββββββββββββββββββββ€ β β β TOP HALF (65%) β β 65% continuation probability β (50% - 66% of range) β βββββββββββββββββββββββββββββββββββββββββ€ β 50% Line β β β BOTTOM HALF (35%) β β 35% continuation probability β (33% - 50% of range) β βββββββββββββββββββββββββββββββββββββββββ€ β β β BOTTOM THIRD (15%) β β Only 15% continuation (85% DOWN) β (Below 33% of range) β β β βββββββββββββββββββββββββββββββββββββββββ β Swing Low </pre> {| class="wikitable" |- ! Zone !! Range Position !! Continuation Prob !! Trading Implication |- | Top Third || β₯ 66% || 80% || Strong LONG zone after pullback |- | Top Half || 50% - 66% || 65% || OK for LONG with confirmation |- | Bottom Half || 33% - 50% || 35% || Cautious LONG, watch for confirmation |- | Bottom Third || < 33% || 15% || Avoid LONG (85% chance of lower) |} ---- == Three-Finger Spread == Detects large separation between Price, 21 MA, and 200 MA: <pre> BULLISH THREE-FINGER SPREAD: Price >> 21 MA >> 200 MA (large gaps) Interpretation: - Many traders with unrealized profits - Any red bar can trigger mass profit-taking - Creates fast, violent declines - AVOID LONGS in this condition BEARISH THREE-FINGER SPREAD: Price << 21 MA << 200 MA (large gaps) Interpretation: - Many traders with unrealized losses - Potential for short squeeze - AVOID SHORTS in this condition </pre> '''Detection Threshold:''' 2% minimum spread between each level ---- == Crash Bar Detection == Identifies structural breaks (crash bars): <pre> Crash Bar Criteria: 1. Range β₯ 2Γ average range of prior 10 bars 2. Close near extreme (within 30% of high/low) 3. Fast, violent, elongated movement IF crash bar detected: - Block LONG signals - Allow SHORT signals with 1.5x strength Post-Crash (within 5 bars): - Bounce to top zone = prime SHORT entry - Block LONG signals </pre> ---- == Pullback Classification == Classifies pullbacks as healthy or collapse: {| class="wikitable" |- ! Type !! Criteria !! Trading Action |- | HEALTHY_PULLBACK || β€ 50% retracement, 45-degree drift || Good entry opportunity |- | COLLAPSE || β₯ 60% retracement, vertical drop || Avoid buying the dip |- | BOUNCE || Between healthy and collapse || Short opportunity in downtrend |- | NO_PULLBACK || < 10% retracement || Price at highs, wait for pullback |} ---- == Signal Filtering Logic == === Trending Market === <pre> UPTREND: Top Third: LONG β (80% odds), SHORT β Top Half: LONG β (65% odds), SHORT β Bottom Half: LONG β (35% odds, reduced strength), SHORT β Bottom Third: LONG β (15% odds), SHORT β (trend break signal) DOWNTREND: Bottom Third: SHORT β, LONG β Top Third: SHORT β (bounce entry), LONG β </pre> === Sideways/Creeper Market === Mean reversion logic (opposite of trending): <pre> SIDEWAYS: Top Third: LONG needs confirmation, SHORT β Top Half: LONG needs confirmation, SHORT β Bottom Half: LONG needs confirmation, SHORT β Bottom Third: LONG β (85% reversal up), SHORT β </pre> ---- == Configuration == {| class="wikitable" |- ! Parameter !! Value !! Description |- | <code>top_third_threshold</code> || 0.66 || Above 66% = top third |- | <code>bottom_third_threshold</code> || 0.33 || Below 33% = bottom third |- | <code>top_third_probability</code> || 0.80 || 80% continuation |- | <code>bottom_third_probability</code> || 0.15 || 15% continuation |- | <code>swing_lookback_bars</code> || 20 || Bars for swing detection |- | <code>three_finger_min_spread_pct</code> || 0.02 || 2% minimum spread |- | <code>crash_bar_multiplier</code> || 2.0 || Bar 2x average = crash |- | <code>crash_bar_close_threshold</code> || 0.30 || Close within 30% of extreme |- | <code>healthy_pullback_max_depth</code> || 0.50 || Max 50% for healthy |- | <code>collapse_min_depth</code> || 0.60 || Min 60% for collapse |} ---- == Output == '''ProbabilityZoneResult:''' {| class="wikitable" |- ! Field !! Type !! Description |- | <code>zone</code> || Enum || TOP_THIRD, TOP_HALF, BOTTOM_HALF, BOTTOM_THIRD |- | <code>zone_position_pct</code> || float || 0-100, where in range |- | <code>continuation_probability</code> || float || 0.15 - 0.80 |- | <code>swing_high</code> || float || Recent swing high |- | <code>swing_low</code> || float || Recent swing low |- | <code>has_three_finger_spread</code> || bool || Large MA spread detected |- | <code>ma_structure</code> || Enum || UPTREND, DOWNTREND, SIDEWAYS, THREE_FINGER_* |- | <code>pullback_type</code> || Enum || HEALTHY, COLLAPSE, BOUNCE, NO_PULLBACK |- | <code>is_crash_bar</code> || bool || Crash bar detected |- | <code>crash_bar_magnitude</code> || float || How many times larger than average |- | <code>allows_long</code> || bool || Should LONG be allowed? |- | <code>allows_short</code> || bool || Should SHORT be allowed? |- | <code>signal_strength_modifier</code> || float || 0.5 - 1.5 multiplier |} ---- == Dependencies == '''Used By:''' * [[Component:Signal_Generation|signal_generation_trade_management.py]] - Gate 4: Probability Zone Filter '''Provides:''' * Zone classification for signal filtering * Continuation probability for strength adjustment ---- == Quick Reference == {| class="wikitable" |- ! Condition !! LONG !! SHORT !! Reason |- | Top third, uptrend || β Strong || β Block || 80% continuation |- | Bottom third, uptrend || β Block || β Allow || 85% down probability |- | Three-finger spread (bull) || β Block || β Allow || Profit-taking imminent |- | Three-finger spread (bear) || β Allow || β Block || Potential reversal |- | Crash bar detected || β Block || β Strong || Structural break |- | Post-crash bounce to top || β Block || β Strong || Bounce short opportunity |- | Collapse detected || β Block || β Allow || Not healthy pullback |- | Sideways, top third || Needs confirm || β Allow || Mean reversion |- | Sideways, bottom third || β Strong || β Block || 85% reversal up |}
Summary:
Please note that all contributions to PlusEV Wiki Page may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
My wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Search
Search
Editing
Component:Probability Zone
Add topic