J12Matic Builder by galgoomA flexible Renko/tick strategy that lets you choose between two entry engines (Multi-Source 3-way or QBand+Moneyball), with a unified trailing/TP exit engine, NY-time trading windows with auto-flatten, daily profit/loss and trade-count limits (HALT mode), and clean webhook routing using {{strategy.order.alert_message}}.
Highlights
Two entry engines
Multi-Source (3): up to three long/short sources with Single / Dual / Triple logic and optional lookback.
QBand + Moneyball: Gate → Trigger workflow with timing windows, OR/AND trigger modes, per-window caps, optional same-bar fire.
Unified exit engine: Trailing by Bricks or Ticks, plus optional static TP/SL.
Session control (NY time): Evening / Overnight / NY Session windows; auto-flatten at end of any enabled window.
Day controls: Profit/Loss (USD) and Trade-count limits. When hit, strategy HALTS new entries, shows an on-chart label/background.
Alert routing designed for webhooks: Every order sets alert_message= so you can run alerts with:
Condition: this strategy
Notify on: Order fills only
Message: {{strategy.order.alert_message}}
Default JSONs or Custom payloads: If a Custom field is blank, a sensible default JSON is sent. Fill a field to override.
How to set up alerts (the 15-second version)
Create a TradingView alert with this strategy as Condition.
Notify on: Order fills only.
Message: {{strategy.order.alert_message}} (exactly).
If you want your own payloads, paste them into Inputs → 08) Custom Alert Payloads.
Leave blank → the strategy sends a default JSON.
Fill in → your text is sent as-is.
Note: Anything you type into the alert dialog’s Message box is ignored except the {{strategy.order.alert_message}} token, which forwards the payload supplied by the strategy at order time.
Publishing notes / best practices
Renko users: Make sure “Renko Brick Size” in Inputs matches your chart’s brick size exactly.
Ticks vs Bricks: Exit distances switch instantly when you toggle Exit Units.
Same-bar flips: If enabled, a new opposite signal will first close the open trade (with its exit payload), then enter the new side.
HALT mode: When day profit/loss limit or trade-count limit triggers, new entries are blocked for the rest of the session day. You’ll see a label and a soft background tint.
Session end flatten: Auto-closes positions at window ends; these exits use the “End of Session Window Exit” payload.
Bar magnifier: Strategy is configured for on-close execution; you can enable Bar Magnifier in Properties if needed.
Default JSONs (used when a Custom field is empty)
Open: {"event":"open","side":"long|short","symbol":""}
Close: {"event":"close","side":"long|short|flat","reason":"tp|sl|flip|session|limit_profit|limit_loss","symbol":""}
You can paste any text/JSON into the Custom fields; it will be forwarded as-is when that event occurs.
Input sections — user guide
01) Entries & Signals
Entry Logic: Choose Multi-Source (3) or QBand + Moneyball (pick one).
Enable Long/Short Signals: Master on/off switches for entering long/short.
Flip on opposite signal: If enabled, a new opposite signal will close the current position first, then open the other side.
Signal Logic (Multi-Source):
Single: any 1 of the 3 sources > 0
Dual: Source1 AND Source2 > 0
Triple (default): 1 AND 2 AND 3 > 0
Long/Short Signal Sources 1–3: Provide up to three series (often indicators). A positive value (> 0) is treated as a “pulse”.
Use Lookback: Keeps a source “true” for N bars after it pulses (helps catch late triggers).
Long/Short Lookback (bars): How many bars to remember that pulse.
01b) QBands + Moneyball (Gate -> Trigger)
Allow same-bar Gate->Trigger: If ON, a trigger can fire on the same bar as the gate pulse.
Trigger must fire within N bars after Gate: Size of the gate window (in bars).
Max signals per window (0 = unlimited): Cap the number of entries allowed while a gate window is open.
Buy/Sell Source 1 – Gate: Gate pulse sources that open the buy/sell window (often a regime/zone, e.g., QBands bull/bear).
Trigger Pulse Mode (Buy/Sell): How to detect a trigger pulse from the trigger sources (Change / Appear / Rise>0 / Fall<0).
Trigger A/B sources + Extend Bars: Primary/secondary triggers plus optional extension to persist their pulse for N bars.
Trigger Mode: Pick S2 only, S3 only, S2 OR S3, or S2 AND S3. AND mode remembers both pulses inside the window before firing.
02) Exit Units (Trailing/TP)
Exit Units: Choose Bricks (Renko) or Ticks. All distances below switch accordingly.
03) Tick-based Trailing / Stops (active when Exit Units = Ticks)
Initial SL (ticks): Starting stop distance from entry.
Start Trailing After (ticks): Start trailing once price moves this far in your favor.
Trailing Distance (ticks): Offset of the trailing stop from peak/trough once trailing begins.
Take Profit (ticks): Optional static TP distance.
Stop Loss (ticks): Optional static SL distance (overrides trailing if enabled).
04) Brick-based Trailing / Stops (active when Exit Units = Bricks)
Renko Brick Size: Must match your chart’s brick size.
Initial SL / Start Trailing After / Trailing Distance (bricks): Same definitions as tick mode, measured in bricks.
Take Profit / Stop Loss (bricks): Optional static distances.
05) TP / SL Switch
Enable Static Take Profit: If ON, closes the trade at the fixed TP distance.
Enable Static Stop Loss (Overrides Trailing): If ON, trailing is disabled and a fixed SL is used.
06) Trading Windows (NY time)
Use Trading Windows: Master toggle for all windows.
Evening / Overnight / NY Session: Define each session in NY time.
Flatten at End of : Auto-close any open position when a window ends (sends the Session Exit payload).
07) Day Controls & Limits
Enable Profit Limits / Profit Limit (Dollars): When daily net PnL ≥ limit → auto-flatten and HALT.
Enable Loss Limits / Loss Limit (Dollars): When daily net PnL ≤ −limit → auto-flatten and HALT.
Enable Trade Count Limits / Number of Trades Allowed: After N entries, HALT new entries (does not auto-flatten).
On-chart HUD: A label and soft background tint appear when HALTED; a compact status table shows Day PnL, trade count, and mode.
08) Custom Alert Payloads (used as strategy.order.alert_message)
Long/Short Entry: Payload sent on entries (if blank, a default open JSON is sent).
Regular Long/Short Exit: Payload sent on closes from SL/TP/flip (if blank, a default close JSON is sent).
End of Session Window Exit: Payload sent when any enabled window ends and positions are flattened.
Profit/Loss/Trade Limit Close: Payload sent when daily profit/loss limit causes auto-flatten.
Tip: Any tokens you include here are forwarded “as is”. If your downstream expects variables, do the substitution on the receiver side.
Known limitations
No bracket orders from Pine: This strategy doesn’t create OCO/attached brackets on the broker; it simulates exits with strategy logic and forwards your payloads for external automation.
alert_message is per order only: Alerts fire on order events. General status pings aren’t sent unless you wire a separate indicator/alert.
Renko specifics: Backtests on synthetic Renko can differ from live execution. Always forward-test on your instrument and settings.
Quick checklist before you publish
✅ Brick size in Inputs matches your Renko chart
✅ Exit Units set to Bricks or Ticks as you intend
✅ Day limits/Windows toggled as you want
✅ Custom payloads filled (or leave blank to use defaults)
✅ Your alert uses Order fills only + {{strategy.order.alert_message}}
圖表形態
Auto Fibonacci Extension Pro Strategy – Smart Risk/Reward✨ Auto Fibonacci Extension Pro Strategy is a next-generation trading system that combines automatic Fibonacci extensions with professional risk management and backtesting features.
This strategy is designed for traders who want to trade with precision using Fibonacci levels without manually drawing them every time.
🔑 Key Features:
✅ Automatic Fibonacci Extension Mapping (0.618, 1.0, 1.272, 1.618, 2.618).
✅ Pro Entry & Exit Signals at golden zones.
✅ Dynamic Position Sizing based on risk percentage.
✅ Stop Loss & Take Profit levels with custom Risk/Reward ratio.
✅ Long & Short Trade Signals with chart markers.
✅ Backtesting Ready – optimize settings for any market (Forex, Crypto, Stocks, Indices).
✅ Clean Visuals with auto-plotted fib levels.
📊 How It Works:
Detects swing highs & lows automatically.
Draws Fibonacci extensions forward.
Generates buy/sell signals when price confirms at fib levels.
Places SL at last swing and TP at fib extension target.
Applies risk-based position sizing to protect your account.
⚡ Best Use Cases:
Works on all timeframes (scalping to swing trading).
Effective for Forex, Crypto, Stocks & Indices.
Use alongside trend filters (MA, RSI, Volume) for extra confirmation.
📢 Pro Tip: Backtest on multiple markets & timeframes, then fine-tune your Swing Length and Risk/Reward Ratio for maximum performance.
🔥 Shared Success, Trusted Growth – This strategy is built for traders who want to combine discipline, automation, and professional risk management into one powerful trading tool.
MuLegend's Break & Retest StrategyThis strategy was produced to help traders who trade NQ: win! try it out on a demo, see how you like and happy trading!! Works well if you are a break & retest trader!!!
MuMu
@atltime2shine on IG
A1TradeHub Toolkits [1.0]A1TradeHub Toolkits — Quick Guide
⏱️ Timeframe: 5M (SPY/QQQ/IWM)
📐 Core EMAs: 13 / 48 / 200
🟢 LONG signals
✅ Confirm 2+ supports: Orange Zone, EMA200, PDH/PDL, PWH/PWL
✅ Get 3+ patterns: Bull Flag, Trendline Support, Double Bottoms, Support Pivots, White candles uptrend
▶️ Entry: Break & retest (PMH/PDH or trendline) with Oscillator → bullish
🎯 Targets: Next resistance zones; trail 13 EMA
💾 Scale out: +40–60%, let runners push to key level
🔴 SHORT signals
✅ Confirm 2+ resistances: Orange Zone, EMA200, PDH/PDL, PWH/PWL
✅ Get 3+ patterns: Bear Flag, Trendline Resistance, Double Tops, Resistance Pivots, White candles downtrend
▶️ Entry: Break & retest (PML/PDL or trendline) with Oscillator → bearish
🎯 Targets: Next support zones; trail 13 EMA
💾 Scale out: +40–60%, ride to next demand
🟧 Support Area (buy bias)
Use PWL / PDL / EMA48 or 200 / Orange Zone
Bounce = calls; break→retest = puts
🟥 Resistance Area (sell bias)
Use PWH / PDH / EMA48 or 200 / Supply zones
Reject = puts; break→retest = calls
📊 And more indicator comming...soon
Armax LiteArmax Lite is the public edition of ArmaX—designed for 4H bounce / higher-low entries with multi-filter quality checks, ATR-based SL and 3-step TP planning.
Key points:
• Timeframe: 4H (multi-timeframe checks included)
• Entry types: Support Bounce & Higher Low
• Risk: ATR-based SL, 3 targets (TP1/TP2/TP3)
• Quality filters: trend/EMA, momentum (RSI), initial RR, volume/OBV, ATR% band, wick control, resistance headroom
• Public cap: MAX 1 signal per week (by design)
Notes:
• Works on crypto/forex/stocks (volume required for some filters)
• Tune parameters responsibly; backtest before use
• Educational only, not financial advice
For the full, uncapped version with extra features, contact about **ArmaX Elite (private)**.
𝐍𝐄𝐔𝐑𝐀𝐋 𝐍𝐄𝐓𝐖𝐎𝐑𝐊神经网络交易系统全网都在疯狂寻找的神经网络交易系统
策略通过整合多种技术指标(如EMA、Supertrend、HMA、PSAR、RSI、MACD、WaveTrend、Stochastic、Bollinger Bands、ATR、RVI、OBV、CMF、VWAP、K线形态等),生成综合交易信号。策略采用评分系统,根据各指标的权重累积分数,触发强/弱多头和空头信号,并结合趋势过滤(可选)和止损机制进行交易管理。
The neural network trading system that the entire network is frantically searching for
The strategy integrates multiple technical indicators (such as EMA、Supertrend、HMA、PSAR、RSI、MACD、WaveTrend、Stochastic、Bollinger Bands、ATR、RVI、OBV、CMF、VWAP、K Generate comprehensive trading signals based on line shapes, etc. The strategy adopts a scoring system, accumulates scores based on the weights of each indicator, triggers strong/weak long and short signals, and combines trend filtering (optional) and stop loss mechanism for trading management.
fero.Laplace + MA TP/SL Strategy (10m)//@version=5Labne is a good technique for generating logic or theory.
Optimised XAU/USD (Gold, IC Markets, 30m)The Illyad Strategy 1.0 optimised for XAU/USD (Gold) on the 30-minute timeframe (IC Markets feed).
📊 Backtest Results (Jan 2024 – Aug 2025):
✅ Total P&L: +30,143.28 USD (+30.14%)
📉 Max Drawdown: 3.60% (3,945.84 USD)
🔁 Total Trades: 57
📈 Win Rate: 42.11% (24/57 trades)
⚖️ Profit Factor: 1.91
This setup shows steady performance and low drawdown on Gold — ideal for traders wanting to capture volatility while maintaining consistency.
🔧 Optimisation Notes:
Works best on the 30m timeframe.
Each instrument (forex, indices, commodities, stocks) has unique behaviour.
To maximise results, always optimise the parameters per symbol — e.g., Gold requires a different configuration than GBP/USD or NASDAQ.
💡 Best Use Cases:
Prop firm challenges & scaling funded accounts.
Long-term compounding with low risk.
Automated execution via TradingView alerts → MT5 for hands-free trading.
⚠️ Disclaimer:
This strategy is for educational purposes only. Past results do not guarantee future performance. Always backtest and forward-test before going live.
📲 Next Steps:
This example demonstrates the Gold (XAU/USD) optimisation. The Illyad Strategy can be tuned for any forex pair, index, or commodity with proper optimisation.
👉 Visit my profile for full automation solutions.
Optimised GBP/USD (IC Markets, 30m)This is the Illyad Strategy 1.0 optimised for GBP/USD on the 30-minute timeframe (IC Markets feed).
📊 Backtest Results (Jan 2024 – Aug 2025):
✅ Total P&L: +19,501.97 USD (+19.50%)
📉 Max Drawdown: 3.57% (3,607.64 USD)
🔁 Total Trades: 37
📈 Win Rate: 51.35% (19/37 trades)
⚖️ Profit Factor: 2.08
This version shows steady profitability with controlled drawdown, making it highly effective for prop firm evaluations and scaling accounts.
🔧 Optimisation Notes:
Works best on the 30-minute timeframe.
Each symbol behaves differently — always optimise the algo per instrument (e.g. GBP/USD vs EUR/GBP vs Gold).
Parameters such as moving averages, risk, and SL/TP ratios can be tuned to maximise performance.
💡 Best Use Cases:
Prop firm challenges (FTMO, AquaFunded, MyForexFunds, etc.).
Scaling funded capital by trading multiple accounts simultaneously.
Full automation via TradingView alerts → MT5 integration.
⚠️ Disclaimer:
This script is for educational purposes only. Past results do not guarantee future performance. Always backtest and forward-test on demo before going live.
📲 Next Steps:
This setup demonstrates the GBP/USD optimisation. The Illyad Strategy can be adjusted to perform across any forex pair, index, or stock with proper optimisation.
👉 Check my profile for full automation solutions.
Optimised GBP/CAD (IC Markets, 30m) - Automated TradingHere’s the Illyad Strategy 1.0 optimised for GBP/CAD on the 30-minute timeframe (IC Markets feed).
📊 Backtest Results (Jan 2024 – Aug 2025):
✅ Total P&L: +28,529.35 CAD (+28.53%)
📉 Max Drawdown: 3.61% (3,822.27 CAD)
🔁 Total Trades: 38
📈 Win Rate: 50.00% (19/38 trades)
⚖️ Profit Factor: 2.49
This setup shows strong performance with low drawdown, making it well-suited for prop firm trading and long-term portfolio compounding.
🔧 Optimisation Notes:
Works best on the 30-minute timeframe.
Each symbol has unique volatility and structure. To maximise results, you must optimise the algo per symbol (e.g., GBP/CAD vs EUR/USD vs NASDAQ).
Parameters such as moving averages, signal intensity, and SL/TP levels should be tuned to the instrument.
💡 Best Use Cases:
Prop firm challenges (FTMO, AquaFunded, MyForexFunds alternatives).
Running across multiple accounts simultaneously for compounding.
Automated execution via TradingView alerts → MT5 integration.
⚠️ Disclaimer:
This script is provided for educational purposes only. Past results do not guarantee future performance. Always backtest and forward-test on demo before live trading.
📲 Next Steps:
This version demonstrates the GBP/CAD optimisation. The Illyad Strategy can be tuned to work on any symbol (forex, indices, or stocks).
👉 Visit my profile for full automation solutions (TradingView → MT5)
fero.karma algoUnderstand what stocks, currencies (forex), and cryptocurrencies are. Learn common terms like bull market, bear market, volatility, and liquidity.
Study Analysis: There are two main types of analysis:
Breakout + Volume + HH/LL (Clean labels TP1-3)Breakout + Volume + HH/LL Strategy (Clean Labels)
This strategy combines breakout confirmation, volume strength, and market structure (Higher Highs / Lower Lows) to identify high-probability trade setups.
Breakout Filter: Uses a Donchian channel to detect price breakouts above resistance or below support.
Volume Confirmation: Requires volume to exceed the moving average of volume by a chosen multiplier, filtering out weak or false breakouts.
Market Structure: Long trades are only allowed if a Higher High (HH) has formed, and short trades only if a Lower Low (LL) has formed.
Trade Execution Rules:
For BUY trades: Entry at breakout, stop loss (SL) below the last pivot low, and three take profits (TP1–TP3) based on configurable risk-reward ratios.
For SELL trades: Entry at breakout, stop loss above the last pivot high, with TP1–TP3 levels set symmetrically below the entry.
Labels on Chart:
Each signal is marked with a clean label showing only:
Trade direction (BUY or SELL)
Entry price
Stop Loss
TP1, TP2, TP3
This makes the chart uncluttered while still providing all key trade information for execution or backtesting.
Std Smart Pivot V5.0 by SJKimStd Smart Pivot V5.0 by SJKim
Std Smart Pivot V5.0 by SJKim
Std Smart Pivot V5.0 by SJKim
ICT Unicorn Strategy [RoboQuant]What it detects
Structure: uses pivots (ta.pivothigh/low) to build a mini zigzag (A–B–C–D).
“Unicorn” Pattern:
Bull: bullish direction, C below A (protected swing), with a bullish “BRB” candle at B.
Bear: mirrored version.
FVG: searches for a valid gap between candle i and i+2 inside the BRB candle range and greater than 0.05 × ATR (quality filter).
When an FVG appears, it plots boxes/lines (top/bottom of range, protected swing, FVG box).
How it enters
Bull Trigger: a candle opens inside the FVG and closes above the top of the FVG (mitigation + continuation).
SL = protected swing (firstBl.swing, pivot C).
TP = top + (top - swing) * (reward/risk).
Draws Risk and Reward boxes if showTargets=true.
Bear Trigger: mirror setup (opens inside FVG and closes below bottom).
Management & sizing
Sizing: calculates position size = riskAmount / SL distance, capped by maxPositionSize.
RR configurable with risk and reward (default 1:2).
Trailing optional: adjusts TsL using short pivots (lenS).
Trade closes at SL (break of swing) or TP (target reached).
combine: if false, a bull setup cancels a bear setup (and vice versa). If true, both can coexist.
Key parameters
len: pivot sensitivity (structure).
riskAmount and maxPositionSize: risk control.
trail, lenS: trailing logic.
Box colors/visibility (showTargets, colRisk, colReward).
ICT translation
Seeks impulse → FVG → pullback into FVG → expansion, with a protected swing (implicit BOS/MSS via zigzag) and mitigation of imbalance.
The ATR * 0.05 filter avoids micro-gaps without intent.
How I’d use it (quick checklist)
Mark HTF bias (only take bull or bear setups with the trend).
On LTF, wait for a valid FVG inside the BRB candle.
Enter only if a candle re-enters the FVG and closes breaking its edge.
SL at swing C, TP by RR (default 1:2).
Enable trailing only after 1R is reached (optional, tuned via lenS).
Nor Smart Pivot V5.0 by SJKimNor Smart Pivot V5.0 by SJKim.
Nor Smart Pivot V5.0 by SJKim.
Nor Smart Pivot V5.0 by SJKim.
SMT Strategy TestingTesting strategy to find optimal settings. Uses SMT divergences to give signals.
FVG Ultra Assertive - Individual Filters (mtbr)FVG Ultra Assertive - Individual Filters (mtbr)
What this script offers:
This strategy detects and highlights FVGs (Fair Value Gaps) on the chart, providing traders with a visual and systematic approach to identify potential price inefficiencies. The script plots bullish and bearish FVG zones using customizable boxes and labels, allowing users to easily spot high-probability trading areas. In addition, it opens and closes simulated trades based on the detected FVGs, enabling full backtesting and strategy performance evaluation. It integrates multiple independent filters to validate the strength of each FVG signal before entering a trade.
How it works:
The script identifies:
Bullish FVGs when the current low is higher than the high of two bars ago.
Bearish FVGs when the current high is lower than the low of two bars ago.
Once an FVG is detected, it applies three optional independent filters:
GAP/ATR Filter:
Measures the FVG size relative to the Average True Range (ATR). Only gaps exceeding a user-defined multiple of ATR are considered valid.
Support/Resistance (S/R) Filter:
Uses pivot points to check if the FVG overlaps with recent high/low pivot levels within a tolerance percentage. This ensures the gap aligns with meaningful market levels.
Stochastic Filter:
Applies a stochastic oscillator to confirm momentum. Bullish FVGs are validated when stochastic values are oversold, and bearish FVGs when overbought.
After passing the selected filters, the strategy opens trades:
LONG FVG for bullish signals (buy)
SHORT FVG for bearish signals (sell)
The strategy automatically closes positions when an opposite signal appears, generating a backtest report with trades, profits, and statistics. The final bullish or bearish FVG signals are plotted as colored boxes on the chart with labels “BULL FVG” or “BEAR FVG” for immediate visual reference.
How to configure it for use:
Use GAP/ATR Filter: Enable or disable the ATR-based filter and adjust the ATR period (ATR Length) and minimum gap multiplier (Minimum Gap x ATR).
Use S/R Filter: Enable or disable the pivot-based S/R filter. Configure the pivot lookback periods (Pivot Left and Pivot Right) and the tolerance percentage (Gap Tolerance %).
Use Stochastic Filter: Enable or disable stochastic confirmation. Adjust the K and D lengths (Stoch K Length and Stoch D Length) and the overbought/oversold thresholds (Stoch Overbought and Stoch Oversold).
Colors: Customize the colors for bullish and bearish FVGs (FVG Bull and FVG Bear) to match your chart preferences.
Usage Tips:
Apply this strategy to any timeframe; shorter timeframes generate more frequent FVGs, while higher timeframes highlight stronger gaps.
Combine FVG signals with other technical analysis tools for better trade confirmation.
Use the box and label visualization to quickly scan charts for trade opportunities without cluttering the chart.
The strategy’s trades (LONG and SHORT) provide backtesting results and performance statistics for each signal.
Sofi v6gives sell and buy signals for tech stocks. it is amazing how good it works. gice it a try and test it before applying it for live trading.
3-Candle Reversal Pattern-vahid2star3-Candle Reversal Zones + Hammer Confirmation (with Risk Management & Alerts)
This script combines 3-candle reversal detection, hammer confirmations, and smart demand/supply zone plotting into a single tool designed for both discretionary and automated traders.
🔍 Core Logic
3-Candle Reversal Pattern
Candle-1: Strong move in one direction (big body).
Candle-2: Doji-like candle (high shadow/body ratio).
Candle-3: Reversal candle in the opposite direction (large body relative to Candle-2).
A gap after Candle-3 is required for extra confirmation.
Hammer Confirmation (Hammer-1 & Hammer-2)
After a valid 3-candle setup, the script searches for a hammer pattern near the zone.
Hammer-1: Draws a box directly on the hammer range if followed by a strong confirming candle.
Hammer-2: If another hammer forms after the confirmation candle and holds for N bars (configurable), a second hammer box is drawn.
Demand & Supply Zones
For bullish setups, a demand zone is created from the Candle-2 low to the Candle-1 low.
For bearish setups, a supply zone is created from the Candle-2 high to the Candle-1 high.
Zones extend to the right until price interacts with them.
🛠 Filters & Quality Controls
Trend filter (optional):
Only draw zones if price respects higher-timeframe EMA200 slope and LTF EMA alignment.
Market structure filter:
Require higher-high / higher-low (for bullish) or lower-high / lower-low (for bearish).
ATR filter:
Zones must have a minimum height relative to ATR.
Overlap control:
Avoid drawing zones that overlap too heavily with existing ones.
Cooldown:
Restrict consecutive zones of the same type within a user-defined bar distance.
🎯 Risk Management & Strategy
Dynamic position sizing:
Trade size is automatically calculated from account equity, risk %, and leverage.
Stop-loss & Take-profit:
SL placed just beyond the zone ± buffer ticks.
TP automatically set at user-defined Reward:Risk ratio (e.g., 3:1).
Capital protection:
Trades respect max leverage and risk per position settings.
⚡ Alerts
The script provides one-time alerts for each zone:
🔔 First Touch Alert → Triggered when price first touches a demand, supply, or hammer box.
Each zone only fires one alert, avoiding duplicates on re-touch or trade exit.
📊 Visuals
Demand zones: Green boxes.
Supply zones: Red boxes.
Hammer boxes: Blue (bullish) / Orange (bearish).
Used zones: Greyed out after price fills them.
Outcomes: Zones change to green if TP is hit, red if SL is hit.
Optional labels mark “Bullish zone ✓”, “Bearish zone ✓”, “Hammer-1 ✓”, or “Hammer-2 ✓” when confirmed.
🔧 Settings Overview
Core pattern ratios (C1/C2, C3/C2 size multipliers).
Doji definition (shadow/body ratio).
Hammer search depth, confirmation delay, and strictness.
Risk % per trade, leverage cap, stop buffer, RR ratio.
Visual styling (colors, max box count, labels).
Trend, structure, ATR, overlap, and cooldown filters.
Option to disable orders (use as indicator + alerts only).
⚠️ Disclaimer
This script is a technical analysis tool intended for educational purposes.
It does not guarantee profits. Use proper risk management and test thoroughly before applying in live trading.
✨ With its combination of 3-candle reversals, hammer confirmations, and smart filtering, this script is designed to reduce noise, highlight high-probability zones, and give traders both visual structure and actionable alerts.
Quarterly-Inspired EMA Swing Strategy🚀 Quarterly EMA Strategy: Simplified
This strategy uses quarterly trends and pullbacks to EMAs (Exponential Moving Averages) to buy low and sell high in strong uptrends (longs) or short weak stocks in strong downtrends.
⸻
🔧 Core Setup
• Timeframe: Quarterly (1 candle = 3 months or ~65 trading days).
• Stocks: Liquid NSE F&O stocks (e.g., Reliance, Bajaj Finance, Tata Motors, etc.).
• Indicators Used:
• 10-quarter EMA → Shorter-term trend.
• 21-quarter EMA → Long-term trend.
• 13-week EMA → Weekly confirmation.
• ATR → For stop-loss.
• VIX → Volatility control.
• Relative Strength vs Nifty → Filter strong/weak stocks.
⸻
🟢 LONG SETUP (Buy on Pullback in Uptrend)
✅ Conditions:
1. Quarterly Trend is Bullish
Price > 10Q EMA > 21Q EMA
2. Pullback Happens
Price closes within 3% of 10Q or 21Q EMA, or touches it and bounces.
• E.g., Stock close = 8200, 10Q EMA = 8000 → Pullback = Valid (2.5% gap)
3. Previous Trend is Strong
• Last 1-2 quarters were making higher highs OR closing well above 10Q EMA
4. Candle Shows Rejection
• Lower wick (buying pressure from EMA)
• Small body (<5% total candle range)
5. Market Support Filters
• Nifty > its 4-quarter EMA (sloping upward)
• India VIX < 20 (low panic)
• Stock’s last 2 quarters’ return > 1.1× Nifty’s return
6. Weekly Confirmation
• Price > 13-week EMA
• 13W EMA is rising
• Bullish pattern in last 2 candles
• Volume ≥ 75% of 20-week average
⸻
📈 Example (Bajaj Finance):
• Close: 8200,
• 10Q EMA: 8000 (bullish),
• 21Q EMA: 7800
• Weekly price > 13W EMA → Confirmation ✅
⸻
🎯 Trade Plan (Long):
• Entry: 8200 (Quarterly) or near 13W EMA (Weekly)
• Stop-Loss: 2× ATR below 21Q EMA or candle low
• Target: 2:1 reward
• Exit 1: Book 50% at target
• Exit 2: Trail 21Q EMA
• Optional Hedge: Buy Nifty PUT if VIX > 15
⸻
🔴 SHORT SETUP (Sell on Pullback in Downtrend)
✅ Conditions:
1. Quarterly Trend is Bearish
Price < 10Q EMA < 21Q EMA
2. Pullback to EMA
Price closes within 3% of 10Q or 21Q EMA, or touches and gets rejected
3. Prior Trend is Down
Last 1-2 quarters had lower lows or closing >5% below 10Q EMA
4. Bearish Candle Setup
• Upper wick (rejection from EMA)
• Small body
5. Market Support Filters
• Nifty < its 4-quarter EMA (sloping down)
• India VIX < 20
• Stock’s 2-quarter return < 0.9× Nifty’s return
6. Weekly Confirmation
• Price < 13-week EMA
• 13W EMA is falling
• Bearish candles (engulfing, lower highs)
• Volume ≥ 75% of 20-week average
⸻
📉 Example (Vodafone Idea):
• Close: ₹8
• 10Q EMA: ₹8.2 → Close is 2.5% below
• Weekly close < 13W EMA
• Bearish candle → Confirmation ✅
⸻
🔻 Trade Plan (Short):
• Entry: 8
• Stop-Loss: 2× ATR above 21Q EMA or candle high
• Target: 2:1 reward
• Exit 1: Book 50% at target
• Exit 2: Trail 21Q EMA
• Optional Hedge: Buy Nifty CALL if VIX > 15
⸻
📊 Position Sizing (Same for Long & Short):
• Risk per trade: 0.5–1% of total capital
• Example:
• Capital = ₹10 lakh
• Risk = ₹10,000
• Stop = 800 points → Buy 12 shares
⸻
✅ Exit Rules Summary
Stochastic Reversal v1.0.0Stochastic Reversal v1.0.0
Description:
The "Stochastic Reversal" is an innovative Pine Script indicator engineered for busy professionals and businesses who want to quickly identify potential trend reversals with a high degree of confidence. This tool leverages a sophisticated analysis of the Stochastic Oscillator to provide clear, actionable signals that anticipate market turning points.
Instead of relying on the default settings and typical overbought/oversold levels, this indicator uses an optimized algorithm to:
Pinpoint reversals with precision : It goes beyond simple crossovers to identify confirmed reversal signals, helping you to enter trades at the most opportune moments.
Filter out false signals : It is designed to work effectively even in trending markets, reducing the number of false signals that plague standard Stochastic strategies.
Save valuable time : By automating the detection of these complex reversal patterns, the "Stochastic Reversal" allows you to efficiently scan for setups and make informed decisions without constant manual analysis.
This tool is a crucial component for any trader who wants to trade with the trend and capitalize on market turns, all while gaining a significant edge in their analysis.
Disclaimer:
This indicator is for educational and informational purposes only. It should not be considered financial advice. The use of this tool for live trading is at your own risk. Past performance is not an indicator of future results. Always conduct your own thorough research and analysis before making any trading decisions.
Bollinger Squeeze Momentum v1.0.0Bollinger Squeeze Momentum v1.0.0
Description:
The " Bollinger Squeeze Momentum " is an advanced Pine Script indicator designed for busy professionals and businesses seeking to identify high-volatility breakouts before they occur. This tool focuses on a key market dynamic: the "Bollinger Squeeze," a period of low volatility that often precedes a strong directional move.
Instead of just showing the squeeze, this tool automates the process of identifying the shift in momentum at the precise moment the squeeze ends. This allows you to:
Anticipate significant breakouts : It provides clear signals on your chart when market energy is building and a move is imminent.
Filter out quiet markets : It helps you avoid choppy, low-volatility conditions and focus your attention on opportunities with a high potential for profit.
Save time on analysis : By automating the detection of this powerful pattern, the "Bollinger Squeeze Momentum" allows you to efficiently scan for setups and make informed decisions.
This tool is a critical addition for any trader who wants to capitalize on explosive price movements and trade with confidence.
Disclaimer:
This indicator is for educational and informational purposes only. It should not be considered financial advice. The use of this tool for live trading is at your own risk. Past performance is not an indicator of future results. Always conduct your own thorough research and analysis before making any trading decisions.