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:Signal Generation
(section)
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!
== Gate Filters == === Gate 1: Grade Filter === Only high-quality setups are traded: {| class="wikitable" |- ! Grade !! Action |- | A+, A, B || PASS β Generate signal |- | C, D, F || BLOCKED β No signal generated |} === Gate 2: Hour Filter === Block historically loss-making hours: <pre> Blocked Hours: [9, 22, 23] // 9 AM, 10 PM, 11 PM IST IF current_hour IN blocked_hours: RETURN None // No signal </pre> === Gate 3: Direction Determination === Direction is determined by MA21 slope with 1H β 15m fallback: <pre> trend_direction = market_state.trend_direction IF trend_direction == "up": direction = LONG // MA21 rising β trade long ELIF trend_direction == "down": direction = SHORT // MA21 declining β trade short ELSE: // MA21 flat/unclear β use MTF fallback IF mtf_direction == "up": direction = LONG ELIF mtf_direction == "down": direction = SHORT ELSE: // TICKET-22: 1H β 15m fallback (matches TimeframeSettings) // Config: primary=1H, confirmation=15m, wait_for_15min_alignment=True one_hour_dir = timeframe_results['1h'].direction fifteen_min_dir = timeframe_results['15m'].direction // Priority 1: 1H + 15m agreement (strongest) IF one_hour_dir == fifteen_min_dir AND one_hour_dir IN ['up', 'down']: direction = LONG if one_hour_dir == 'up' else SHORT // Priority 2: 1H only (primary_timeframe) ELIF one_hour_dir IN ['up', 'down']: direction = LONG if one_hour_dir == 'up' else SHORT // Priority 3: 15m only (confirmation_timeframe) ELIF fifteen_min_dir IN ['up', 'down']: direction = LONG if fifteen_min_dir == 'up' else SHORT ELSE: RETURN None // ALL timeframes sideways β true consolidation </pre> '''Direction Hierarchy:''' # MA21 slope (5min) β primary # MTF primary_direction β first fallback # 1H + 15m agreement β strongest MTF signal # 1H only β primary_timeframe fallback # 15m only β confirmation_timeframe fallback # None β only if all sideways (true consolidation) === Gate 4: Probability Zone Filter === Filters trades based on price position within range: {| class="wikitable" |- ! Zone !! LONG !! SHORT !! Logic |- | Top Third || Blocked || Allowed || 80% continuation down, 15% up |- | Middle Half || Allowed || Allowed || Neutral zone |- | Bottom Third || Allowed || Blocked || 80% continuation up, 15% down |} '''Sideways Market Exception:''' In creeper/consolidation, uses mean reversion (opposite logic). ----
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:Signal Generation
(section)
Add topic