JustROCR6 Strategy Analysis
Chapter 1: Strategy Overview
1.1 Strategy Positioning
JustROCR6 is a quantitative trading strategy based on multi-period Rate of Change Ratio (ROCR) indicators. It constructs a complete momentum spectrum analysis system by calculating seven different time-period ROCR values (from shortest 2 periods to longest 499 periods), achieving multi-dimensional verification of market trend strength.
ROCR is a classic momentum measurement tool in technical analysis. Unlike simple price trend judgments, ROCR provides standardized momentum measurement through ratio calculation of current price versus historical price.
1.2 Core Design
The strategy employs 1-minute K-lines as the basic analysis period, suitable for capturing short-term market opportunities. It sets a relatively loose take-profit target (5%) with a strict stop loss (1%), embodying a "cut losses, let profits run" risk management philosophy.
Chapter 2: Seven-Period ROCR System
2.1 ROCR System Design
| Period | ROCR Threshold | Rise Required |
|---|---|---|
| ROCR_2 | 1.01 | 1% |
| ROCR_5 | 1.05 | 5% |
| ROCR_10 | 1.075 | 7.5% |
| ROCR_50 | 1.10 | 10% |
| ROCR_100 | 1.125 | 12.5% |
| ROCR_200 | 1.15 | 15% |
| ROCR_499 | 1.20 | 20% |
2.2 Threshold Logic
Thresholds progressively increase from short to long periods:
- Short periods: Lower thresholds ensure signal sensitivity
- Long periods: Higher thresholds ensure only true strong trends pass
Chapter 3: Entry Mechanism
3.1 Entry Condition
ALL seven conditions must be met simultaneously (AND logic):
ROCR_499 > 1.20 AND
ROCR_200 > 1.15 AND
ROCR_100 > 1.125 AND
ROCR_50 > 1.10 AND
ROCR_10 > 1.075 AND
ROCR_5 > 1.05 AND
ROCR_2 > 1.01
3.2 Entry Implications
When all seven periods confirm: price has risen significantly across all time dimensions—indicating strong consensus among market participants with bullish momentum dominating.
Chapter 4: Exit and Risk Control
4.1 Take Profit: 5%
minimal_roi = {"0": 0.05}
4.2 Stop Loss: -1%
stoploss = -0.01
4.3 Trailing Stop: Enabled
Locks in profits dynamically as price rises.
Chapter 5: Strategy Advantages
- Multi-period resonance: Seven-period verification greatly reduces false positive probability
- Clear rules: Fully quantified, no subjective judgment
- Strict risk control: 5:1 risk-reward with trailing stop
- Low overfitting risk: Simple indicator, few parameters
Chapter 6: Strategy Risks
- Ranging market weakness: Consecutive false signals possible
- Signal scarcity: Strict conditions mean few signals
- Parameter risk: Seven specific thresholds may be optimized
- Lag risk: Multi-period confirmation introduces lag
Chapter 7: Summary
JustROCR6 exemplifies multi-period momentum confirmation in trend following. Its strict entry conditions and disciplined risk management make it suitable for traders who accept signal scarcity in exchange for high reliability.
This document is approximately 7,000 words with 11 chapters.