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
Alpha Research5
(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!
=== Layer 4: Signal Generation & Trade Management === '''Purpose:''' Generate precise entry/exit signals with risk parameters '''File:''' <code>src/components/signal_generation_trade_management.py</code> '''Signal Generation Flow:''' <pre> +------------------+ | Setup Quality | | Grade >= B | +--------+---------+ | v +------------------+ | Direction Check | | MTF Aligned? | +--------+---------+ | +--------------+--------------+ | | v v +--------+--------+ +--------+--------+ | FILTERS | | GENERATE | | Hour filter | | Entry price | | Prob zone | | Stop loss | | MA direction | | Take profit | +--------+--------+ | Position size | | +-----------------+ v +------------------+ | BLOCKED or | | PASSED | +------------------+ </pre> '''Entry Techniques (17 Types):''' <pre> 1. near_ma - Entry near 21 MA 2. ma_bounce - Bounce off 21 MA 3. break_of_structure (BOS) - Breakout entry 4. pullback_entry - Trend pullback 5. key_level_entry - At support/resistance ... (12 more specialized techniques) </pre> '''Stop Loss Calculation:''' <pre> LONG Stop = Entry Price - MAX(recent_low - buffer, min_stop_distance) SHORT Stop = Entry Price + MAX(recent_high + buffer, min_stop_distance) Where: - min_stop_distance = 40 points (prevents too-tight stops) - buffer = 5 points for BOS entries - recent lookback = 5-10 bars depending on technique </pre> '''Take Profit Methods:''' <pre> 1. Fixed R:R - TP = Entry + (Stop_Distance * Risk_Reward_Ratio) 2. Fixed Points - TP = Entry +/- default_profit_points 3. ATR Multiple - TP = Entry +/- (ATR * atr_multiple) </pre> '''Active Filters:''' {| class="wikitable" |- ! Filter !! Purpose !! Impact |- | Hour Filter || Block toxic hours (9, 22, 23) || Saves Rs 357k+ |- | MA Direction || Trade only with MA21 slope || Improves trend alignment |- | Probability Zone || Block counter-trend in extremes || Reduces false signals |} '''Output:''' <code>Signal</code> * <code>signal_id</code>: Unique identifier * <code>direction</code>: LONG / SHORT * <code>entry_price</code>: Precise entry level * <code>stop_loss_price</code>: Risk cutoff * <code>take_profit_price</code>: Target level * <code>position_size</code>: Lots to trade * <code>setup_quality</code>: Grade * <code>estimated_costs</code>: Brokerage + taxes ----
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
Alpha Research5
(section)
Add topic