Jump to content

Alpha Research: Difference between revisions

From PlusEV Wiki Page
Blanked the page
Tag: Blanking
No edit summary
Line 1: Line 1:
**NOTOC**


'''Alpha Research: MCX Crude Oil MA21 Strategy'''
''Single Source of Truth for the PlusEV Trading System''
---
== Quick Reference: Backtest Proof ==
{| class="wikitable"
| ! Metric !! Value !! Notes |  |              |  |                            |
| -------------------------- | - | ------------- | - | -------------------------- |
| Total P&L                  |  | Rs +25,48,101 |  | 19-month validation period |
| -                          |  |              |  |                            |
| Win Rate                  |  | 57.6%        |  | Above 55% threshold        |
| -                          |  |              |  |                            |
| Profit Factor              |  | 1.20          |  | Risk-adjusted returns      |
| -                          |  |              |  |                            |
| Total Trades              |  | 7,534        |  | Statistical significance  |
| -                          |  |              |  |                            |
| Initial Capital            |  | Rs 1,00,000  |  | Starting portfolio        |
| -                          |  |              |  |                            |
| Final Capital              |  | Rs 26,48,101  |  | 2548% return              |
| }                          |  |              |  |                            |
'''Branch''': <code>rikk_mtf_backtest001</code>
'''Commit''': <code>68dae212</code>
''"In trading systems, empirical results > theoretical understanding. If the backtest shows it works, we ship it."''
---
== Core Trading Philosophy ==
=== Foundational Principles ===
* Simple systems outperform complex ones
* Market behavior is probabilistic, not predictive
* Goal is asymmetric probability positioning, not prediction
=== Asymmetric Probability Edge ===
When probability of continuation drops, reversal odds rise.
* 15% continuation ⇒ ~85% reversal probability
* Strategy positions on the higher-probability side
---
== Probability Zones (Halves & Thirds) ==
Large moves are divided into probability zones.
* Top Third → ~80% continuation (ideal SHORT zone)
* Top Half → ~65% continuation
* Bottom Half → ~35% continuation
* Bottom Third → ~15% continuation (ideal LONG zone)
'''Code Reference''':
<pre>
enable_probability_zone_filter = True
probability_zone_swing_lookback = 20
probability_zone_min_range = 20.0
</pre>
---
== Crash Play (Core Strategy) ==
=== Crash Bar Definition ===
* Bar > 2x recent average size
* Fast, violent, elongated move
* Indicates structural break
=== Crash Play Logic ===
# Identify crash bar
# Divide into halves & thirds
# Wait for bounce into zones
# Enter on color change or upper-zone test
'''Statistical Edge''':
* ~85% odds favor continuation after crash
'''Code Reference''':
<pre>
crash_bar_multiplier = 2.0
</pre>
---
== Pullback vs Collapse ==
=== Healthy Pullback ===
* 45° drift, no violent bars
* Holds above midpoint of prior run
* Odds favor continuation
=== Collapse (No Trade) ===
* Vertical, violent selling
* Deep break of structure
* Institutional liquidation
---
== Identifying Market Tops ==
Major tops usually show 2+ of the following:
# 3–5 leg run-up
# Vertical acceleration in final leg
# Exhaustion bar
# Three-Finger Spread (Price–MA21–MA200)
'''Code Reference''':
<pre>
three_finger_spread_threshold = 0.02
</pre>
---
== Entry Methodology ==
=== The Fab Four ===
* Previous Day High/Low
* 21-period MA
* 200-period MA
* Yesterday’s Close
MA is treated as a ''zone'', not a line.
'''Code Reference''':
<pre>
ma_buffer_points = 25.0
</pre>
=== Entry Hierarchy ===
* Shorts: price just below Fab Four (ceiling)
* Longs: price just above Fab Four (floor)
=== Multi-Timeframe Alignment ===
2m, 5m, 15m, Daily alignment = high-quality setup
---
== Stop Loss Methodology ==
=== Stop Types ===
* Event-based stop (preferred)
* Maximum loss stop (fallback)
Goal: Stop beyond Fab Four helping zone.
'''Code Reference''':
<pre>
min_stop_distance = 40
default_stop_distance = 40
</pre>
---
== Color Change Confirmation ==
=== Entry Trigger ===
* Short: red closes below prior green low
* Long: green closes above prior red high
Rule: Do not wait for bar completion.
=== Profit Taking (Two-Bar Rule) ===
* First opposite bar → ignore
* Second follow-through bar → take profit
---
== Trading Glossary (Engineer-Friendly) ==
{| class="wikitable"
| ! Term !! Meaning !! Why It Matters |  |                          |  |                  |
| ----------------------------------- | - | ------------------------ | - | ---------------- |
| Creeper Move                        |  | Small bars, quiet trend  |  | Reversal risk    |
| -                                  |  |                          |  |                  |
| Railroad Trend                      |  | Alternating bars near MA |  | Healthy trend    |
| -                                  |  |                          |  |                  |
| Two-Day Trend                      |  | Sustained MA bias        |  | A+ requirement  |
| -                                  |  |                          |  |                  |
| Crash Bar                          |  | >2x bar size            |  | Structural break |
| -                                  |  |                          |  |                  |
| Fab Four                            |  | Key reference levels    |  | Stop logic      |
| }                                  |  |                          |  |                  |
---
== System Architecture Overview ==
Data → Trend → Market State → Setup Quality → Signal → Execution
---
== Setup Quality Scoring ==
{| class="wikitable"
| ! Factor !! Weight  |  |    |
| ------------------- | - | --- |
| Timeframe Alignment |  | 30% |
| -                  |  |    |
| Trend Strength      |  | 20% |
| -                  |  |    |
| Entry Quality      |  | 15% |
| -                  |  |    |
| Key Levels          |  | 20% |
| -                  |  |    |
| Risk/Reward        |  | 15% |
| }                  |  |    |
Grades:
* A+ ≥ 90 (Auto)
* A ≥ 80 (Auto)
* B–D ≥ 60 (Manual)
* F < 50 (Skip)
---
== Decision Trees ==
* Hour filter → MA alignment → Probability zone → Setup score → Grade → Execute
---
''Last Updated: 2026-01-05 | Branch: rikk_mtf_backtest001 | Validated: 19-month backtest''

Revision as of 19:57, 4 January 2026

    • NOTOC**

Alpha Research: MCX Crude Oil MA21 Strategy

Single Source of Truth for the PlusEV Trading System

---

Quick Reference: Backtest Proof

| | | | - | ------------- | - | -------------------------- | | Rs +25,48,101 | | 19-month validation period | | | | | | 57.6% | | Above 55% threshold | | | | | | 1.20 | | Risk-adjusted returns | | | | | | 7,534 | | Statistical significance | | | | | | Rs 1,00,000 | | Starting portfolio | | | | | | Rs 26,48,101 | | 2548% return | | | | |

Branch: rikk_mtf_backtest001 Commit: 68dae212

"In trading systems, empirical results > theoretical understanding. If the backtest shows it works, we ship it."

---

Core Trading Philosophy

Foundational Principles

  • Simple systems outperform complex ones
  • Market behavior is probabilistic, not predictive
  • Goal is asymmetric probability positioning, not prediction

Asymmetric Probability Edge

When probability of continuation drops, reversal odds rise.

  • 15% continuation ⇒ ~85% reversal probability
  • Strategy positions on the higher-probability side

---

Probability Zones (Halves & Thirds)

Large moves are divided into probability zones.

  • Top Third → ~80% continuation (ideal SHORT zone)
  • Top Half → ~65% continuation
  • Bottom Half → ~35% continuation
  • Bottom Third → ~15% continuation (ideal LONG zone)

Code Reference:

enable_probability_zone_filter = True
probability_zone_swing_lookback = 20
probability_zone_min_range = 20.0

---

Crash Play (Core Strategy)

Crash Bar Definition

  • Bar > 2x recent average size
  • Fast, violent, elongated move
  • Indicates structural break

Crash Play Logic

  1. Identify crash bar
  1. Divide into halves & thirds
  1. Wait for bounce into zones
  1. Enter on color change or upper-zone test

Statistical Edge:

  • ~85% odds favor continuation after crash

Code Reference:

crash_bar_multiplier = 2.0

---

Pullback vs Collapse

Healthy Pullback

  • 45° drift, no violent bars
  • Holds above midpoint of prior run
  • Odds favor continuation

Collapse (No Trade)

  • Vertical, violent selling
  • Deep break of structure
  • Institutional liquidation

---

Identifying Market Tops

Major tops usually show 2+ of the following:

  1. 3–5 leg run-up
  1. Vertical acceleration in final leg
  1. Exhaustion bar
  1. Three-Finger Spread (Price–MA21–MA200)

Code Reference:

three_finger_spread_threshold = 0.02

---

Entry Methodology

The Fab Four

  • Previous Day High/Low
  • 21-period MA
  • 200-period MA
  • Yesterday’s Close

MA is treated as a zone, not a line.

Code Reference:

ma_buffer_points = 25.0

Entry Hierarchy

  • Shorts: price just below Fab Four (ceiling)
  • Longs: price just above Fab Four (floor)

Multi-Timeframe Alignment

2m, 5m, 15m, Daily alignment = high-quality setup

---

Stop Loss Methodology

Stop Types

  • Event-based stop (preferred)
  • Maximum loss stop (fallback)

Goal: Stop beyond Fab Four helping zone.

Code Reference:

min_stop_distance = 40
default_stop_distance = 40

---

Color Change Confirmation

Entry Trigger

  • Short: red closes below prior green low
  • Long: green closes above prior red high

Rule: Do not wait for bar completion.

Profit Taking (Two-Bar Rule)

  • First opposite bar → ignore
  • Second follow-through bar → take profit

---

Trading Glossary (Engineer-Friendly)

| | | | - | ------------------------ | - | ---------------- | | Small bars, quiet trend | | Reversal risk | | | | | | Alternating bars near MA | | Healthy trend | | | | | | Sustained MA bias | | A+ requirement | | | | | | >2x bar size | | Structural break | | | | | | Key reference levels | | Stop logic | | | | |

---

System Architecture Overview

Data → Trend → Market State → Setup Quality → Signal → Execution

---

Setup Quality Scoring

| | - | --- | | 30% | | | | 20% | | | | 15% | | | | 20% | | | | 15% | | |

Grades:

  • A+ ≥ 90 (Auto)
  • A ≥ 80 (Auto)
  • B–D ≥ 60 (Manual)
  • F < 50 (Skip)

---

Decision Trees

  • Hour filter → MA alignment → Probability zone → Setup score → Grade → Execute

---

Last Updated: 2026-01-05 | Branch: rikk_mtf_backtest001 | Validated: 19-month backtest