Sequential Stoch and RSI MA Cross CAWBuy and sell signals based on the crossing of the Stochastic and RSI at relatively the same time.Wskaźnik Pine Script®od thetradebrigade4
Stoch and RSI MA Cross Any Order CAWBuy and sell signals based on the crossing of both the Stochastic and the RSI at relatively the same time.Wskaźnik Pine Script®od thetradebrigade2
Pro Pattern Long-Short (High Winrate)Pro Pattern Buy/Sell (High Winrate) is a professional-grade price action indicator that detects high-probability candlestick formations and filters them through multiple confirmation layers to improve signal accuracy. It combines classic patterns like Engulfing, Morning/Evening Star, Hammer, and Three Soldiers/Crows with trend validation (EMA + Supertrend + ADX), volume strength analysis, RSI conditions, support/resistance proximity, and time-of-day filters. The system automatically calculates optimized entry, stop-loss, and take-profit levels based on ATR and a configurable risk-reward ratio, then tracks trade outcomes to display live performance metrics such as win rate, profit/loss ratio, and filter efficiency. With smart visual levels, extended trade lines, real-time signal labels, and a detailed analytics dashboard, it delivers a structured, data-driven trading framework designed to reduce noise and highlight only the highest-quality setups.Wskaźnik Pine Script®od Albay1688
Sequential Stoch and RSI MA Cross CAWBuy and sell signals based on both Stochastic and RSI crosses relatively at the same timeWskaźnik Pine Script®od thetradebrigade7
SSL MACD - nhuthang83chiến lược dựa trên PA kết hợp với chỉ báo xu hướng SupertrendStrategia Pine Script®od vbrqakvwc414613
Last Closed Candle $ Value (Stocks)Last Closed Candle Value in $ . High-Low. With Some Option to ModificTIONSWskaźnik Pine Script®od G_sgh3
aurora//@version=6 strategy("AURORA PRIME — MAX CAGR v3", overlay=true, initial_capital=100000, pyramiding=2, process_orders_on_close=true) //---------------------------------------------------- // INPUTS //---------------------------------------------------- baseRisk = input.float(0.6, "Base Risk %", step=0.1) expRisk = input.float(0.9, "Expansion Risk %", step=0.1) atrLen = input.int(14, "ATR Length") stopATRmult = input.float(1.5, "Stop ATR Mult") trailATRmult = input.float(2.0, "Trail ATR Mult") adxLen = input.int(14, "ADX Length") adxThresh = input.float(22, "ADX Trend Threshold") volMult = input.float(1.5, "Volume Expansion Mult") //---------------------------------------------------- // CORE INDICATORS //---------------------------------------------------- atr = ta.atr(atrLen) ema200 = ta.ema(close, 200) // --- Manual ADX Calculation --- upMove = high - high downMove = low - low plusDM = (upMove > downMove and upMove > 0) ? upMove : 0 minusDM = (downMove > upMove and downMove > 0) ? downMove : 0 trur = ta.rma(ta.tr(true), adxLen) plusDI = 100 * ta.rma(plusDM, adxLen) / trur minusDI = 100 * ta.rma(minusDM, adxLen) / trur dx = 100 * math.abs(plusDI - minusDI) / (plusDI + minusDI) adx = ta.rma(dx, adxLen) volPower = volume / ta.sma(volume, 20) volExpansion = volPower > volMult trendRegime = adx > adxThresh expansionRegime = trendRegime and volExpansion // Structure bias (HTF) htfClose = request.security(syminfo.tickerid, "60", close) htfEMA = request.security(syminfo.tickerid, "60", ta.ema(close, 50)) bullBias = htfClose > htfEMA bearBias = htfClose < htfEMA //---------------------------------------------------- // ENTRY LOGIC //---------------------------------------------------- longSignal = bullBias and trendRegime and close > ema200 shortSignal = bearBias and trendRegime and close < ema200 //---------------------------------------------------- // RISK ENGINE //---------------------------------------------------- riskPct = expansionRegime ? expRisk : baseRisk riskCash = strategy.equity * riskPct * 0.01 stopDist = atr * stopATRmult qty = stopDist > 0 ? riskCash / stopDist : 0 //---------------------------------------------------- // EXECUTION //---------------------------------------------------- longSL = close - stopDist shortSL = close + stopDist // 2R partial longTP1 = close + stopDist * 2 shortTP1 = close - stopDist * 2 // ATR trail trailLong = atr * trailATRmult trailShort = atr * trailATRmult if longSignal and strategy.position_size <= 0 strategy.entry("AURORA", strategy.long, qty) strategy.exit("TP1", "AURORA", qty_percent=50, limit=longTP1) strategy.exit("Trail", "AURORA", stop=longSL, trail_points=trailLong) if shortSignal and strategy.position_size >= 0 strategy.entry("AURORA", strategy.short, qty) strategy.exit("TP1", "AURORA", qty_percent=50, limit=shortTP1) strategy.exit("Trail", "AURORA", stop=shortSL, trail_points=trailShort) // Pyramiding logic inLong = strategy.position_size > 0 inShort = strategy.position_size < 0 entryPrice = strategy.position_avg_price unrealRLong = inLong ? (close - entryPrice) / stopDist : 0 unrealRShort = inShort ? (entryPrice - close) / stopDist : 0 if inLong and unrealRLong >= 1 and expansionRegime strategy.entry("AURORA-ADD", strategy.long, qty) if inShort and unrealRShort >= 1 and expansionRegime strategy.entry("AURORA-ADD", strategy.short, qty) plot(ema200, color=color.orange) Strategia Pine Script®od bettencourt3712
BB + EMA10 Confirm + Color Filldouble bollinger band with ema 10 ,when the candles go out of the band it reverses and wait for the candle to touch the middle bollinger band,when ema 10 crosses below or above buy and sell with green fill and red fillStrategia Pine Script®od avinashvn3
KIJO OI RSI + FR + vol Fut RSIThis educational indicator combines Price RSI, Open Interest RSI, Futures Volume RSI, and a normalized Funding Rate into a single visual panel. It is designed to help traders understand the structural relationship between price movement and derivatives positioning. The script integrates: - RSI of price (momentum) - RSI of Open Interest (position expansion/contraction) - RSI of futures volume (aggressive participation) - Funding Rate scaled into RSI range for visual comparison - Multi-timeframe background logic based on Price + OI interaction The background coloring highlights structural conditions: - Price and OI expanding - Potential trapped positioning - Position closing environments The upper section reflects the current timeframe. The lower section reflects a higher timeframe defined by a customizable multiplier. This tool is designed strictly for educational and analytical purposes. It does not generate buy or sell signals and should not be used as standalone trading advice. Descripción: Este indicador educativo combina RSI del Precio, RSI del Open Interest, RSI del Volumen de Futuros y Funding Rate normalizado en un solo panel visual. Su objetivo es ayudar a comprender la relación estructural entre el movimiento del precio y el posicionamiento en derivados. El script integra: - RSI del precio (momentum) - RSI del Open Interest (expansión o contracción de posiciones) - RSI del volumen de futuros (participación agresiva) - Funding Rate escalado al rango RSI para comparación visual - Lógica de fondo multi-timeframe basada en la interacción Precio + OI El fondo coloreado permite visualizar si el mercado está expandiendo posiciones, cerrándolas o generando posibles atrapamientos. La parte superior representa el timeframe actual y la inferior un timeframe superior configurable. Está diseñado con fines educativos para estudiar estructura de mercado y comportamiento de derivados. No es un sistema automático de entrada o salida.Wskaźnik Pine Script®od kijolua13
Inside DayThe Inside Day Background indicator automatically highlights Inside Day candles directly on the chart using a customizable background color. An Inside Day occurs when the current candle’s high is lower than the previous candle’s high, and the current low is higher than the previous candle’s low — signaling price consolidation and range compression. This condition often precedes volatility expansion and breakout opportunities. How It Works The script scans each bar and checks the following condition: Current High < Previous High Current Low > Previous Low When both are true: The chart background is highlighted No shapes or labels are plotted (clean chart visualization) An alert condition is triggered (optional) Trading Use Cases Inside Days are commonly used for: Breakout strategies Range expansion setups Volatility contraction signals Bull Flag / consolidation continuation patterns Opening range continuation plays Traders often watch for a break above the Inside Day high (bullish) or below the low (bearish). Features Clean background highlight only (no chart clutter) Fully customizable background color Toggle on/off visibility Built-in alert condition Works on all timeframes Overlay on price chart Notes Consecutive Inside Days will continue highlighting until range expansion occurs. Best combined with volume, VWAP, or range breakout strategies. Effective for both day trading and swing trading environments.Wskaźnik Pine Script®od barrosnobre9
IPO Day HighIPO High plots a horizontal reference level at the high of a stock’s IPO day — but only if the company went public within a user-defined recent period (default: last 2 years). This level often acts as a key psychological and technical reference for recently listed stocks, commonly used by traders to track: Early supply zones Price discovery rejections Breakout continuation above IPO highs Post-IPO consolidation structures How It Works The script detects the first available daily candle in TradingView’s historical data for the symbol. That candle is treated as the IPO day. It extracts the high price of that session. If the IPO occurred within the last X years (user input), the script draws a horizontal line from the IPO date forward. If the IPO is older than the selected lookback period, the line will not display. Practical Use Cases Traders commonly monitor IPO highs for: Breakout confirmation Failed breakout / bull trap detection Support reclaim after pullbacks Momentum continuation setups Particularly useful for: Recent IPO momentum stocks Small caps in price discovery High-growth tech listingsWskaźnik Pine Script®od barrosnobre3
MM FX Week (Fixed New York 17:00) - FINAL STABLE* Recolors intraday candles based on a fixed New York 17:00 (ET) custom week. Ensures consistent FX rollover timing across all timezones. * Custom weekly candle coloring based on New York 17:00 (ET). Week calculation remains consistent regardless of user timezone. * Fixed New York 17:00 custom week with automatic candle recoloring by weekly bias.Wskaźnik Pine Script®od Alden_Nguyen990
PDH & PDL PDH & PDL – Previous Day High & Low A clean and minimalist indicator that plots the Previous Day High (PDH) and Previous Day Low (PDL) as short, right-projected lines with subtle labeling. Designed for intraday traders who focus on liquidity, structure, and key reaction levels without cluttering the chart. Automatically updates each new trading day and works on any intraday timeframe.Wskaźnik Pine Script®od joaoleria3
Opening Range Box real FRANCISCO GENAOopening range 930 a 935 , is an strategy for the opening range breakoutWskaźnik Pine Script®od francisco_genao12
EMA + RSI + ADX + Bollinger + Bullish Engulfing SniperKodun düzeltmesi geldikçe yayımlamaya devam edeceğim, şuan için test aşamasındaWskaźnik Pine Script®od aytacakman5
Alpaca-trade V3S-GodMode Synced Strategy คือเครื่องมือ All-in-One สำหรับเทรดเดอร์สาย ICT / SMC (Smart Money Concepts) ที่ออกแบบมาเพื่อการเทรด Gold (XAUUSD) และ Futures โดยเฉพาะ รวบรวมเครื่องมือวิเคราะห์โครงสร้างราคาและเวลา (Time & Price) ที่สำคัญที่สุดไว้ในหน้าจอเดียว พร้อมระบบ Clean Chart ที่ช่วยให้กราฟไม่รก 🚀 Key Features (ฟีเจอร์หลัก): 1. 🏛️ Market Structure & Trend Trend Filter: กรองเทรนด์หลักด้วย EMA 200 (ปรับแต่งได้) VWAP: เส้นค่าเฉลี่ยถ่วงน้ำหนักปริมาณการซื้อขาย Swing Detection: ระบุจุด Swing High/Low อัตโนมัติ (เลือกดูย้อนหลังหรือดูแค่ปัจจุบันได้) 2. ⏰ Time & Sessions Session Ranges: กล่องแสดงช่วงเวลา Asia, London, และ New York พร้อมเส้นกึ่งกลาง (Mean Threshold) Daily Levels: เส้นราคาสำคัญประจำวัน (Previous Day High/Low, True Day Open, New Day Open) Clean Chart Mode: โหมดพิเศษแสดงผลเฉพาะสัปดาห์ปัจจุบัน ช่วยให้โหลดกราฟไวและไม่รกตาย้อนหลัง 3. 🧠 ICT Concepts & Macros ICT Macro Tracker: ติดตามช่วงเวลา Macro สำคัญ (เช่น 02:50, 09:50) พร้อมเส้นราคาเปิดของช่วงเวลานั้นๆ Quarterly Theory: เส้นแบ่งช่วงเวลา 90 นาที (Q1-Q4) และ Micro Cycles (23 นาที) SMT Divergence: ตรวจจับความขัดแย้งของราคากับสินทรัพย์อ้างอิง (เช่น DXY) 4. 💎 Smart Money & Entry Models Inversion FVG (IFVG): แสดง Fair Value Gaps ที่ถูกทำลายและเปลี่ยนหน้าที่เป็นแนวรับ/ต้าน (Credit: LuxAlgo logic) CISD (Change in State of Delivery): ระบบแจ้งเตือนจุดกลับตัวเมื่อเกิดการกวาด Liquidity + FVG + Displacement ในช่วง Killzone 5. 🏆 Gold Special Features Round Numbers: เส้นแนวรับแนวต้านจิตวิทยา (Psychological Levels) สำหรับทองคำ ปรับระยะห่างได้ (เช่น ทุกๆ $5 หรือ $10) 6. 🛠️ Quality of Life Dashboard & Watermark: แสดงสถานะและชื่อระบบแบบมืออาชีพ Customizable: ปรับสี เปิด/ปิด ฟีเจอร์ต่างๆ ได้ตามใจชอบผ่านเมนูตั้งค่า ⚠️ Disclaimer: เครื่องมือนี้มีไว้เพื่อช่วยในการวิเคราะห์ทางเทคนิคเท่านั้น ไม่ใช่คำแนะนำทางการเงิน การลงทุนมีความเสี่ยง ผู้ใช้งานควรศึกษาและบริหารความเสี่ยงด้วยตนเอง ------------------------------------------------------------- Here is the English Version of the description, ready for you to copy and paste into TradingView! 😎 📝 V3S-GodMode Synced Strategy Title: V3S-GodMode Synced Strategy Description: V3S-GodMode Synced Strategy is an All-in-One trading toolkit designed specifically for ICT / SMC (Smart Money Concepts) traders focusing on Gold (XAUUSD) and Futures markets. It consolidates the most critical Price Action and Time analysis tools into a single, comprehensive indicator, featuring a "Clean Chart Mode" to keep your workspace uncluttered and professional. 🚀 Key Features: 1. 🏛️ Market Structure & Trend Trend Filter: Filters the primary market direction using a customizable EMA 200. VWAP: Displays the Volume Weighted Average Price for intraday analysis. Swing Detection: Automatically identifies Swing Highs and Swing Lows (Toggle available for historical or current data only). 2. ⏰ Time & Sessions Session Ranges: Visual boxes for Asia, London, and New York sessions, complete with a Mean Threshold (50%) line. Daily Levels: critical daily price levels, including Previous Day High/Low (PDH/PDL), True Day Open (TDO), and New Day Open (NDO). Clean Chart Mode: A unique feature that displays data only for the current week, significantly improving chart loading speed and reducing visual noise from historical data. 3. 🧠 ICT Concepts & Macros ICT Macro Tracker: Tracks essential Macro windows (e.g., 02:50, 09:50) and plots the opening price line for each specific macro period. Quarterly Theory: Vertical dividers for 90-minute cycles (Q1-Q4) and Micro Cycles (23-minute intervals). SMT Divergence: Detects divergences between the asset price and a reference asset (e.g., DXY) to spot potential reversals. 4. 💎 Smart Money & Entry Models Inversion FVG (IFVG): Highlights Fair Value Gaps that have been invalidated and flipped their role to support or resistance (Credit to LuxAlgo logic). CISD (Change in State of Delivery): An alert system identifying potential reversal points based on Liquidity Sweeps + FVG + Displacement occurring specifically within Killzones. 5. 🏆 Gold Special Features Round Numbers: Automatic psychological support and resistance lines for Gold, with adjustable increments (e.g., every $5, $10, or custom values). 6. 🛠️ Quality of Life Dashboard & Watermark: Displays the system status and indicator name with a professional look. Fully Customizable: Toggle any feature on or off and customize colors to match your personal trading style via the settings menu. ⚠️ Disclaimer: This tool is intended for technical analysis assistance only and does not constitute financial advice. Trading involves significant risk. Users should conduct their own research and manage their risk accordingly.Wskaźnik Pine Script®od CayenneGT91
4H Fibonacci Candle Levelseng.: This indicator plots Fibonacci levels based on the last closed 4-hour candle. If that candle was bullish, the levels are drawn bullish as well (from the bottom wick tip to the top wick tip), and if it was bearish, they are drawn the other way around. As soon as a 4-hour candle closes, the levels are cleared and the new levels of the newly closed candle are drawn. The indicator is visible on all timeframes, but the levels are fixed to the last 4-hour candle.Wskaźnik Pine Script®od Grimson552230
Impulse Candle Tracker👑 ✝️ Title: Impulse Candle Tracker Description: The Impulse Candle Tracker is a powerful tool for traders seeking to identify high-probability market momentum and supply/demand zones using a candle-based acceleration model that detects rapid price movements relative to preceding candles. Key Features: • Impulse Detection: Identifies bullish and bearish impulse candles by measuring strong relative price movement, highlighting genuine momentum shifts. • Wick Analysis: Suppresses candles with dominant wicks to filter false momentum signals and focus on meaningful moves. • Dynamic Order Blocks: Automatically generates supply (bearish) and demand (bullish) zones using a customizable number of preceding candles and adjustable duration. • Mitigation Handling: Optionally dims or deletes mitigated and broken zones to maintain clarity on active levels. • Customizable Visualization: Full control over colors for bullish, bearish, neutral candles, and zone fills/borders. • Alerts: Built-in alert conditions for bullish and bearish impulses, allowing real-time reactions to market momentum. Inputs & Settings: • Acceleration Factor & inverse for momentum detection • Wick Ratio Threshold for filtering weak impulses • Candle count and duration for order block creation • Options to show, dim, or delete mitigated/broken zones • Full color customization for candles and zones Usage: This indicator helps traders: • Identify when momentum is accelerating or slowing in real time • Spot high-probability supply and demand zones for entries or exits • Understand short-term market structure and price action dynamics • Combine with other analysis techniques or strategies for trend confirmation Technical Notes: • The indicator works on standard OHLC charts. Non-standard chart types (Heikin Ashi, Renko, etc.) are not recommended for impulse detection. • Backtesting or historical signals should account for realistic slippage and commissions; past impulse signals do not guarantee future results.Wskaźnik Pine Script®od The_Forex_Steward97
Liquidity + HVP + Swing Projection + Low-Vol Range BreakoutsBuyside & Sellside Liquidity: Detects levels where price has pivoted multiple times and draws zones. Touch & Reject: It doesn't just mark levels; it alerts you when the price enters a zone and provides a "Reject" (RJ) signal if the price hits the zone and closes back outside of it (potential reversal). Liquidity Voids: Optionally highlights price gaps where liquidity is thin, suggesting the market might return to "fill" those areas. Institutional Activity: It identifies significant Pivot Highs/Lows that occurred on unusually high volume. Visual Levels: It marks these points with circles and labels. Large volume spikes at pivots often act as strong support or resistance levels in the future. Historical Analysis: It measures the percentage move of the last few price swings. Future Projection: Based on the average (or median) of previous swings, it projects a dashed line to a target price for the current move. Stats Dashboard: A table in the corner of your chart displays the volume delta (buy vs. sell volume) and the percentage changes of recent swings. The Squeeze: It looks for a sequence of candles with very small bodies and low Average True Range (ATR). This represents a market in "equilibrium" or consolidation. The Breakout: When the price finally breaks out of this tight, low-volatility box with a strong candle, it triggers a LONG or SHORT signal.Wskaźnik Pine Script®od denidiana59
Quantitative Momentum & Institutional Flow System🇨🇳 中文 🔍 概述 QuantFlow_MSVO 是一款专业量化指标,用于追踪机构资金流向、基准指数情绪及趋势衰竭。通过对比标的与参考指数(如上证指数)的资本动态,识别资金共振区——个股与大盘同步吸筹或派发的关键区域。 🧠 核心逻辑 机构资金流:基于加权价 (2*C+H+L)/4 * 10 构建类MACD振荡器(13/34指数平均,5期信号线),柱状图放大5.5倍,反映机构净参与力度。 基准情绪:对所选指数应用完全相同的算法,生成独立的流入/流出度量。 趋势矩阵:将收盘价在55根K线范围内标准化为0–100,经三重平滑(3×简单移动平均 → 指数平均)得到干净、不漂移的趋势线。 动能加速度:趋势线的环比变化率,用于捕捉早期突破。 🎨 视觉元素 机构资金 – 洋红(流入)/ 蓝色(流出),粗线。 基准资金 – 红色(正向)/ 绿色(负向),细线。 趋势线 – 橙色,范围0–100,辅以13(吸筹区)和90(超买区)参考线。 状态柱 – 🟠 趋势≤13时显示 蓄势脉冲 (20) 🔵 趋势≤13且加速度>13时显示 爆发确认 (50) 🔴 趋势>90且上升时显示 抛压警戒 (100) 共振柱 – 当机构流入或基准流入与趋势≤13共振时,显示洋红/红色柱 → 吸筹共振。 文字标签 – 筑底区域、买入确认、趋势衰减仅在信号首次出现时绘制,界面清爽。 📊 使用方法 底部区域(趋势≤13):寻找洋红/红色共振柱 → 潜在吸筹。蓝色爆发确认柱+标签是更强的入场信号。 顶部区域(趋势>90):橙色线走平或拐头,同时机构流入减弱,触发趋势衰减标签 → 派发预警。 零轴:机构资金流平衡线。 ⚙️ 参数设置 可在属性中更换参考指数(默认上证指数)。 所有周期(13、34、5、55、8、18等)均为原始算法固化的数值,无外部输入,确保一致性与不重绘。 🌍 适用市场 主要为中国A股设计,也适用于任何机构行为显著的流动性市场。日线及以下周期效果最佳。 English 🔍 Overview QuantFlow_MSVO is a professional quantitative indicator that tracks institutional money flow, benchmark sentiment, and trend exhaustion. By comparing the capital dynamics of the current symbol against a reference index (e.g., SSE 000001), it identifies capital resonance zones — areas where individual stocks and the broader market accumulate or distribute in sync. 🧠 Core Logic Institutional Flow: Derived from a MACD‑style oscillator on the weighted price (2*C+H+L)/4 * 10. Uses 13/34 EMAs and a 5‑period signal line. The histogram (scaled ×5.5) represents net institutional engagement. Benchmark Sentiment: Applies the identical algorithm to the selected index, generating independent inflow/outflow metrics. Trend Matrix: Normalizes the close within a 55‑bar range (0–100), then applies triple smoothing (3×SMA → EMA) to produce a clean, non‑repainting trend line. Momentum Acceleration: Period‑over‑period percentage change of the trend line detects early breakouts. 🎨 Visual Components Institutional Flow – Fuchsia (inflow) / Blue (outflow), bold lines. Benchmark Flow – Red (positive) / Green (negative), thin lines. Trend Line – Orange, scale 0–100, with reference lines at 13 (accumulation zone) and 90 (overbought zone). Status Columns – 🟠 蓄势脉冲 / Prepare Cash (20) when trend ≤ 13 🔵 爆发确认 / Breakout (50) when trend ≤ 13 and momentum accel > 13 🔴 抛压警戒 / Exhaustion (100) when trend > 90 and rising Resonance Columns – Magenta/Red columns when institutional inflow or benchmark inflow aligns with trend ≤ 13 → accumulation resonance. Labels – 筑底区域 / Accumulation, 买入确认 / BUY, 趋势衰减 / TOP EXIT appear only at the first occurrence to avoid clutter. 📊 Usage Guide Bottom zone (trend ≤ 13): Look for fuchsia/red resonance columns → potential accumulation. A blue Breakout column + label is a stronger entry trigger. Top zone (trend > 90): Orange line flattening or turning down, combined with weakening institutional inflow, generates a TOP EXIT label → distribution warning. Zero line: Balance axis for institutional flow. ⚙️ Parameters Reference index can be changed in the settings (default: SSE 000001). All periods (13, 34, 5, 55, 8, 18, etc.) are hard‑coded according to the original algorithm – no user inputs, ensuring consistency and non‑repainting. 🌍 Suitable Markets Primarily designed for Chinese A‑shares, but applicable to any liquid market where institutional activity matters. Works best on daily or lower timeframes.Wskaźnik Pine Script®od william_wqZaktualizowano 28
Momentum Upon Clearing Candle WickA Continuation Strategy. Select for candle size by percentage of price movement. Following candles will take a position when price clears the wick of the large candle. Select the number of candles a potential trade is valid. Robust selection of take profit and stop loss conditions. Select window in which trades are valid. You can leave it open to any candle or you could narrow it to news candles or another specific time of day. Can be customized into a scalping strategy or as an attempt to capture larger portions of a move. Remember, smaller timeframes generate smaller candles and larger timeframes will generate more trades. Adjusting candle sizes and timeframes will require very different profit and loss settings to maximize the strategies potential. No signals or information generated from this strategy is investment or trade advice. For entertainment purposes only. Code created with Gemini. Strategia Pine Script®od Toddwaters722227
Trend Forge Trend Forge is a fully configurable multi-trend strategy that lets you mix and match three independent trend indicators to define bullish and bearish market states. When all three trends align above price, the strategy enters long; when all three align below, it enters short. Every position is protected by an ATR-based stop loss, and trades close automatically when the trend alignment breaks down. This script was converted from the original Bear & Bull Builder indicator I published into a back testable strategy with real entries, exits, and stop loss orders. It gives you access to TradingView's full Strategy Tester including equity curves, trade lists, and performance metrics. How It Works Trend Selection: You choose three trend indicators independently, each with its own type and length: - Trend 1 (default: EMA 21) — fast trend - Trend 2 (default: EMA 55) — medium trend - Trend 3 (default: SMA 89) — slow trend Each trend slot supports five indicator types: EMA, SMA, RSI, CCI, and WaveTrend (WT). This gives you complete freedom to build a trend-following system tailored to your instrument and timeframe. Entry Logic Long Entry: Triggered on the first confirmed bar where price closes above all three trend values. The strategy enters long at market and simultaneously places an ATR-based stop loss order. Short Entry: Triggered on the first confirmed bar where price closes below all three trend values. The strategy enters short at market with an ATR-based stop loss. Stop Loss Calculation The stop loss distance is calculated as: `Stop Loss Distance = ATR(20) × Multiplier` - For longs, the stop is placed below the highest of the three trend values at entry. - For shorts, the stop is placed above the lowest of the three trend values at entry. The ATR multiplier is user-adjustable (default: 2.5), letting you widen or tighten risk per trade based on volatility. Exit Logic Positions close via market order when the trend alignment condition that triggered the entry is no longer met — i.e., when price crosses back through one or more of the trend lines. If the stop loss is hit first, the strategy exits at the stop price instead. --- Visual Features All of the original indicator's visual overlays are preserved: -Stop Loss Zones — shaded red regions between the entry level and the ATR stop loss, shown for longs and/or shorts (toggle on/off). - Trend Zones — green-shaded areas that highlight when a bullish or bearish state is active. - Signal-to-Order Fill Zones — a green zone that visualizes the one-bar delay between signal generation (bar close confirmation) and order execution (next bar open). - Entry, Stop, and Exit Labels — price labels printed on the chart at entry, stop loss, and exit points with color coding (green = entry, orange = stop, cyan = exit). Toggleable for longs and shorts independently. --- Settings Reference | Group | Setting | Default | Description | |-------|---------|---------|-------------| | First Trend** | Trend Type | EMA | Indicator type for Trend 1 | | First Trend** | Trend Length | 21 | Lookback period for Trend 1 | | Second Trend | Trend 2 | EMA | Indicator type for Trend 2 | | Second Trend | Trend Length | 55 | Lookback period for Trend 2 | | Third Trend | Trend 3 | SMA | Indicator type for Trend 3 | | Third Trend| Trend Length | 89 | Lookback period for Trend 3 | | Stop Loss | ATR Multiplier | 2.5 | Multiplied by ATR(20) to set stop distance | | Display | Long/Short Labels | Long on | Show entry, stop, and exit price labels | | Display| Stop Loss Zones | Long on | Shade the region between entry and stop | | Display | Trend Zones | Long on | Shade active bull/bear trend areas | | Display | Signal-to-Order Zones | Long on | Show the fill delay visualization | --- Strategy Properties | Property | Value | |----------|-------| | Default Qty Type | 100% of equity | | Initial Capital | 10,000 | | Pyramiding | 0 (no stacking) | | Order Fill | Next bar open | | Bar Confirmation | Orders only on confirmed bars | --- Usage Tips - Start with the default EMA 21 / EMA 55 / SMA 89 combination and adjust from there. - Pair faster trend lengths for scalping on lower timeframes, or slower lengths for swing trading on daily/weekly charts. - Increase the ATR multiplier on volatile instruments to avoid premature stop outs; decrease it on stable instruments for tighter risk control. - Use the Strategy Tester tab to compare different trend type and length combinations across your chosen symbol and timeframe. - The WaveTrend and CCI options can provide earlier signals in ranging markets but may generate more whipsaws — backtest before committing. --- Disclaimer This strategy is provided for educational and backtesting purposes only. Past performance does not guarantee future results. Always validate with out-of-sample data and proper risk management before trading live capital. Strategia Pine Script®od Beck_Mullen86
Sunspot EMA CloudSunspot EMA Cloud Overview Sunspot EMA Cloud is a multi-layer exponential moving average framework designed to visualize market direction, internal structure, and higher-timeframe equilibrium zones within a single layout. The script organizes EMA layers into a hierarchical structure that separates primary trend bias, medium-term momentum alignment, and long-term structural boundaries. Primary Trend Cloud (55-200) The foundation of the system is a fast and slow EMA pair, default values 55 and 200. When the fast EMA is above the slow EMA, the cloud reflects bullish dominance. When the fast EMA is below the slow EMA, the cloud reflects bearish dominance. A gradient fill between the two averages visually highlights directional strength and transition phases. Medium-Term EMA Cluster (30-60-120) This layer provides internal structure confirmation. It can be used to evaluate pullbacks, short-term acceleration, and compression within the direction defined by the primary trend cloud. Long-Term EMA Tunnels Three tunnel layers with default lengths 144-169, 288-338, and 576-676 represent progressively higher-order structural zones. These zones act as dynamic support and resistance areas and help identify expansion or contraction phases in broader market structure. Logic Framework The system operates on three coordinated structural layers. The 55-200 cloud defines directional bias. The 30-60-120 cluster evaluates internal momentum alignment. The long-term tunnels define macro structural boundaries. Separating these elements into independent but coordinated layers provides contextual clarity while reducing visual noise. How To Use Use the primary trend cloud to determine directional preference. Use the EMA cluster to assess pullbacks and short-term structure alignment. Use the long-term tunnels to identify structural reaction zones. Each layer can be independently enabled or disabled depending on trading requirements. All parameters are adjustable to adapt to different markets and timeframes.Wskaźnik Pine Script®od mustcopper2