Pin Bar Highlighter//@version=5
indicator("Pin Bar Highlighter", overlay=true)
body = math.abs(close - open)
upperWick = high - math.max(open, close)
lowerWick = math.min(open, close) - low
bullPin = (lowerWick >= body * 2) and (close > open)
bearPin = (upperWick >= body * 2) and (close < open)
bullColor = color.rgb(10, 20, 80)
bearColor = color.rgb(255, 20, 150)
barcolor(bullPin ? bullColor : bearPin ? bearColor : na)
Penunjuk dan strategi
EMA Stack Background HighlighterThis is a simple script that highlights my backround when my criteria for my context timeframe is met, specifically, price is above the 10 EMA, the 10 is above the 20, and the 20 is above the 50 for green and vice versa for red. I use this in a multi timeframe approach similar to mentfx's EVC criteria
EMA 7/21 + SuperTrend INDICADOR CREADO PARA MI ESTRATEGIA That sounds like a complex and multi-layered trading indicator you've developed! Combining an Exponential Moving Average (EMA) crossover with an Average Directional Index (ADX) filter, a Volume filter, and a Supertrend for overall trend confirmation can certainly help to filter out false signals and potentially increase the reliability of your entry and exit points.Here's a breakdown of the components you're using and why this combination can be powerful:📊 Indicator Components and Their Roles1. 7/21 EMA Crossover (Signal Generator)The $7$-period EMA and $21$-period EMA crossover is a common strategy used to generate initial buy or sell signals.Buy Signal: The short-term EMA (7) crosses above the long-term EMA (21).Sell Signal: The short-term EMA (7) crosses below the long-term EMA (21).2. ADX DI Filter (Momentum and Direction)The Average Directional Index (ADX) and its directional indicators ($+DI$ and $-DI$) are key to confirming the strength and direction of the move.Directional Confirmation: The EMA crossover must be confirmed by the appropriate directional index. For a buy, the $+DI$ should be above the $-DI$. For a sell, the $-DI$ should be above the $+DI$.Trend Strength ( NYSE:ADX $): A rising NYSE:ADX $ (typically above 20 or 25) suggests the current trend has sufficient momentum, making the signal more reliable.3. Volume Filter (Conviction)Adding a Volume filter ensures that the price movement accompanying the EMA crossover is supported by significant trading activity.Confirmation: A strong signal (buy or sell) is often accompanied by above-average volume. This suggests that market participants are actively supporting the move, adding conviction to the trade.4. Supertrend (Overall Trend Confirmation)The Supertrend indicator is based on the Average True Range (ATR) and is excellent for identifying the dominant market trend.Trend Alignment: The EMA crossover signal should align with the Supertrend's current signal. For a buy signal, the price should be above the Supertrend line (green). For a sell signal, the price should be below the Supertrend line (red). This helps ensure you are trading with the prevailing trend.📈 Why This is a Powerful CombinationYour indicator is essentially a multi-stage confirmation system:Speed (7/21 EMA): Generates a fast, responsive signal.Momentum (ADX DI): Confirms the direction and strength of the signal.Conviction (Volume): Validates the signal with market participation.Safety/Trend (Supertrend): Ensures the trade is in the direction of the long-term trend.The Informative Panel is a great feature, as it simplifies the decision-making process by summarizing the findings of all these components—e.g., "BUY: EMA Crossover $\checkmark$, +DI > -DI $\checkmark$, High Volume $\checkmark$, Supertrend Green $\checkmark$."💡 Next Steps for RefinementTo finalize and test this indicator, you may want to consider:Parameter Optimization: The best settings for the ADX level (e.g., 20 vs. 25) and the Supertrend ATR parameters may need to be optimized for the specific asset (e.g., stocks, forex) and timeframe you are using.Exit Strategy: Since this primarily focuses on entries, define clear Stop-Loss (perhaps based on the Supertrend line or a recent swing low/high) and Take-Profit (e.g., a fixed Risk/Reward ratio or previous resistance/support levels) rules.Would you like to explore specific parameters for any of these components or look into ways to backtest your strategy?
Nifty 500 Liquidity Momentum ScreenerTesting screener for momentum stocks in nifty 500 weekly time frame
DANCE WITH WOLVES VN ALL TO 1DANCE WITH WOLVES VN is a smart-money volume indicator designed for stocks and crypto.
Main features:
• logic to detect Distribution, No Demand, Absorption and Exhaustion.
• Automatically builds smart Support/Resistance zones from high-volume price leaders.
• Regression trend channel to see the short-term trend and trading range.
• Dashboard table that shows the top high/low price bars with buy/sell volume and group labels.
• Alert conditions for Breakout above resistance and At Support Area so you don’t need to watch the chart all the time.
You can use it on any symbol and timeframe. Just add the script to your chart and follow the zones (red = resistance, green = support) together with the P/L labels and the status line.
Smart Money Volume + Support/Resistance + Trend Channel.
Tự động vẽ vùng hỗ trợ/kháng cự theo volume mạnh/yếu, label (Distribution, No Demand, Absorption, Exhaustion) và kênh xu hướng.
Cách dùng:
Uptrend: ưu tiên mua ở gần cạnh dưới kênh hoặc vùng hỗ trợ.
Downtrend: ưu tiên bán/short ở gần cạnh trên kênh hoặc vùng kháng cự.
Sideway: đánh range – mua gần support, bán gần resistance, cẩn thận false break.
P… = vùng giá cao → nhìn kiếm setup chốt lời / short / tránh FOMO.
L… = vùng giá thấp → nhìn kiếm setup bắt nhịp hồi / entry buy an toàn hơn.
DTR Trend EntryDTR Trend Entry is a trend-based entry tool designed to highlight market conditions and generate clear long and short signals based on price behavior around a moving average. It helps traders quickly identify bullish trends, bearish trends, consolidation zones, and potential breakout entries.
The indicator uses a simple moving average (SMA) of user-defined length to determine trend direction. A bullish trend is confirmed when the price stays above the moving average for consecutive bars, while a bearish trend is confirmed when the price stays below it. ATR (Average True Range) is also calculated, and price proximity to the moving average is used to detect consolidation, marking periods where the market is likely ranging and preparing for a move.
The chart background is shaded green during bullish trends, red during bearish trends, and yellow during consolidation to make market conditions easy to see at a glance. Entry signals appear when price crosses the moving average in the direction of the established trend: a crossover above the moving average triggers a long entry signal in a bullish zone, and a crossunder triggers a short entry signal in a bearish zone. These signals are marked on the chart with labels and can also be sent as alerts.
DTR Trend Entry is useful for traders who prefer trend-following approaches, breakout strategies, or structure-based entries. It works well on most timeframes and helps avoid late or low-quality trades by filtering entries through trend confirmation and volatility conditions.
kira 3 mins scalp3-min Strict Scalping HA + PSAR + RSI + 1:2 RR
Purpose: 3-minute scalping using Heikin Ashi candles, Parabolic SAR, and RSI with strict entry rules and automatic 1:2 risk:reward.
Logic:
Entry: 3rd consecutive HA candle with no wick (bullish for buy, bearish for sell)
Filters:
Buy: PSAR below candle + RSI > 50
Sell: PSAR above candle + RSI < 50
SL & TP:
Buy SL: lowest low of last 3 candles
Buy TP: entry + 2×(entry−SL)
Sell SL: highest high of last 3 candles
Sell TP: entry − 2×(SL−entry)
Signals: Triangles plotted on chart; alerts available
Use: Apply on 3-min chart. Enter on 3rd candle meeting conditions; follow SL/TP for 1:2 RR.
ES-VIX Daily Price BandsES-VIX Daily Price Bands
This indicator plots dynamic intraday price bands for ES futures based on real-time volatility levels measured by the VIX (CBOE Volatility Index). The bands evolve throughout the trading day, providing volatility-adjusted price targets.
Formulas:
Upper Band = Daily Low + (ES Price × VIX ÷ √252 ÷ 100)
Lower Band = Daily High - (ES Price × VIX ÷ √252 ÷ 100)
The calculation uses the square root of 252 (trading days per year) to convert annualized VIX volatility into an expected daily move, then scales it as a percentage adjustment from the current day's extremes.
Features:
Real-time band calculation that updates throughout the trading session
Upper band (green) extends from the current day's low
Lower band (red) contracts from the current day's high
Shaded zone between bands for visual clarity
Information table displaying:
Current ES price and VIX level
Running daily high and low
Current upper and lower band values
DTR SL-TPDTR SL-TP is a simple risk-management indicator designed to automatically plot stop-loss and take-profit levels based on the current market price. It helps traders visualize their risk-to-reward setup directly on the chart, making trade planning faster and more consistent.
The indicator uses two main inputs: a Stop Loss Percentage and a Take Profit Multiplier. The stop loss is calculated by reducing the current price by the chosen percentage. The take profit level is set by multiplying that same percentage by the Take Profit Multiplier and adding it to the current price. This creates a dynamic stop-loss and take-profit pair that updates with every candle.
The stop-loss line is plotted in red, and the take-profit line is plotted in green for immediate visual clarity. Traders can adjust the percentage and multiplier to match their personal risk tolerance or strategy requirements.
DTR SL-TP is useful for any style of trading that requires predefined exit levels, including scalping, day trading, and swing trading. It helps maintain discipline, enforce consistent risk management, and quickly evaluate whether a potential trade offers an acceptable reward-to-risk ratio.
DANCE WITH WOLVES VN ALL TO 1DANCE WITH WOLVES VN is a smart-money volume indicator designed for stocks and crypto.
Main features:
• logic to detect Distribution, No Demand, Absorption and Exhaustion.
• Automatically builds smart Support/Resistance zones from high-volume price leaders.
• Regression trend channel to see the short-term trend and trading range.
• Dashboard table that shows the top high/low price bars with buy/sell volume and group labels.
• Alert conditions for Breakout above resistance and At Support Area so you don’t need to watch the chart all the time.
You can use it on any symbol and timeframe. Just add the script to your chart and follow the zones (red = resistance, green = support) together with the P/L labels and the status line.
Vietnamese note: Indicator dùng volume + để vẽ vùng hỗ trợ/kháng cự thông minh, label phân phối / hấp thụ / cạn lực bán và kênh xu hướng. Dùng được cho cả stock và crypto. tot nhat dung khung 5 den 15 phut
Byrd Combo Indicator v2.5Simplify your trading with the Byrd Combo Indicator — a professional, all-in-one trading tool designed to identify high-probability bullish and bearish patterns across multiple timeframes. Whether you’re a position trader, swing trader, or intraday trader, this indicator automatically analyzes trend strength, momentum, and volume to deliver clear, actionable signals — no complex calculations required.
Key Features:
Detects strong bullish and bearish candlestick patterns automatically.
Works on multiple timeframes: from intraday charts to weekly charts.
Includes dynamic signal labeling and optional signal bars for easy visualization.
Filters out weak setups using advanced trend and volume analysis (fully automated).
Customizable settings for personal trading preferences.
The Byrd Combo Indicator v2.5 is perfect for traders who want a simple, actionable, and reliable tool to guide entries, exits, and overall trade management.
Cycle Forecast + MACD Divergence (Kombi v6 FULL)This indicator merges two powerful analytical models:
🔮 1. Dominant Cycle Forecasting
The script automatically identifies major structural market cycles by detecting significant swing highs and lows.
It then fits a sinusoidal wave (amplitude, phase, and period) to the dominant cycle and projects it into the future.
Features:
Automatically extracts large, dominant cycles (no noise, no small swings)
Smooth sinusoidal historical cycle visualization
Future cycle projection for 1–2 upcoming cycle periods
Dynamic amplitude and phase alignment based on market structure
Helps anticipate cycle tops and bottoms for long-term timing
📉 2. MACD Divergence Detection
Full divergence detection engine using MACD or MACD Histogram.
Detects:
Bullish Divergence
Price ↓ while MACD (or Histogram) ↑
→ Possible trend reversal upward
Bearish Divergence
Price ↑ while MACD (or Histogram) ↓
→ Possible trend reversal downward
Features:
Pivot-based divergence confirmation (no repaint)
Choice of MACD Line or Histogram as divergence source
Labels + connecting divergence lines
Works across all markets and timeframes
⚙️ Smart Auto-Pivot System
The indicator optionally adjusts pivot sensitivity based on timeframe:
Weekly → tighter pivots
Daily → medium pivots
Intraday → wider pivots
Ensures stable, meaningful divergence signals even on higher timeframes.
🎯 Use cases
Identify upcoming cycle highs/lows
Spot major trend reversals early
Improve swing entries with MACD divergences near cycle turns
Combine forecasting with momentum exhaustion
Suitable for crypto, stocks, indices, forex & commodities
🧠 Why this indicator is powerful
This tool blends time-based cycle forecasting with momentum-based divergence signals, giving you a unique perspective of where the market is likely to turn.
Cycles reveal when a move may occur.
Divergences reveal why a move may occur.
Combined, they offer highly effective market timing.
Renko + PnF Bias Overlay v6Description:
The Renko + PnF Bias Overlay indicator provides a synthesized directional bias derived from manual implementations of both Renko and Point & Figure charting methodologies applied to standard time-based price data.
The indicator calculates Renko brick movements based on ATR-derived brick sizes, creating a noise-filtered representation that only registers significant price movements exceeding the specified brick size threshold. Renko direction changes occur only when price moves a full brick size beyond the previous brick.
Simultaneously, the indicator implements Point & Figure box counting logic with reversal requirements, where directional changes require a minimum of three boxes in the opposite direction, providing additional filtering of minor price fluctuations.
By combining these two price transformation methodologies, the indicator generates a composite directional bias that emphasizes sustained price movements while filtering out minor fluctuations and noise. The resulting bias reflects the underlying trend direction as determined by both the brick-based momentum filtering of Renko charts and the reversal confirmation requirements of Point & Figure charting.
This approach provides a robust trend-following signal that requires both significant price displacement and sustained directional commitment before registering a change in bias.
@Complete Squeeze Cycle Detector v2.0 FINALDescription:
The Complete Squeeze Cycle Detector identifies and tracks the full lifecycle of squeeze formations, from pre-squeeze consolidation through active squeeze periods to squeeze completion. The indicator systematically detects the characteristic conditions that precede and accompany squeeze events.
The indicator monitors multiple factors associated with squeeze development including:
• Volatility compression relative to recent volume activity
• Elevated market stress conditions as measured by VIX levels
• Momentum compression through rate of change measurements across multiple time periods
• Alignment of multiple exponential moving averages indicating consolidation
The squeeze cycle is classified into three distinct phases: Pre-Squeeze Setup, Active Squeeze, and Squeeze Complete. Each phase is identified based on threshold levels of multiple compression metrics, with adjustable sensitivity settings to control the strictness of detection.
The indicator provides visual identification of each phase through labels, background coloring, and an optional dashboard, allowing users to distinguish between the preparation phase where volatility contracts, the active squeeze phase where compression reaches critical levels, and the completion phase where the squeeze releases and directional movement resumes.
This systematic approach enables users to identify squeeze formations throughout their complete development cycle rather than focusing only on the breakout phase.
@DARKPOOL Magnet - MEMEDescription:
The @DARKPOOL Magnet indicator identifies and displays significant price levels where institutional buying and selling activity has created persistent support and resistance zones. The indicator focuses on three primary types of institutional footprints:
Pin Zone Detection: Identifies price levels where multiple pin bars (high volume, narrow range candles) have clustered within a specified tolerance, indicating repeated institutional defense of those levels.
Whale Footprint Detection: Detects absorption events where significant volume occurs with minimal net price movement, suggesting large institutional orders being filled without allowing substantial directional movement.
Dark Pool Detection: Identifies potential dark pool prints characterized by unexplained price gaps that occur without visible tape activity, indicating off-exchange institutional transactions.
The indicator draws horizontal lines at these identified institutional price levels and highlights areas where multiple detection methods converge, creating confluence zones that represent higher probability support and resistance levels.
Confluence lines are displayed when multiple independently identified institutional levels occur within a user-specified proximity, providing visual emphasis on price levels with the strongest institutional interest.
Santhosh Zero lag Trend change AlertThis indicator alert whenever these is a change in trend direction. Change input to match with your Asset/Index. This works well in all time frame, I recommend this for Scalping and Position trading
PALUTLA BUY SELL✅ BUY Signal Logic
A BUY label appears when:
EMA 9 crosses ABOVE EMA 21
AND
Price is trading ABOVE VWAP
This confirms that short-term momentum has turned bullish and price is aligned with the day’s average value — a strong intraday uptrend setup.
🔻 SELL Signal Logic
A SELL label appears when:
EMA 9 crosses BELOW EMA 21
AND
Price is trading BELOW VWAP
This confirms bearish momentum and trade alignment below value, indicating downward continuation potential.
🎯 Visual Features
• Green background / BUY labels → Bullish zone
• Red background / SELL labels → Bearish zone
• Grey background → No-trade zone
• EMA 9 and EMA 21 plotted on the price chart
• VWAP plotted as the session trend reference line
• Clear BUY/SELL labels on crossover candles
⏱ Best Timeframes
➡ Works best on intraday charts:
1m – 15m
VWAP is session-based, so daily/weekly timeframes are not recommended.
⚠️ Disclaimer
This indicator provides technical trade signals only.
Not financial advice.
Always use proper risk management and confirmation before trading.
@Aladdin's Trading Web – Command CenterThe indicator uses standard Pine Script functionality including z-score normalization, standard deviation calculations, percentage change measurements, and request.security calls for multiple predefined symbols. There are no proprietary algorithms, external data feeds, or restricted calculation methods that would require protecting the source code.
Description:
The @Aladdin's Trading Web – Command Center indicator provides a composite market regime assessment through a weighted combination of multiple intermarket relationships. The indicator calculates normalized z-scores across several key market components including banks, volatility, the US dollar, credit spreads, interest rates, and alternative assets.
Each component is standardized using z-score methodology over a user-defined lookback period and combined according to configurable weighting parameters. The resulting composite measure provides a normalized assessment of the prevailing market environment, with the option to invert rate relationships for specific market regime conditions.
The indicator focuses on capturing the synchronized behavior across these interconnected market segments to provide a unified view of systemic market conditions.
ES-VIX Expected Daily MoveThis indicator calculates the expected daily price movement for ES futures based on current volatility levels as measured by the VIX (CBOE Volatility Index).
Formula:
Expected Daily Move = (ES Price × VIX Price) / √252 / 100
The calculation converts the annualized VIX volatility into an expected daily move by dividing by the square root of 252 (the approximate number of trading days per year).
Features:
Real-time calculation using current ES futures price and VIX level
Histogram visualization in a separate pane for easy trend analysis
Information table displaying:
Current ES futures price
Current VIX level
Expected daily move in points
Expected daily move as a percentage
Elite Energy Alpha MatrixThe Elite Energy Alpha Matrix indicator provides comprehensive analysis of the energy sector, focusing on the complex relationships between crude oil benchmarks, natural gas, energy-related ETFs, and the performance dynamics across various energy sub-sectors.
The indicator tracks multiple energy price data sources including WTI crude oil, Brent crude, natural gas, and oil ETFs, enabling detailed monitoring of price relationships and divergences within the energy complex.
Key analytical components include:
• Correlation analysis between major energy benchmarks
• Multi-timeframe examination of energy price relationships
• Sector rotation detection within energy sub-sectors including integrated oil majors, exploration and production companies, oilfield services, refiners, pipelines, and renewable energy
• Performance monitoring across different energy market segments
The indicator provides a structured framework for analyzing the internal dynamics of the energy sector, identifying periods of alignment or divergence between different energy price instruments, and monitoring relative performance across energy sub-sectors.
This approach enables users to assess the consistency of price movements across the energy complex and identify situations where different components of the energy market are exhibiting divergent behavior, which can provide insight into the underlying drivers affecting the sector.2.6s
sabaribuysellThe KIRA EMA 9–21 + VWAP indicator is a simple, clean intraday trading tool designed to capture high-probability trend entries using a fast EMA crossover confirmed by VWAP direction.
BUY CONDITION:
EMA 9 crosses above EMA 21 AND price trades above VWAP.
SELL CONDITION:
EMA 9 crosses below EMA 21 AND price trades below VWAP.
Signals are shown directly on the chart with clear BUY and SELL labels.
Background colors highlight trade zones:
• Green = Buy Zone
• Red = Sell Zone
• Grey = No-Trade Zone
This strategy works best on intraday timeframes:
1 minute to 15 minute charts.
Elite Federal Reserve AIThe Elite Federal Reserve AI indicator provides an analytical framework focused on monitoring economic and market conditions that influence Federal Reserve policy decisions. The indicator examines key relationships and rate-of-change metrics across multiple proxies for monetary policy drivers.
The indicator tracks and analyzes:
• Yield curve dynamics through rate-of-change measurements in short and intermediate-term Treasury yields
• Inflation expectations via TIPS breakeven rate momentum
• Dollar strength and its rate of change over specified periods
• Financial market stress indicators including volatility and sector performance metrics
• Breadth measures through small capitalization stock performance
The indicator calculates momentum and rate-of-change values across these variables to identify shifts in the economic and financial conditions that serve as primary inputs to Federal Reserve decision-making. By monitoring the velocity of change in these key relationships, the indicator provides insight into the changing balance between inflationary pressures, growth expectations, financial stability concerns, and currency dynamics.
This approach focuses on the observable market-based indicators that reflect the underlying economic conditions the Federal Reserve considers in its policy formulation, enabling users to assess the prevailing policy environment through the lens of these critical market relationships and their momentum characteristics.






















