AUTOMATED STRATEGY
Automated breakout detection and execution
A sophisticated strategy that identifies high-probability breakout setups and manages the trade lifecycle automatically.
Built on volatility compression and volume expansion principles.
Strategy cadence
Real-time execution • Risk managed
- Automated entry & exit
- Dynamic stop-loss
- Volatility adjusted sizing
How it works
The strategy monitors price action for consolidation patterns and triggers when a valid breakout occurs with volume confirmation.
- 1
Pattern Recognition
Identifies consolidation zones and key support/resistance levels.
- 2
Breakout Validation
Confirms breakouts using volume and momentum filters to avoid false signals.
- 3
Trade Management
Automatically sets stop-losses and take-profit targets based on market volatility.
It waits for the market to get quiet (consolidation), then jumps in when it starts moving fast (breakout).
Signal decoding
🟢 Long Entry
Breakout above resistance with volume.
🔴 Short Entry
Breakdown below support with volume.
⚪ Exit
Stop-loss or take-profit hit.
Interpreting the strategy
This is an automated strategy. The signals on the chart indicate where the algorithm would enter and exit trades. Use these signals to automate your trading or as a confirmation for your own analysis.
What you see on the chart
- Entry Arrows — Green for long, Red for short
- Stop Loss Lines — Dynamic levels for risk management
- Take Profit Levels — Projected targets
Why it matters
Trading breakouts manually is stressful and prone to emotional errors. This strategy automates the process, ensuring disciplined execution.
- Eliminates emotional decision making
- Captures explosive moves early
- Protects capital with strict risk management
Built for serious traders
- Algorithmic precision
- 24/7 Market monitoring
- Institutional-grade logic
- Seamless TrendSpider integration
How to use it
- 1Step 1: Add to TrendSpider chart
- 2Step 2: Configure alerts for automation
- 3Step 3: Let the strategy run
Deploy inside TrendSpider
Instructions for integrating this strategy into TrendSpider's platform.
- Open TrendSpider, create a new JavaScript strategy, and clear the default template.
- Paste the snippet, swap
YOUR_API_KEY_HEREfor your key, then click Save. - Backtest or deploy as a trading bot.
// === Setup ===
describe_indicator('QN Breakout Strategy', 'overlay', {
shortName: 'QN_BREAKOUT_STRATEGY',
});
// === Helpers ===
const pad = (n) => String(n).padStart(2, '0');
const unixToIso = (u) => { const t = time_of(u); return `${t.year}-${pad(t.month+1)}-${pad(t.dayOfMonth)}T${pad(t.hours)}:${pad(t.minutes)}:${pad(t.seconds)}Z`; };
// === Settings ===
const API_KEY = 'YOUR_API_KEY_HERE';
const LIMIT = 10000;
// === Fetch ===
const headers = { 'Authorization': `Bearer ${API_KEY}` };
const url = `https://ts.marbell.com/qn-breakout-strategy?limit=${LIMIT}&expand=false`;
const resp = await request.http(url, 300, headers);
assert(!resp.error, `Error fetching QN Breakout Strategy: ${resp.error}`);
// === Process & Plot ===
// TODO: Add your strategy-specific plotting logic here
Automate your breakout trading
QN Breakout Strategy helps you catch big moves without staring at the screen all day.
Disclaimer
The Signals provided by Marbell AG are for informational and educational purposes only and are not investment advice or a recommendation to buy or sell any financial instrument. The Signals are non-personalised and do not consider your objectives, financial situation, or risk tolerance. Past or simulated performance is not indicative of future results. Marbell AG does not execute trades or provide portfolio management or copy-trading services.