Trinity ATR Strategy (Saty) - Backtest EditionThis is not supposed to be a standalone indicator, but releasing this to give a general overview of what it could do, each commodity and timeframe would need to be back tested. Use in conjunction with other indicators and price action. This is not financial advice and is not a guarantee of financial results.
Hareketli Ortalamalar
EMA Cross Strategy v5 (30 lots) (15 min candle only)- safe flip🚀 EMA Cross Strategy v5 (30 Lots) (15 min candle only)— Safe Flip Edition
Fully Automated | Fast | Reliable | Battle-tested
Welcome to a clean, powerful, and automation-friendly EMA crossover system.
This strategy is built for traders who want consistent trend-based entries without the risk of unwanted pyramiding or doubled positions.
🔥 How It Works
This strategy uses a fast EMA (10) crossing a slow EMA (20) to detect trend shifts:
Bullish Crossover → LONG (30 lots)
Bearish Crossover → SHORT (30 lots)
Every opposite signal safely flips the position by first closing the current trade, then opening a fresh position of exactly 30 lots.
No doubling.
No runaway position size.
No surprises.
Just clean, mechanical trend-following.
📈 Why This Strategy Stands Out
Unlike basic EMA crossbots, this version:
✔ Prevents unintended pyramiding
✔ Never over-allocates capital
✔ Works perfectly with webhook-based automation
✔ Produces stable, systematic entries
✔ Executes directional flips with precision
🔍 Backtest Highlights (1-Year)
(Backtests will vary by instrument/timeframe)
1,500+ trades executed
Profit factor above 1.27
Strong trend performance
Balanced long/short behavior
No margin calls
Consistent trade execution
This strategy thrives in trending markets and maintains strict discipline even in choppy conditions.
⚙️ Automation Ready
Designed for automated execution via webhook and API setups on supported platforms.
Just connect, run, and let the bot follow the rules without hesitation.
No emotions.
No overtrading.
No fear or greed.
Pure logic.
ZH1/5-Min Opening Range Breakout Strategy with Market Biasx.com
"ZH1/5-Min Opening Range Breakout Strategy with Market Bias"
Golden Cross 50/200 EMATrend-following systems are characterized by having a low win rate, yet in the right circumstances (trending markets and higher timeframes) they can deliver returns that even surpass those of systems with a high win rate.
Below, I show you a simple bullish trend-following system with clear execution rules:
System Rules
-Long entries when the 50-period EMA crosses above the 200-period EMA.
-Stop Loss (SL) placed at the lowest low of the 15 candles prior to the entry candle.
-Take Profit (TP) triggered when the 50-period EMA crosses below the 200-period EMA.
Risk Management
-Initial capital: $10,000
-Position size: 10% of capital per trade
-Commissions: 0.1% per trade
Important Note:
In the code, the stop loss is defined using the swing low (15 candles), but the position size is not adjusted based on the distance to the stop loss. In other words, 10% of the equity is risked on each trade, but the actual loss on the trade is not controlled by a maximum fixed percentage of the account — it depends entirely on the stop loss level. This means the loss on a single trade could be significantly higher or lower than 10% of the account equity, depending on volatility.
Implementing leverage or reducing position size based on volatility is something I haven’t been able to include in the code, but it would dramatically improve the system’s performance. It would fix a consistent percentage loss per trade, preventing losses from fluctuating wildly with changes in volatility.
For example, we can maintain a fixed loss percentage when volatility is low by using the following formula:
Leverage = % of SL you’re willing to risk / % volatility from entry point to stop loss
And when volatility is high and would exceed the fixed percentage we want to expose per trade (if the SL is hit), we could reduce the position size accordingly.
Practical example:
Imagine we only want to risk 15% of the position value if the stop loss is triggered on Tesla (which has high volatility), but the distance to the SL represents a potential 23.57% drop. In this case, we subtract the desired risk (15%) from the actual volatility-based loss (23.57%):
23.57% − 15% = 8.57%
Now suppose we normally use $200 per trade.
To calculate 8.57% of $200:
200 × (8.57 / 100) = $17.14
Then subtract that amount from the original position size:
$200 − $17.14 = $182.86
In summary:
If we reduce the position size to $182.86 (instead of the usual $200), even if Tesla moves 23.57% against us and hits the stop loss, we would still only lose approximately 15% of the original $200 position — exactly the risk level we defined. This way, we strictly respect our risk management rules regardless of volatility swings.
I hope this clearly explains the importance of capping losses at a fixed percentage per trade. This keeps risk under control while maintaining a consistent percentage of capital invested per trade — preventing both statistical distortion of the system and the potential destruction of the account.
About the code:
Strategy declaration:
The strategy is named 'Golden Cross 50/200 EMA'.
overlay=true means it will be drawn directly on the price chart.
initial_capital=10000 sets the initial capital to $10,000.
default_qty_type=strategy.percent_of_equity and default_qty_value=10 means each trade uses 10% of available equity.
margin_long=0 indicates no margin is used for long positions (this is likely for simulation purposes only; in real trading, margin would be required).
commission_type=strategy.commission.percent and commission_value=0.1 sets a 0.1% commission per trade.
Indicators:
Calculates two EMAs: a 50-period EMA (ema50) and a 200-period EMA (ema200).
Crossover detection:
bullCross is triggered when the 50-period EMA crosses above the 200-period EMA (Golden Cross).
bearCross is triggered when the 50-period EMA crosses below the 200-period EMA (Death Cross).
Recent swing:
swingLow calculates the lowest low of the previous 15 periods.
Stop Loss:
entryStopLoss is a variable initialized as na (not available) and is updated to the current swingLow value whenever a bullCross occurs.
Entry and exit conditions:
Entry: When a bullCross occurs, the initial stop loss is set to the current swingLow and a long position is opened.
Exit on opposite signal: When a bearCross occurs, the long position is closed.
Exit on stop loss: If the price falls below entryStopLoss while a position is open, the position is closed.
Visualization:
Both EMAs are plotted (50-period in blue, 200-period in red).
Green triangles are plotted below the bar on a bullCross, and red triangles above the bar on a bearCross.
A horizontal orange line is drawn that shows the stop loss level whenever a position is open.
Alerts:
Alerts are created for:Long entry
Exit on bearish crossover (Death Cross)
Exit triggered by stop loss
Favorable Conditions:
Tesla (45-minute timeframe)
June 29, 2010 – November 17, 2025
Total net profit: $12,458.73 or +124.59%
Maximum drawdown: $1,210.40 or 8.29%
Total trades: 107
Winning trades: 27.10% (29/107)
Profit factor: 3.141
Tesla (1-hour timeframe)
June 29, 2010 – November 17, 2025
Total net profit: $7,681.83 or +76.82%
Maximum drawdown: $993.36 or 7.30%
Total trades: 75
Winning trades: 29.33% (22/75)
Profit factor: 3.157
Netflix (45-minute timeframe)
May 23, 2002 – November 17, 2025
Total net profit: $11,380.73 or +113.81%
Maximum drawdown: $699.45 or 5.98%
Total trades: 134
Winning trades: 36.57% (49/134)
Profit factor: 2.885
Netflix (1-hour timeframe)
May 23, 2002 – November 17, 2025
Total net profit: $11,689.05 or +116.89%
Maximum drawdown: $844.55 or 7.24%
Total trades: 107
Winning trades: 37.38% (40/107)
Profit factor: 2.915
Netflix (2-hour timeframe)
May 23, 2002 – November 17, 2025
Total net profit: $12,807.71 or +128.10%
Maximum drawdown: $866.52 or 6.03%
Total trades: 56
Winning trades: 41.07% (23/56)
Profit factor: 3.891
Meta (45-minute timeframe)
May 18, 2012 – November 17, 2025
Total net profit: $2,370.02 or +23.70%
Maximum drawdown: $365.27 or 3.50%
Total trades: 83
Winning trades: 31.33% (26/83)
Profit factor: 2.419
Apple (45-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $8,232.55 or +80.59%
Maximum drawdown: $581.11 or 3.16%
Total trades: 140
Winning trades: 34.29% (48/140)
Profit factor: 3.009
Apple (1-hour timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $9,685.89 or +94.93%
Maximum drawdown: $374.69 or 2.26%
Total trades: 118
Winning trades: 35.59% (42/118)
Profit factor: 3.463
Apple (2-hour timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $8,001.28 or +77.99%
Maximum drawdown: $755.84 or 7.56%
Total trades: 67
Winning trades: 41.79% (28/67)
Profit factor: 3.825
NVDA (15-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $11,828.56 or +118.29%
Maximum drawdown: $1,275.43 or 8.06%
Total trades: 466
Winning trades: 28.11% (131/466)
Profit factor: 2.033
NVDA (30-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $12,203.21 or +122.03%
Maximum drawdown: $1,661.86 or 10.35%
Total trades: 245
Winning trades: 28.98% (71/245)
Profit factor: 2.291
NVDA (45-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $16,793.48 or +167.93%
Maximum drawdown: $1,458.81 or 8.40%
Total trades: 172
Winning trades: 33.14% (57/172)
Profit factor: 2.927
ATR Trend + RSI Pullback Strategy [Profit-Focused]This strategy is designed to catch high-probability pullbacks during strong trends using a combination of ATR-based volatility filters, RSI exhaustion levels, and a trend-following entry model.
Strategy Logic
Rather than relying on lagging crossovers, this model waits for RSI to dip into oversold zones (below 40) while price remains above a long-term EMA (default: 200). This setup captures pullbacks in strong uptrends, allowing traders to enter early in a move while controlling risk dynamically.
To avoid entries during low-volatility conditions or sideways price action, it applies a minimum ATR filter. The ATR also defines both the stop-loss and take-profit levels, allowing the model to adapt to changing market conditions.
Exit logic includes:
A take-profit at 3× the ATR distance
A stop-loss at 1.5× the ATR distance
An optional early exit if RSI crosses above 70, signaling overbought conditions
Technical Details
Trend Filter: 200 EMA – must be rising and price must be above it
Entry Signal: RSI dips below 40 during an uptrend
Volatility Filter: ATR must be above a user-defined minimum threshold
Stop-Loss: 1.5× ATR below entry price
Take-Profit: 3.0× ATR above entry price
Exit on Overbought: RSI > 70 (optional early exit)
Backtest Settings
Initial Capital: $10,000
Position Sizing: 5% of equity per trade
Slippage: 1 tick
Commission: 0.075% per trade
Trade Direction: Long only
Timeframes Tested: 15m, 1H, and 30m on trending assets like BTCUSD, NAS100, ETHUSD
This model is tuned for positive P&L across trending environments and volatile markets.
Educational Use Only
This strategy is for educational purposes only and should not be considered financial advice. Past performance does not guarantee future results. Always validate performance on multiple markets and timeframes before using it in live trading.
Bitcoin & Ethereum Profitable Crypto Investor – FREE EditionBitcoin & Ethereum Profitable Crypto Investor – FREE Edition
by RustyTradingScripts
This is the free, simplified edition of my long-term crypto trend-following strategy designed for Bitcoin, Ethereum, and other major assets. It provides an accessible introduction to the core concepts behind the full version while remaining easy to use, transparent, and beginner-friendly.
This FREE edition focuses on a single technical component: a 102-period Simple Moving Average trend model. When price moves above the SMA, the script considers it a potential long trend environment. When the slope begins to turn down, the strategy exits the position. This creates a straightforward, rules-based framework for identifying trend shifts without emotional or discretionary decision-making.
The goal of this simplified version is to help users understand how a structured trend approach behaves during different market conditions. It demonstrates how using a slow, objective indicator can reduce noise and provide clearer long-term directional context on higher timeframes such as the 10-hour BTC chart shown in the backtest example.
What This FREE Version Includes
- Trend-based entries using a 102-period SMA
- Automatic exits when the SMA slope turns down
- Clean visual plot of the moving average
- No repainting — signals are based on confirmed bar data
- Works on BTC, ETH, and other major crypto assets
- User-adjustable SMA length for customization
What’s Not Included in This Version:
This edition intentionally focuses on the essential trend logic only.
It does NOT include the following components found in the full investor strategy:
- Linear regression smoothing
- Seasonal filters
- Price-extension filtering
- Volume-based protection
- Partial stop-loss and partial take-profit systems
- Cooldown logic after profitable trades
- RSI-based extended exits
- Multi-layered trade management modules
The purpose of this free version is to provide a clear, functional introduction to the underlying trend concept without the advanced filters and risk-management features that are part of the complete system.
How to Use It
Apply the script to your preferred asset and timeframe (commonly higher timeframes such as 4H, 8H, 10H, 12H, or 1D). The script will enter long positions when the market is trading above the SMA and exit when the slope of the average begins to point downward. Users may adjust the SMA length to match their preferred level of responsiveness.
Important Notes
This script is for educational and analytical purposes.
Historical results are not guarantees of future performance.
Always practice proper risk management and perform your own testing.
This script does not repaint.
This FREE version is meant as a helpful starting point for those exploring long-term crypto trend strategies. If you find it useful and wish to explore more advanced tools, feel free to reach out for additional information.
BTC EMA 5-9 Flip Strategy AutobotThis strategy is designed for fast and accurate trend-following trades on Bitcoin.
It uses a crossover between EMA 5 and EMA 9 to detect instant trend reversals and automatically flips between Long and Short positions.
How the strategy works
EMA 5 crossing above EMA 9 → Long
EMA 5 crossing below EMA 9 → Short
Automatically closes the opposite trade during a flip
Executes trades only on candle close
Prevents double entries with internal position-state logic
Fully compatible with automated trading via webhooks (Delta Exchange)
Why this strategy works
EMA 5–9 is extremely responsive for BTC’s volatility
Captures trend reversals early
Works best on 15-minute timeframe
Clean, simple logic without over-filtering reduces missed opportunities
Performs well in both uptrends and downtrends
Automation Ready
This strategy includes alert conditions and webhook-ready JSON for automated execution.
This is a fast-reacting BTC bot designed for intraday and swing crypto trend trading.
CongTrader Strategy V1📈 CongTrader Strategy V1 — Official Overview
CongTrader Strategy V1 is a precision-built algorithm designed for intraday and swing traders who want a structured, rules-driven approach to capturing directional momentum while avoiding low-quality market conditions.
This strategy combines volatility-based logic, trend confirmation filters, and a market-conditioning engine to produce high-probability long and short signals with strictly candle-close confirmed entries (no intrabar repainting).
🔍 Core Philosophy
Modern markets move in bursts of volatility that are often preceded by subtle shifts in momentum and structure.
CongTrader V1 is engineered to:
identify emerging directional pressure early
filter out noise, consolidation, and choppy environments
only execute when multiple conditions align
maintain consistent, disciplined trade management
The result is a strategy that aims to trade quality over quantity, focusing on clear, structured setups rather than impulsive, intrabar signals.
🧠 Key Components (High-Level Explanation)
1️⃣ Directional Signal Engine (Trigger System)
The strategy uses a custom momentum-oscillation model to detect potential turning points and trend continuations.
This engine smooths price action, measures pressure extremes, and generates trigger crossovers that signal potential long or short opportunities.
(The exact formula and coefficients are proprietary and not displayed.)
2️⃣ ATR-Based Risk Management
Each trade is automatically paired with:
a volatility-adaptive stop loss, and
a volatility-adaptive profit target
This allows the strategy to adjust position management dynamically based on current market movement rather than fixed pip or dollar distances.
3️⃣ Trend Confirmation Filter (EMA)
A long-term EMA trend filter prevents counter-trend entries by ensuring:
Long positions trade only above trend
Short positions trade only below trend
This keeps signals aligned with higher-timeframe momentum.
4️⃣ VWAP Institutional Bias Filter
VWAP is used as a dynamic market fair-value reference.
The strategy only trades when price action shows favorable positioning relative to VWAP—helping avoid false moves and mean-reversion traps.
5️⃣ Range & Volatility Filter
A volatility/range filter avoids entering during tight consolidations.
If the market is not moving or lacks range expansion, the strategy waits patiently.
This significantly reduces chop and whipsaw trades.
6️⃣ RTH (Regular Trading Hours) Protection
Optionally limits trades to regular exchange hours for traders who avoid low-liquidity overnight sessions.
⏳ Candle-Close Entry Confirmation (No Repainting)
All entries are strictly confirmed after the bar closes, which means:
No intrabar fakeouts
No signal disappearance
No repainting
Cleaner, more realistic backtesting
This ensures the strategy behaves the same in backtests and in live charts.
🎯 Trade Logic Summary
A trade is only taken when:
✔ A directional trigger signal occurs
✔ Price meets VWAP bias conditions
✔ Price aligns with the long-term trend
✔ Sufficient volatility/range is present
✔ (Optional) Within regular trading hours
✔ The candle has fully confirmed
Every trade is managed automatically with ATR-based stop loss and take profit placement.
📊 Who This Strategy Is For
CongTrader V1 works well for:
Intraday traders (1–15m)
Swing traders (30m–4h)
Momentum and trend-followers
Algorithmic traders looking for disciplined, rules-based entries
Traders who want cleaner signals and less noise
Anyone who wants to avoid low-quality, choppy markets
🔔 Alerts Included
Built-in alerts notify you instantly when conditions for long or short entries are met, making it suitable for:
Manual execution
Automated trading systems
Signal services
🧩 Important Note
This strategy is designed for educational purposes and is not financial advice. Performance may vary depending on market conditions, broker feed, and instrument volatility. Always backtest thoroughly and use risk management.
RubberBand Scalp NQ Strategy (V6 - High PF Focus)
================================================================================
RUBBERBAND SCALP NQ (V6 - HIGH PF FOCUS)
================================================================================
// STRATEGY OVERVIEW
// -----------------
// Instrument: NQ (Nasdaq 100 E-mini Futures)
// Style: Intraday mean-reversion scalping
// Core Idea: Price "stretches" away from VWAP, then "snaps back" → enter on strong reversal
// Session: 9:00 AM – 2:30 PM CST (America/Chicago)
// Timeframe: 1–5 min (ideal: 2–3 min)
// Position: 2 contracts, pyramiding = 0
// Commission: $2.00 per contract
// Goal: High Profit Factor via asymmetric exits (1R fixed + unlimited runner)
// KEY FILTERS
// -----------
// • Only trade when ATR(15) > 5.0 points (~$100 range) → avoids chop
// • Must be in session → forces flat at 2:30 PM
// • VWAP proximity: price must touch within 0.5 × ATR of VWAP
// ENTRY LOGIC (LONG)
// -----------------
// 1. In session & no position
// 2. Close > Open (bullish bar)
// 3. Close > highest high of last 4 bars → momentum confirmation
// 4. Close > VWAP
// 5. Low < VWAP + (0.5 × ATR) → pullback reached VWAP zone
// 6. ATR > 5.0
// 7. Bar confirmed
// → Plot green triangle below bar
// ENTRY LOGIC (SHORT) – Symmetric
// -----------------
// 1. Close < Open
// 2. Close < lowest low of last 4 bars
// 3. Close < VWAP
// 4. High > VWAP - (0.5 × ATR)
// 5. ATR > 5.0
// → Plot red triangle above bar
// STOP LOSS – DUAL SYSTEM (Widest Stop Wins)
// -----------------------------------------
// VWAP Stop (Long): VWAP - 0.20
// ATR Stop (Long): Close - min(ATR × 1.0, 15.0)
// Final Stop: MAX(VWAP Stop, ATR Stop) → then CAP at Close - 0.20
// Short: MIN of both → FLOOR at Close + 0.20
// → Max buffer: 0.20 pts = $20 (4 ticks)
// → Risk = |Entry – Final Stop|
// PROFIT TAKING – 2 CONTRACTS
// ---------------------------
// Contract #1: Fixed 1R → limit = entry + risk (long) / entry - risk (short)
// Contract #2: Trailing stop only → trail_points = risk, trail_offset = 0
// NO FIXED TAKE PROFIT ON RUNNER → lets 3R, 5R, 10R+ winners run
// BUG: Short runner uses trail_offset = 1.5 → CHANGE TO 0
// V6 IMPROVEMENTS
// ---------------
// 1. ATR_STOP_MULTIPLIER reduced from 1.5 → 1.0 → tighter average loss
// 2. Removed fixed 2R cap on runner → unlimited upside
// 3. Widest-stop logic → prevents premature stop-outs
// TRADE EXAMPLE (LONG)
// -------------------
// Entry: 18,125 (2 contracts)
// Stop: 18,110 → Risk = $300/contract
// 1R: 18,155 → Contract #1 exits (+$600)
// Runner trails by $300 → exits at 18,425 (+$6,000)
// Total P&L: +$6,600
// PERFORMANCE EXPECTATIONS
// ------------------------
// Win Rate: 40–50%
// Avg Winner: >3× avg loser
// Profit Factor: 2.0–3.5+
// Max Drawdown: <5% (with risk controls)
// DAILY CHECKLIST
// ---------------
// 2–3 min NQ chart
// Timezone: America/Chicago
// ATR > 5.0
// Price touched VWAP zone
// 4-bar breakout confirmed
// trail_offset = 0 (both sides)
// Alerts on
// Log R-multiple
// FINAL NOTES
// -----------
// This is a PROFIT FACTOR system — not a high win-rate system.
// Success = discipline + volatility + clean execution.
================================================================================
MSB Trend Breakout Strategy V7**MSB Trend Breakout Strategy V7**
This is the full, high-precision automated strategy designed for disciplined traders who understand directional price action. The script functions as a robust **entry and trade management tool** following two proprietary concepts:
**1. Trend Confirmation:** A customized Moving Average filter is utilized to ensure entries strictly align with the dominant market flow.
**2. Momentum Confirmation:** The system uses a specific short-term **multi-bar breakout range** to pinpoint high-probability entries at the start of a momentum shift, avoiding choppy market conditions.
**Key Features:**
* **Automated Risk Management:** Includes complete dynamic Stop Loss (SL) and Take Profit (TP) order management to ensure capital preservation.
* **Time Filter:** Optimizes performance by filtering signals to the most liquid Forex trading hours (01:00 to 19:00, broker time).
**PREREQUISITE FOR ACCESS:**
This is an advanced tool. To utilize the strategy effectively, the user should have a foundational understanding of directional bias and trade management principles.
---
**Important Note & Risk Disclosure:**
This strategy is published under **Invite-only** protection. The script does not provide financial advice or guarantee profits. Past performance is not indicative of future results.
Moving Average Band StrategyOverview
The Moving Average Band Strategy is a fully customizable breakout and trend-continuation system designed for traders who need both simplicity and control.
The strategy creates adaptive bands around a user-selected moving average and executes trades when price breaks out of these bands, with advanced risk-management settings including optional Risk:Reward targets.
This script is suitable for intraday, swing, and positional traders across all markets — equities, futures, crypto, and forex.
Key Features
✔ Six Moving Average Types
Choose the MA that best matches your trading style:
SMA
EMA
WMA
HMA
VWMA
RMA
✔ Dynamic Bands
Upper Band built from MA of highs
Lower Band built from MA of lows
Adjustable band offset (%)
Color-coded band fill indicating price position
✔ Configurable Strategy Preferences
Toggle Long and/or Short trades
Toggle Risk:Reward Take-Profit
Adjustable Risk:Reward Ratio
Default position sizing: % of equity (configurable via strategy settings)
Entry Conditions
Long Entry
A long trade triggers when:
Price crosses above the Upper Band
Long trades are enabled
No existing long position is active
Short Entry
A short trade triggers when:
Price crosses below the Lower Band
Short trades are enabled
No existing short position is active
Clear entry markers and price labels appear on the chart.
Risk Management
This strategy includes a complete set of risk-controls:
Stop-Loss (Fixed at Entry)
Long SL: Lower Band
Short SL: Upper Band
These levels remain constant for the entire trade.
Optional Risk:Reward Take-Profit
Enabled/disabled using a toggle switch.
When enabled:
Long TP = Entry + (Risk × Risk:Reward Ratio)
Short TP = Entry – (Risk × Risk:Reward Ratio)
When disabled:
Exits are handled by reverse crossover signals.
Exit Conditions
Long Exit
Stop-Loss Hit (touch-based)
Take-Profit Hit (if enabled)
Reverse Band Crossover (if TP disabled)
Short Exit
Stop-Loss Hit (touch-based)
Take-Profit Hit (if enabled)
Reverse Band Crossover (if TP disabled)
Exit markers and price labels are plotted automatically.
Visual Tools
To improve clarity:
Upper & Lower Band (blue, adjustable width)
Middle Line
Dynamic band fill (green/red/yellow)
SL & TP line plotting when in position
Entry/Exit markers
Price labels for all executed trades
These are built to help users visually follow the strategy logic.
Alerts Included
Every trading event is covered:
Long Entry
Short Entry
Long SL / TP / Cross Exit
Short SL / TP / Cross Exit
Combined Alert for webhook/automation (JSON-formatted)
Perfect for algo trading, Discord bots, or automation platforms.
Best For
This strategy performs best in:
Trending markets
Breakout environments
High-momentum instruments
Clean intraday swings
Works seamlessly on:
Stocks
Index futures
Commodities
Crypto
Forex
⚠️ Important Disclaimer
This script is for educational purposes only.
Trading involves risk. Backtest results are not indicative of future performance.
Always validate settings and use proper position sizing.
Bank nifty with RSI + SMA (Bli-Rik)best to trade for 100 points on 15 mins time frame, very rarly fails
EMA VIP STRThis strategy works on EMAS and standard deviation on both sides , the tp is decided on RSI levels. the strategy is a systematic trading setup
Supertrend +QQE + DEMASupertrend + QQE + DEMA — Strategy
Inspired by UNITED and my best friend ChatGPT
This strategy combines dual Supertrends, a QQE trend filter, and a 200-period DEMA directional filter to generate structured, trend-aligned entries. It is designed for Heikin Ashi charts , where trend noise is reduced and swing structure becomes clearer.
How It Works
The system fires a trade only when all conditions agree:
1. Both Supertrends flip in the same direction
This identifies strong directional shifts and removes weak reversals.
2. QQE Trend Confirmation
QQE acts as a momentum filter, requiring either a green (bullish) or red (bearish) state with optional consecutive-bar confirmation.
3. 200 DEMA Filter
Only longs above the DEMA and only shorts below the DEMA.
This keeps trades aligned with the higher-timeframe trend.
Because each component filters the other, signals are high-quality, controlled, and structured rather than frequent or reactive.
Expected Performance
Based on the design and typical market testing, this combination yields a 50–70% win rate, depending on:
The market (best on indices like NQ/MNQ, ES/MES, DAX, etc.)
Volatility conditions
Whether used on Heikin Ashi , which increases trend-cleanliness and reduces chop
Timeframe (1m–5m often optimal for intraday)
The system avoids rapid flip-flopping by using “arm → confirm → fire once” logic, which further improves win consistency and reduces whipsaw losses.
How to Properly Use It (IMPORTANT)
This strategy is meant to be run on a Heikin Ashi chart.
Why?
Heikin Ashi smooths candles, giving clearer:
Trend transitions
Pullbacks
Momentum continuation
Supertrend reliability
Running this on normal candles will still work, but the win rate and smoothness drop significantly because Supertrend + QQE respond more cleanly to HA structure.
Trade Behavior
Longs trigger when both Supertrends flip up, QQE is bullish, and price is above DEMA.
Shorts trigger when both Supertrends flip down, QQE is bearish, and price is below DEMA.
Strategy closes when the opposite Supertrend flip occurs.
Alerts fire automatically for buy/sell confirmations.
Best Use Cases
Intraday trend trading
Momentum continuation after a confirmed reversal
Avoiding chop with multi-layer confirmation
Backtesting rule-based execution
Qullamagi EMA Breakout Autotrade (Crypto Futures L+S)Title: Qullamagi EMA Breakout – Crypto Autotrade
Overview
A crypto-focused, Qullamagi-style EMA breakout strategy built for autotrading on futures and perpetual swaps.
It combines a 5-MA trend stack (EMA 10/20, SMA 50/100/200), volatility contraction boxes, volume spikes and an optional higher-timeframe 200-MA filter. The script supports both long and short trades, partial take profit, trailing MA exits and percent-of-equity position sizing for automated crypto futures trading.
Key Features (Crypto)
Qullamagi MA Breakout Engine – trades only when price is aligned with a strong EMA/SMA trend and breaks out of a tight consolidation range. Longs use: Close > EMA10 > EMA20 > SMA50 > SMA100 > SMA200. Shorts are the mirror condition with all MAs sloping in the trend direction.
Strict vs Loose Modes – Strict (Daily) is designed for cleaner swing trades on 1H–4H (full MA stack, box+ATR and volume filters, optional HTF filter). Loose (Intraday) focuses on 10/20/50 alignment with relaxed filters for more frequent 15m–30m signals.
Volatility & Volume Filters for Crypto – ATR-based box height limit to detect volatility contraction, wide-candle filter to avoid chasing exhausted breakouts, and a volume spike condition requiring current volume to exceed an SMA of volume.
Higher-Timeframe Trend Filter (Optional) – uses a 200-period SMA on a higher timeframe (default: 1D). Longs only when HTF close is above the HTF 200-SMA, shorts only when it is below, helping avoid trading against dominant crypto trends.
Autotrade-Oriented Trade Management – position size as % of equity, initial stop anchored to a chosen MA (EMA10 / EMA20 / SMA50) with optional buffer, partial take profit at a configurable R-multiple, trailing MA exit for the remainder, and an optional cooldown after a full exit.
Markets & Timeframes
Best suited for BTC, ETH and major altcoin futures/perpetuals (Binance, Bybit, OKX, etc.).
Strict preset: 1H–4H charts for classic Qullamagi-style trend structure and fewer fake breakouts.
Loose preset: 15m–30m charts for higher trade frequency and more active intraday trading.
Always retune ATR length, box length, volume multiplier and position size for each symbol and exchange.
Strategy Logic (Quick Summary)
Long (Strict): MA stack in bullish alignment with all MAs sloping up → tight volatility box (ATR-based) → volume spike above SMA(volume) × multiplier → breakout above box high (close or intrabar) → optional HTF close above 200-SMA.
Short: Mirror logic: bearish MA stack, tight box, volume spike and breakdown below box low with optional HTF downtrend.
Best Practices for Crypto
Backtest on each symbol and timeframe you plan to autotrade, including commissions and slippage.
Start on higher timeframes (1H/4H) to learn the behavior, then move to 15m–30m if you want more signals.
Use the higher-timeframe filter when markets are strongly trending to reduce counter-trend trades.
Keep position-size percentage conservative until you fully understand the drawdowns.
Forward-test / paper trade before connecting to live futures accounts.
Webhook / Autotrade Integration
Designed to work with TradingView webhooks and external crypto trading bots.
Alert messages include structured fields such as: EVENT=ENTRY / SCALE_OUT / EXIT, SIDE=LONG / SHORT, STRATEGY=Qullamagi_MA.
Map each EVENT + SIDE combination to your bot logic (open long/short, partial close, full close, etc.) on your preferred exchange.
Important Notes & Disclaimer
Crypto markets are highly volatile and can change regime quickly. Backtest and forward-test thoroughly before using real capital. Higher timeframes generally produce cleaner MA structures and fewer fake breakouts.
This strategy is for educational and informational purposes only and does not constitute financial advice. Trading leveraged crypto products involves substantial risk of loss. Always do your own research, manage risk carefully, and never trade with money you cannot afford to lose.
OPPLIGER SMA Stufen-TP Strategie (200/100/50/25) mit Reentry✔️ 5.- transaction costs
✔️ 7% Stop-Loss
✔️ 3 Take-Profit SMA-levels
✔️ Reentry via SMA100 correction
✔️ Reentry via SMA25/SMA50 crossover
✔️ New REENTRY rule after Stop-Loss
→ only if SMA stack is bullish AND the 3rd & 4th candle after SL are above SMA25
SMA Stufen-TP Strategie (200/100/50/25) mit ReentryStrategy Description for TradingView: Multi-SMA Momentum & Reentry System
This Pine Script strategy, named "SMA Stufen-TP Strategie (200/100/50/25) mit Reentry," is a Long-Only trend-following system designed to capitalize on upward momentum and capture significant gains while incorporating sophisticated logic for reentry after corrections.
The system relies on four Simple Moving Averages (SMAs): SMA 200, SMA 100, SMA 50, and SMA 25. These indicators are used to define the trend structure, trigger entries, and set dynamic, layered Take-Profit (TP) levels.
Entry Rules
The strategy has one main entry and two specific reentry triggers:
Main Entry (Standard Trend): A long position is opened when the price crosses above the SMA 200. This acts as the initial signal for a strong, long-term uptrend.
Reentry 1 (Medium Correction): This reentry is sought after an official exit (Stop Loss or Take Profit). It is permitted if the SMA 100 is above the SMA 200 and two conditions are met: the price previously dipped below the SMA 100 during the correction, and it now closes two consecutive bars above the SMA 100. This targets a confirmed bounce within an overall bullish structure.
Reentry 2 (Deep Correction/Momentum Shift): This triggers during a deep correction where all shorter SMAs (100, 50, 25) are below the SMA 200. Reentry occurs when the SMA 25 crosses above the SMA 50, signaling a powerful short-term momentum shift that precedes a larger recovery.
Exit and Take-Profit Logic
Exits are governed by a prioritized system including a fixed Stop Loss and three dynamic Take-Profit stages.
A. Stop Loss (Highest Priority)
The primary risk control is a fixed Stop Loss at -10% below the entry price. This is always the first exit condition checked.
B. Layered Take-Profits (TP)
Profits are secured using a step-wise mechanism that trails the price using the shorter SMAs, but only after specific profit thresholds are met. This ensures that the strategy provides ample room for a strong rally while securing gains as the trend matures.
TP Stage 1: Activated when the price first crosses above the SMA 100. The position is closed if the profit reaches 10% or more and the price closes two consecutive bars below the SMA 100.
TP Stage 2: Activated when the price first crosses above the SMA 50. The position is closed if the profit reaches 20% or more and the price closes two consecutive bars below the SMA 50.
TP Stage 3: Activated when the price first crosses above the SMA 25. The position is closed if the profit reaches 40% or more and the price closes two consecutive bars below the SMA 25.
The exit priority ensures that the tightest active stop is used: Stop Loss takes precedence, followed by TP 3 (the highest profit and tightest trail), then TP 2, and finally TP 1.
Range Oscillator Strategy + Stoch Confirm🔹 Short summary
This is a free, educational long-only strategy built on top of the public “Range Oscillator” by Zeiierman (used under CC BY-NC-SA 4.0), combined with a Stochastic timing filter, an EMA-based exit filter and an optional risk-management layer (SL/TP and R-multiple exits). It is NOT financial advice and it is NOT a magic money machine. It’s a structured framework to study how range-expansion + momentum + trend slope can be combined into one rule-based system, often with intentionally RARE trades.
────────────────────────
0. Legal / risk disclaimer
────────────────────────
• This script is FREE and public. I do not charge any fee for it.
• It is for EDUCATIONAL PURPOSES ONLY.
• It is NOT financial advice and does NOT guarantee profits.
• Backtest results can be very different from live results.
• Markets change over time; past performance is NOT indicative of future performance.
• You are fully responsible for your own trades and risk.
Please DO NOT use this script with money you cannot afford to lose. Always start in a demo / paper trading environment and make sure you understand what the logic does before you risk any capital.
────────────────────────
1. About default settings and risk (very important)
────────────────────────
The script is configured with the following defaults in the `strategy()` declaration:
• `initial_capital = 10000`
→ This is only an EXAMPLE account size.
• `default_qty_type = strategy.percent_of_equity`
• `default_qty_value = 100`
→ This means 100% of equity per trade in the default properties.
→ This is AGGRESSIVE and should be treated as a STRESS TEST of the logic, not as a realistic way to trade.
TradingView’s House Rules recommend risking only a small part of equity per trade (often 1–2%, max 5–10% in most cases). To align with these recommendations and to get more realistic backtest results, I STRONGLY RECOMMEND you to:
1. Open **Strategy Settings → Properties**.
2. Set:
• Order size: **Percent of equity**
• Order size (percent): e.g. **1–2%** per trade
3. Make sure **commission** and **slippage** match your own broker conditions.
• By default this script uses `commission_value = 0.1` (0.1%) and `slippage = 3`, which are reasonable example values for many crypto markets.
If you choose to run the strategy with 100% of equity per trade, please treat it ONLY as a stress-test of the logic. It is NOT a sustainable risk model for live trading.
────────────────────────
2. What this strategy tries to do (conceptual overview)
────────────────────────
This is a LONG-ONLY strategy designed to explore the combination of:
1. **Range Oscillator (Zeiierman-based)**
- Measures how far price has moved away from an adaptive mean.
- Uses an ATR-based range to normalize deviation.
- High positive oscillator values indicate strong price expansion away from the mean in a bullish direction.
2. **Stochastic as a timing filter**
- A classic Stochastic (%K and %D) is used.
- The logic requires %K to be below a user-defined level and then crossing above %D.
- This is intended to catch moments when momentum turns up again, rather than chasing every extreme.
3. **EMA Exit Filter (trend slope)**
- An EMA with configurable length (default 70) is calculated.
- The slope of the EMA is monitored: when the slope turns negative while in a long position, and the filter is enabled, it triggers an exit condition.
- This acts as a trend-protection exit: if the medium-term trend starts to weaken, the strategy exits even if the oscillator has not yet fully reverted.
4. **Optional risk-management layer**
- Percentage-based Stop Loss and Take Profit (SL/TP).
- Risk/Reward (R-multiple) exit based on the distance from entry to SL.
- Implemented as OCO orders that work *on top* of the logical exits.
The goal is not to create a “holy grail” system but to serve as a transparent, configurable framework for studying how these concepts behave together on different markets and timeframes.
────────────────────────
3. Components and how they work together
────────────────────────
(1) Range Oscillator (based on “Range Oscillator (Zeiierman)”)
• The script computes a weighted mean price and then measures how far price deviates from that mean.
• Deviation is normalized by an ATR-based range and expressed as an oscillator.
• When the oscillator is above the **entry threshold** (default 100), it signals a strong move away from the mean in the bullish direction.
• When it later drops below the **exit threshold** (default 30), it can trigger an exit (if enabled).
(2) Stochastic confirmation
• Classic Stochastic (%K and %D) is calculated.
• An entry requires:
- %K to be below a user-defined “Cross Level”, and
- then %K to cross above %D.
• This is a momentum confirmation: the strategy tries to enter when momentum turns up from a pullback rather than at any random point.
(3) EMA Exit Filter
• The EMA length is configurable via `emaLength` (default 70).
• The script monitors the EMA slope: it computes the relative change between the current EMA and the previous EMA.
• If the slope turns negative while the strategy holds a long position and the filter is enabled, it triggers an exit condition.
• This is meant to help protect profits or cut losses when the medium-term trend starts to roll over, even if the oscillator conditions are not (yet) signalling exit.
(4) Risk management (optional)
• Stop Loss (SL) and Take Profit (TP):
- Defined as percentages relative to average entry price.
- Both are disabled by default, but you can enable them in the Inputs.
• Risk/Reward Exit:
- Uses the distance from entry to SL to project a profit target at a configurable R-multiple.
- Also optional and disabled by default.
These exits are implemented as `strategy.exit()` OCO orders and can close trades independently of oscillator/EMA conditions if hit first.
────────────────────────
4. Entry & Exit logic (high level)
────────────────────────
A) Time filter
• You can choose a **Start Year** in the Inputs.
• Only candles between the selected start date and 31 Dec 2069 are used for backtesting (`timeCondition`).
• This prevents accidental use of tiny cherry-picked windows and makes tests more honest.
B) Entry condition (long-only)
A long entry is allowed when ALL the following are true:
1. `timeCondition` is true (inside the backtest window).
2. If `useOscEntry` is true:
- Range Oscillator value must be above `entryLevel`.
3. If `useStochEntry` is true:
- Stochastic condition (`stochCondition`) must be true:
- %K < `crossLevel`, then %K crosses above %D.
If these filters agree, the strategy calls `strategy.entry("Long", strategy.long)`.
C) Exit condition (logical exits)
A position can be closed when:
1. `timeCondition` is true AND a long position is open, AND
2. At least one of the following is true:
- If `useOscExit` is true: Oscillator is below `exitLevel`.
- If `useMagicExit` (EMA Exit Filter) is true: EMA slope is negative (`isDown = true`).
In that case, `strategy.close("Long")` is called.
D) Risk-management exits
While a position is open:
• If SL or TP is enabled:
- `strategy.exit("Long Risk", ...)` places an OCO stop/limit order based on the SL/TP percentages.
• If Risk/Reward exit is enabled:
- `strategy.exit("RR Exit", ...)` places an OCO order using a projected R-multiple (`rrMult`) of the SL distance.
These risk-based exits can trigger before the logical oscillator/EMA exits if price hits those levels.
────────────────────────
5. Recommended backtest configuration (to avoid misleading results)
────────────────────────
To align with TradingView House Rules and avoid misleading backtests:
1. **Initial capital**
- 10 000 (or any value you personally want to work with).
2. **Order size**
- Type: **Percent of equity**
- Size: **1–2%** per trade is a reasonable starting point.
- Avoid risking more than 5–10% per trade if you want results that could be sustainable in practice.
3. **Commission & slippage**
- Commission: around 0.1% if that matches your broker.
- Slippage: a few ticks (e.g. 3) to account for real fills.
4. **Timeframe & markets**
- Volatile symbols (e.g. crypto like BTCUSDT, or major indices).
- Timeframes: 1H / 4H / **1D (Daily)** are typical starting points.
- I strongly recommend trying the strategy on **different timeframes**, for example 1D, to see how the behaviour changes between intraday and higher timeframes.
5. **No “caution warning”**
- Make sure your chosen symbol + timeframe + settings do not trigger TradingView’s caution messages.
- If you see warnings (e.g. “too few trades”), adjust timeframe/symbol or the backtest period.
────────────────────────
5a. About low trade count and rare signals
────────────────────────
This strategy is intentionally designed to trade RARELY:
• It is **long-only**.
• It uses strict filters (Range Oscillator threshold + Stochastic confirmation + optional EMA Exit Filter).
• On higher timeframes (especially **1D / Daily**) this can result in a **low total number of trades**, sometimes WELL BELOW 100 trades over the whole backtest.
TradingView’s House Rules mention 100+ trades as a guideline for more robust statistics. In this specific case:
• The **low trade count is a conscious design choice**, not an attempt to cherry-pick a tiny, ultra-profitable window.
• The goal is to study a **small number of high-conviction long entries** on higher timeframes, not to generate frequent intraday signals.
• Because of the low trade count, results should NOT be interpreted as statistically strong or “proven” – they are only one sample of how this logic would have behaved on past data.
Please keep this in mind when you look at the equity curve and performance metrics. A beautiful curve with only a handful of trades is still just a small sample.
────────────────────────
6. How to use this strategy (step-by-step)
────────────────────────
1. Add the script to your chart.
2. Open the **Inputs** tab:
- Set the backtest start year.
- Decide whether to use Oscillator-based entry/exit, Stochastic confirmation, and EMA Exit Filter.
- Optionally enable SL, TP, and Risk/Reward exits.
3. Open the **Properties** tab:
- Set a realistic account size if you want.
- Set order size to a realistic % of equity (e.g. 1–2%).
- Confirm that commission and slippage are realistic for your broker.
4. Run the backtest:
- Look at Net Profit, Max Drawdown, number of trades, and equity curve.
- Remember that a low trade count means the statistics are not very strong.
5. Experiment:
- Tweak thresholds (`entryLevel`, `exitLevel`), Stochastic settings, EMA length, and risk params.
- See how the metrics and trade frequency change.
6. Forward-test:
- Before using any idea in live trading, forward-test on a demo account and observe behaviour in real time.
────────────────────────
7. Originality and usefulness (why this is more than a mashup)
────────────────────────
This script is not intended to be a random visual mashup of indicators. It is designed as a coherent, testable strategy with clear roles for each component:
• Range Oscillator:
- Handles mean vs. range-expansion states via an adaptive, ATR-normalized metric.
• Stochastic:
- Acts as a timing filter to avoid entering purely on extremes and instead waits for momentum to turn.
• EMA Exit Filter:
- Trend-slope-based safety net to exit when the medium-term direction changes against the position.
• Risk module:
- Provides practical, rule-based exits: SL, TP, and R-multiple exit, which are useful for structuring risk even if you modify the core logic.
It aims to give traders a ready-made **framework to study and modify**, not a black box or “signals” product.
────────────────────────
8. Limitations and good practices
────────────────────────
• No single strategy works on all markets or in all regimes.
• This script is long-only; it does not short the market.
• Performance can degrade when market structure changes.
• Overfitting (curve fitting) is a real risk if you endlessly tweak parameters to maximise historical profit.
Good practices:
- Test on multiple symbols and timeframes.
- Focus on stability and drawdown, not only on how high the profit line goes.
- View this as a learning tool and a basis for your own research.
────────────────────────
9. Licensing and credits
────────────────────────
• Core oscillator idea & base code:
- “Range Oscillator (Zeiierman)”
- © Zeiierman, licensed under CC BY-NC-SA 4.0.
• Strategy logic, Stochastic confirmation, EMA Exit Filter, and risk-management layer:
- Modifications by jokiniemi.
Please respect both the original license and TradingView House Rules if you fork or republish any part of this script.
────────────────────────
10. No payments / no vendor pitch
────────────────────────
• This script is completely FREE to use on TradingView.
• There is no paid subscription, no external payment link, and no private signals group attached to it.
• If you have questions, please use TradingView’s comment system or private messages instead of expecting financial advice.
Use this script as a tool to learn, experiment, and build your own understanding of markets.
────────────────────────
11. Example backtest settings used in screenshots
────────────────────────
To avoid any confusion about how the results shown in screenshots were produced, here is one concrete example configuration:
• Symbol: BTCUSDT (or similar major BTC pair)
• Timeframe: 1D (Daily)
• Backtest period: from 2018 to the most recent data
• Initial capital: 10 000
• Order size type: Percent of equity
• Order size: 2% per trade
• Commission: 0.1%
• Slippage: 3 ticks
• Risk settings: Stop Loss and Take Profit disabled by default, Risk/Reward exit disabled by default
• Filters: Range Oscillator entry/exit enabled, Stochastic confirmation enabled, EMA Exit Filter enabled
If you change any of these settings (symbol, timeframe, risk per trade, commission, slippage, filters, etc.), your results will look different. Please always adapt the configuration to your own risk tolerance, market, and trading style.
Braid Filter StrategyThis strategy is like a sophisticated set of traffic lights and speed limit signs for trading. It only allows a trade when multiple indicators line up to confirm a strong move, giving it its "Braid Filter" name—it weaves together several conditions.
The strategy is set up to use 100% of your account equity (your trading funds) on a trade and does not "pyramid" (it won't add to an existing trade).
1. The Main Trend Check (The Traffic Lights)
The strategy uses three main filters that must agree before it considers a trade.
A. The "Chad Filter" (Direction & Strength)
This is the heart of the strategy, a custom combination of three different Moving AveragesThese averages have fast, medium, and slow settings (3, 7, and 14 periods).
Go Green (Buy Signal): The fastest average is higher than the medium average, AND the three averages are sufficiently separated (not tangled up, which indicates a strong move).
Go Red (Sell Signal): The medium average is higher than the fastest average, AND the three averages are sufficiently separated.
Neutral (Wait): If the averages are tangled or the separation isn't strong enough.
Key Trigger: A primary condition for a signal is when the Chad Filter changes color (e.g., from Red/Grey to Green).
B. The EMA Trend Bars (Secondary Confirmation)
This is a simpler, longer-term filter using a 34-period Exponential Moving Average (EMA). It checks if the current candle's average price is above or below this EMA.
Green Bars: The price is above the 34 EMA (Bullish Trend).
Red Bars: The price is below the 34 EMA (Bearish Trend).
Trades only happen if the signal direction matches the bar color. For a Buy, the bar must be Green. For a Sell, the bar must be Red.
C. ADX/DI Filter (The Speed Limit Sign)
This uses the Average Directional Index (ADX) and Directional Movement Indicators (DI) to check if a trend is actually in motion and getting stronger.
Must-Have Conditions:
The ADX value must be above 20 (meaning there is a trend, not just random movement).
The ADX line must be rising (meaning the trend is accelerating/getting stronger).
The strategy will only trade when the trend is strong and building momentum.
2. The Trading Action (Entry and Exit)
When all three filters (Chad Filter color change, EMA Trend Bar color, and ADX strength/slope) align, the strategy issues a signal, but it doesn't enter immediately.
Entry Strategy (The "Wait-for-Confirmation" Approach):
When a Buy Signal appears, the strategy sets a "Buy Stop" order at the signal candle's closing price.
It then waits for up to 3 candles (Candles Valid for Entry). The price must move up and hit that Buy Stop price within those 3 candles to confirm the move and enter the trade.
A Sell Signal works the same way but uses a "Sell Stop" at the closing price, waiting for the price to drop and hit it.
Risk Management (Stop Loss and Take Profit):
Stop Loss: To manage risk, the strategy finds a recent significant low (for a Buy) or high (for a Sell) over the last 20 candles and places the Stop Loss there. This is a logical place where the current move would be considered "broken" if the price reaches it.
Take Profit: It uses a fixed Risk:Reward Ratio (set to 1.5 by default). This means the potential profit (Take Profit distance) is $1.50 for every $1.00 of risk (Stop Loss distance).
3. Additional Controls
Time Filter: You can choose to only allow trades during specific hours of the day.
Visuals: It shows a small triangle on the chart where the signal happens and colors the background to reflect the Chad Filter's trend (Green/Red/Grey) and the candle bars to show the EMA trend (Lime/Red).
🎯 Summary of the Strategy's Goal
This strategy is designed to capture strong, confirmed momentum moves. It uses a fast, custom indicator ("Chad Filter") to detect the start of a new move, confirms that move with a slower trend filter (34 EMA), and then validates the move's strength with the ADX. By waiting a few candles for the price to hit the entry level, it aims to avoid false signals.
Braid Filter StrategyAnother of TradeIQ's youtube strategies. It looks a little messy but it combines all the indicators into one so there are no extra panes. This strategy is like a sophisticated set of traffic lights and speed limit signs for trading. It only allows a trade when multiple indicators line up to confirm a strong move, giving it its "Braid Filter" name—it weaves together several conditions.
The strategy is set up to use 100% of your account equity (your trading funds) on a trade and does not "pyramid" (it won't add to an existing trade).
1. The Main Trend Check (The Traffic Lights)
The strategy uses three main filters that must agree before it considers a trade.
A. The "Braid Filter" (Direction & Strength)
This is the heart of the strategy, a custom combination of three different Moving Averages
These averages have fast, medium, and slow settings (3, 7, and 14 periods).
Go Green (Buy Signal): The fastest average is higher than the medium average, AND the three averages are sufficiently separated (not tangled up, which indicates a strong move).
Go Red (Sell Signal): The medium average is higher than the fastest average, AND the three averages are sufficiently separated.
Neutral (Wait): If the averages are tangled or the separation isn't strong enough.
Key Trigger: A primary condition for a signal is when the Chad Filter changes color (e.g., from Red/Grey to Green).
B. The EMA Trend Bars (Secondary Confirmation)
This is a simpler, longer-term filter using a 34-period Exponential Moving Average (EMA). It checks if the current candle's average price is above or below this EMA.
Green Bars: The price is above the 34 EMA (Bullish Trend).
Red Bars: The price is below the 34 EMA (Bearish Trend).
Trades only happen if the signal direction matches the bar color. For a Buy, the bar must be Green. For a Sell, the bar must be Red.
C. ADX/DI Filter (The Speed Limit Sign)
This uses the Average Directional Index (ADX) and Directional Movement Indicators (DI) to check if a trend is actually in motion and getting stronger.
Must-Have Conditions:
The ADX value must be above 20 (meaning there is a trend, not just random movement).
The ADX line must be rising (meaning the trend is accelerating/getting stronger).
The strategy will only trade when the trend is strong and building momentum.
2. The Trading Action (Entry and Exit)
When all three filters (Chad Filter color change, EMA Trend Bar color, and ADX strength/slope) align, the strategy issues a signal, but it doesn't enter immediately.
Entry Strategy (The "Wait-for-Confirmation" Approach):
When a Buy Signal appears, the strategy sets a "Buy Stop" order at the signal candle's closing price.
It then waits for up to 3 candles (Candles Valid for Entry). The price must move up and hit that Buy Stop price within those 3 candles to confirm the move and enter the trade.
A Sell Signal works the same way but uses a "Sell Stop" at the closing price, waiting for the price to drop and hit it.
Risk Management (Stop Loss and Take Profit):
Stop Loss: To manage risk, the strategy finds a recent significant low (for a Buy) or high (for a Sell) over the last 20 candles and places the Stop Loss there. This is a logical place where the current move would be considered "broken" if the price reaches it.
Take Profit: It uses a fixed Risk:Reward Ratio (set to 1.5 by default). This means the potential profit (Take Profit distance) is $1.50 for every $1.00 of risk (Stop Loss distance).
3. Additional Controls
Time Filter: You can choose to only allow trades during specific hours of the day.
Visuals: It shows a small triangle on the chart where the signal happens and colors the background to reflect the Chad Filter's trend (Green/Red/Grey) and the candle bars to show the EMA trend (Lime/Red).
🎯 Summary of the Strategy's Goal
This strategy is designed to capture strong, confirmed momentum moves. It uses a fast, custom indicator ("Chad Filter") to detect the start of a new move, confirms that move with a slower trend filter (34 EMA), and then validates the move's strength with the ADX. By waiting a few candles for the price to hit the entry level, it aims to avoid false signals.
Weekly Momentum Divergence StrategyWMDS: Weekly Momentum Divergence Strategy
WMDS (Weekly Momentum Divergence Strategy) is an advanced trading system designed to identify market trends based on the flawless convergence of **high-timeframe trend strength** and **short-term momentum**, moving beyond superficial indicators. Unlike conventional systems, WMDS allows the trader to filter out chart noise and focus solely on the most reliable trend transitions, which have been **quantitatively validated**.
----------------------------------------------------
I. CORE STRUCTURE AND KEY DIFFERENTIATORS
----------------------------------------------------
WMDS fundamentally differs from other systems by avoiding the simplistic 'single indicator' or 'basic crossover' approach. The strategy validates the robustness of every signal using a **5-Factor Scorecard System** based on 100 points before initiating a position.
A. Multitimeframe Convergence Filter
1. Weekly Trend Focus: The system utilizes price averages derived from weekly data to establish the core trend. This process filters out noise from lower timeframes, minimizing the risk of false signals (whipsaws) caused by momentary price fluctuations.
2. Five-Criteria Scoring: The reliability of a trade signal depends on the cumulative score of five distinct criteria: Momentum Strength, Directional Confluence, Trend Core, Short-Term Convergence, and Channel Oscillator Bias.
B. How WMDS Operates (Mechanism)
WMDS analyzes the five criteria upon the close of every bar and calculates an **Entry Score**. When the calculated Score exceeds the user-defined **Minimum Entry Threshold (Default: 70 Points)**, the system automatically generates and executes a Long or Short position.
C. Distinctions from Other Systems (In-Depth Comparison)
* **Adaptive Risk Management:** Unlike bots that use rigid percentage-based stop losses, WMDS's ATR-based SL automatically expands or contracts according to market volatility. This ensures the risk of every position is adapted to current market conditions, performing better across various market regimes (ranging/trending).
* **Advanced Filtering:** Where simple Moving Average (MA) crossover strategies can rapidly change trend direction, WMDS's Weekly DMI and Momentum filters mandate that entries are only made on durable and established trends.
* **Clean and Minimalist Visuals:** The chart only displays two average lines and the colored fill between them. This eliminates unnecessary arrows, text, and complex lines, significantly reducing the **cognitive load** on the investor.
----------------------------------------------------
II. COMPREHENSIVE USAGE AND SETTING DETAILS
----------------------------------------------------
A. Position Management and Exit Rules
| Parameter | Default Value | Purpose and Risk/Reward Relationship |
| **Take Profit Percentage (TP)** | **33%** | A fixed target. More aggressive traders might lower this rate (e.g., 15%) to realize profits faster. |
| **Stop Loss (SL)** | **ATR Multiplier (3.5)** | Risk is set equal to 3.
[Bybit BTCUSD.P] 7Years Backtest Results. 2,609% +Non-Repainting📊 I. Strategy Overview: Trust Backed by Numbers
The ADX Sniper v12 strategy has been rigorously tested over 7 years, from November 14, 2018 to November 8, 2025, spanning every major cycle of the Bitcoin
BTCUSD.P futures market. This strategy successfully balances two often-conflicting goals: maximizing profitability while minimizing volatility, all supported by objective performance data.
This strategy has been validated across all Bitcoin (BTCUSD.P) futures market cycles over a 7-year period.
■ Visual Proof: Bar Replay Simulation
The chart above demonstrates actual entry and exit points captured via TradingView's Bar Replay feature. The green rectangle highlights the core profitable trading zone, showing where the strategy successfully captured sustained uptrends. This visual evidence confirms:
Confirmed buy/sell signals with exact execution prices (marked in red and blue)
No repainting or signal distortion after candle close
Consistent performance across multiple market cycles within the highlighted zone
💰 Core Performance Metrics:
Cumulative Return: 2,609.14% (compounded growth over 7 years)
Maximum Drawdown (MDD): 6.999% (preserving over 93% of capital)
Average Profit/Loss Ratio: 8.003 (industry-leading risk-reward efficiency)
Total Trades: 24 (focused exclusively on high-conviction opportunities)
Sortino Ratio: 11.486 (mathematically proving robustness and stability)
✅ This strategy has been validated across all Bitcoin BTCUSD.P futures market cycles over a 7-year period.
📊 I. 전략 개요: 숫자로 입증된 신뢰
ADX Sniper v12 전략은 2018년 11월 14일부터 2025년 11월 8일까지 약 7년간 비트코인 (BTCUSD.P) 선물 시장의 모든 주요 사이클을 거치며 엄격하게 검증되었습니다. 수익성 극대화와 변동성 최소화라는 상충되는 목표를 동시에 달성한 이 전략의 핵심 성과 지표를 객관적 데이터를 통해 확인하실 수 있습니다.
본 전략은 7년간의 모든 비트코인 (BTCUSD.P) 선물 시장 사이클에서 검증되었습니다.
■ 시각적 증명: 바 리플레이 시뮬레이션
위 차트는 TradingView의 바 리플레이 기능으로 포착된 실제 진입 및 청산 시점을 보여줍니다. 녹색 네모는 핵심 수익 구간을 표시하며, 전략이 지속적인 상승 추세를 성공적으로 포착한 영역을 나타냅니다. 본 시각 자료는 다음을 입증합니다:
정확한 체결 가격이 표기된 확정된 매수/매도 신호 (빨강색과 파랑색으로 표시)
캔들 종가 후 신호 왜곡이나 리페인팅 없음
강조 표시된 구간 내 여러 시장 사이클에 걸친 일관된 성과
💰 핵심 성과 지표:
누적 수익률: 2,609.14% (7년간 복리 성장 입증)
최대 낙폭 (MDD): 6.999% (7년간 자본의 93% 이상 보존)
평균 손익비: 8.003 (업계 최고 수준의 위험-보상 효율성)
총 거래 횟수: 24회 (고확신 기회에만 집중)
소르티노 비율: 11.486 (전략의 견고성과 안정성을 수학적으로 입증)
✅ 본 전략은 7년간의 모든 비트코인 (BTCUSD.P) 선물 시장 사이클에서 검증되었습니다.
🛡️ II. Core Philosophy: Cut Losses Short, Let Profits Run
Why MDD Stays Below 7% in a Volatile Market
The crypto futures market typically experiences daily volatility exceeding 10%, with most strategies enduring drawdowns between 30% and 50%. In stark contrast, this strategy has never exceeded a 7% account loss over seven years. This exceptional low MDD is achieved through deliberate design mechanisms, not luck:
🎯 Entry Filtering: The 'ADX Pop-up Filter' is the core component. It enables the strategy to strictly avoid trading when market conditions indicate major reversals or consolidation phases, thereby minimizing exposure to high-risk zones.
🏛️ Capital Preservation Priority: The strategy prioritizes investor psychological stability and capital preservation over pursuing maximum potential returns.
The Power of an 8.003 Profit Factor
The Profit Factor measures the ratio of total profitable trades to total losing trades. It's the most critical metric for assessing risk-adjusted returns.
A Profit Factor of 8.003 means that for every dollar lost, the strategy earns an average of eight dollars. This demonstrates the efficiency of a true trend-following strategy:
Cutting losses quickly (averaging $177,419 USD loss per trade)
Riding winners for maximum extension (averaging $1,419,920 USD profit per trade)
🛡️ II. 핵심 철학: 손실은 빠르게 자르고, 수익은 끝까지
암호화폐 시장에서 MDD <7%의 의미
암호화폐 선물 시장은 일일 변동성이 10%를 초과하는 경우가 빈번하며, 일반적인 전략들은 30~50%의 MDD를 겪습니다. 이와 극명한 대조로, 본 전략은 7년간 단 한 번도 7%를 초과하는 계좌 손실을 기록하지 않았습니다. 이렇게 극도로 낮은 MDD는 운이 아닌 체계적인 메커니즘을 통해 달성되었습니다:
🎯 진입 필터링: 'ADX 팝업 필터'가 핵심 구성 요소로, 시장 상황이 주요 반전이나 횡보를 나타낼 때 거래를 엄격히 회피하여 고위험 구간 노출을 최소화합니다.
🏛️ 자본 보존 우선: 본 전략은 최대 잠재 손실을 감수하기보다 투자자의 심리적 안정성과 자본 보존을 우선시하도록 설계되었습니다.
손익비 8.003의 힘
손익비는 '총 수익 거래'와 '총 손실 거래'의 비율로, 위험 조정 수익을 측정하는 핵심 지표입니다.
8.003이라는 값은 1달러를 잃을 때마다 평균적으로 8달러 이상을 벌어들이는 구조를 의미합니다. 이는 진정한 추세 추종 전략의 최대 효율성을 보여줍니다:
손실은 빠르게 자르고 ($177,419 USD 평균 손실)
수익은 최대한 연장합니다 ($1,419,920 USD 평균 수익)
🎯 III. Strategy Reliability and Structural Edge
The Secret of 24 Trades in 7 Years
Only 24 trades over 7 years signifies that this strategy ignores 99% of market volatility and targets only the 1% of 'most certain buying cycles'. This approach eliminates the drag from excessive trading:
❌ No commission bleed
❌ No slippage erosion
❌ No psychological wear from overtrading
📈 Long-Term Trend Following: The strategy analyzes Bitcoin's long-term price cycles to capture the onset of massive trends while remaining undisturbed by short-term market noise.
Non-Repainting Structure: Alignment of Reality and Simulation
🎬 Non-Repainting Proof Video Available
※↑ "If you wish, I can also show you a video as evidence of the non-repainting throughout the 7 years."
✅ Real-Time Trading Reliability: This strategy is built with a non-repainting structure, generating buy/sell signals only after each candle's closing price is confirmed.
✅ Preventing Data Exaggeration: This design ensures that backtest results do not 'repaint' or distort past performance, guaranteeing high correlation between simulated results and actual live trading environments.
✅ Live Trading Advantage: While simulations use closing prices, live trading may allow entry at more favorable prices before candle close, potentially yielding even better execution than backtest results.
🎯 III. 전략의 신뢰성과 구조적 우위
7년간 24회 거래의 비밀
7년간 단 24회의 거래는 시장 변동성의 99%를 무시하고 오직 1%의 '가장 확실한 매수 사이클'만을 타겟으로 한다는 것을 의미합니다. 이는 과도한 거래로 인한 문제를 근본적으로 제거합니다:
❌ 수수료 소모 없음
❌ 슬리피지 침식 없음
❌ 과도한 트레이딩으로 인한 심리적 소모 없음
📈 장기 추세 추종: 비트코인 가격 역사를 지배하는 장기 사이클 분석을 활용하여, 단기 시장 노이즈에 흔들리지 않고 대규모 추세의 시작점을 포착하는 데 집중합니다.
논-리페인팅 구조: 현실과 시뮬레이션의 일치
🎬 논-리페인팅 증명 영상 제공 가능
※↑ "원하신다면 7년간 리페인팅이 없음을 증명하는 영상도 보여드릴 수 있습니다."
✅ 실시간 거래 신뢰성: 본 전략은 논-리페인팅 구조로 구축되어, 캔들의 종가가 확정된 후에만 매수/매도 신호를 생성합니다.
✅ 데이터 과장 방지: 이러한 설계는 백테스트 결과가 과거 성과를 '리페인팅'하거나 과장하지 않도록 보장하며, 시뮬레이션 결과와 실제 라이브 거래 환경 간의 높은 상관관계를 보장합니다.
✅ 라이브 실행 우위 가능성: 시뮬레이션은 종가 기준이지만, 라이브 운영 시 캔들이 마감되기 전 더 유리한 가격에 진입할 수 있어 시뮬레이션 결과보다 더 나은 실행 성과를 얻을 가능성이 있습니다.
📈 IV. Performance Summary (November 14, 2018 - November 8, 2025)
| Metric | Value || Metric | Value |
|--------|-------|
| Initial Capital | $1,000,000 |
| Net Profit | +$26,091,383.74 |
| Cumulative Return | +2,609.14% |
| Maximum Drawdown | -6.999% |
| Total Trades | 24 |
| Winning Trades | 19 (79.17%) |
| Losing Trades | 5 (20.83%) |
| Avg Winning Trade | +$1,419,920.16 |
| Avg Losing Trade | -$177,419.86 |
| Profit Factor | 8.003 |
| Sortino Ratio | 11.486 |
| Win/Loss Ratio | 8.003 |
⚙️ Default Settings:
Slippage: 0 ticks
Commission: 0.333% (Bybit standard)
📈 IV. 성과 지표 요약 (2018년 11월 14일 ~ 2025년 11월 8일)
|| 지표 | 값 |
|--------|-------|
| 초기 자본 | $1,000,000 |
| 순이익 | +$26,091,383.74 |
| 누적 수익률 | +2,609.14% |
| 최대 낙폭 | -6.999% |
| 총 거래 횟수 | 24 |
| 수익 거래 | 19 (79.17%) |
| 손실 거래 | 5 (20.83%) |
| 평균 수익 거래 | +$1,419,920.16 |
| 평균 손실 거래 | -$177,419.86 |
| 손익비 | 8.003 |
| 소르티노 비율 | 11.486 |
| 평균 손익 비율 | 8.003 |
⚙️ 기본 설정:
슬리피지: 0틱 (기본값)
수수료: 0.333% (Bybit 표준)
👥 V. Who Is This Strategy For?
✅ Long-term Bitcoin investors seeking stable, low-drawdown returns
✅ Traders tired of overtrading who prefer surgical, sniper-style precision entries
✅ Investors seeking psychological stability by avoiding large account swings
✅ Data-driven decision makers who value proven performance over marketing claims
👥 V. 이 전략은 누구를 위한 것인가요?
✅ 안정적이고 낮은 낙폭의 수익을 추구하는 장기 비트코인 투자자
✅ 과도한 매매에 지친 트레이더로 저격수 스타일의 정밀한 진입을 선호하는 분
✅ 큰 계좌 변동을 피하여 심리적 안정성을 추구하는 투자자
✅ 주장보다 검증된 객관적 성과를 중시하는 데이터 기반 의사 결정자
🔒 VI. Access & Disclaimer
🔐 Access Type: Invite-Only (Protected Source Code)
💬 How to Get Access: Send a private message or leave a comment below
⚠️ Important Disclaimer:
Past performance does not guarantee future results. Cryptocurrency and futures trading involve substantial risk of loss. This strategy is provided for educational and informational purposes only. Users should conduct their own research and consult with a financial advisor before making investment decisions. The author is not responsible for any financial losses incurred from using this strategy.
🔒 VI. 접근 방법 및 면책사항
🔐 접근 유형: 초대 전용 (소스코드 보호)
💬 접근 방법: 비공개 메시지 또는 아래 댓글 남기기
⚠️ 중요 면책사항:
과거 성과가 미래 결과를 보장하지 않습니다. 암호화폐 및 선물 거래는 상당한 손실 위험을 수반합니다. 본 전략은 교육 및 정보 제공 목적으로만 제공됩니다. 사용자는 투자 결정을 내리기 전 자체 조사를 수행하고 재무 자문가와 상담해야 합니다. 저자는 본 전략 사용으로 인한 재정적 손실에 대해 책임지지 않습니다.
🏷️ VII. Tags
Bitcoin |Bitcoin | BTCUSD | BTCUSD.P | Bybit | DailyChart | LongTerm | TrendFollowing | ADX | NonRepainting | Strategy | BacktestProven | SevenYears | LowDrawdown | HighProfitFactor | StableReturns | CapitalPreservation | Ichimoku | DMI | SuperTrend | TechnicalAnalysis | Volatility | RiskManagement | AutoTrading | Futures | PerpetualFutures | AlgorithmicTrading | SystematicTrading | DataDriven | InviteOnly | ProtectedScript | SnipperTrading | HighConviction | MDD | SortinoRatio
🏷️ VII. 태그
비트코인 |비트코인 | BTCUSD | BTCUSD.P | 바이비트 | 일봉 | 장기투자 | 추세추종 | ADX | 논리페인팅 | 전략 | 백테스트검증 | 7년검증 | 저낙폭 | 고손익비 | 안정수익 | 자본보존 | 일목균형표 | DMI | 슈퍼트렌드 | 기술적분석 | 변동성 | 위험관리 | 자동매매 | 선물 | 무기한선물 | 알고리즘트레이딩 | 시스템트레이딩 | 데이터기반 | 초대전용 | 보호스크립트 | 저격수트레이딩 | 고확신 | MDD | 소르티노비율
📌 Note: This strategy is designed exclusively for Bybit BTCUSD.P perpetual futures on the 1-day (daily) timeframe. Performance may vary significantly on other symbols or timeframes.
📌 참고: 본 전략은 Bybit BTCUSD.P 무기한 선물 계약의 1일봉(Daily) 타임프레임에 전용으로 설계되었습니다. 다른 심볼이나 타임프레임에서는 성과가 크게 달라질 수 있습니다.






















