Buy Signal: Match TV Envelope & 52W LowBuy signal: 52 week low + Envelope
Gives a buy signal when price touches 52 week low and also the envelope lower band set at -25% is near the 52 week low and price touches that
Indicators and strategies
[T] FVG Size MarkerThis scripts marks the size of the FVG on the chart. As well as lets you place custom text based on gap size. Custom text lets you overlay contract size risk based on the gap size.
FrankCo Super IndicatorThe FrankCo Super Indicator is a multi-factor technical analysis tool combining trend, candlestick patterns, and momentum oscillators to generate trading signals.
Yosef26 - איתותים לכניסה ויציאה// Yosef26 - מודל מלא ל-TradingView לזיהוי נקודות כניסה ויציאה
// כולל: פתילים, ממוצעים נעים, ווליום, איתותים יציבים לגרף, והתראות
//@version=5
indicator("Yosef26 - איתותים לכניסה ויציאה", overlay=true)
// === חישובי ממוצעים ===
ema20 = ta.ema(close, 20)
ema50 = ta.ema(close, 50)
ema100 = ta.ema(close, 100)
ema200 = ta.ema(close, 200)
// === חישובי מבנה נר ===
priceRange = high - low
body = math.abs(close - open)
upperWick = high - math.max(close, open)
lowerWick = math.min(close, open) - low
vol = volume
volSMA = ta.sma(vol, 20)
// === תנאים לנר היפוך חיובי (כניסה) ===
entryCond = (lowerWick > priceRange * 0.4) and (close > open) and (body < priceRange * 0.35) and (close > ema100 * 0.97 and close < ema200 * 1.03) and (vol > volSMA) and (close > ema20 and close > ema50)
// === תנאים לנר היפוך שלילי (יציאה) ===
exitCond = (upperWick > priceRange * 0.4) and (close < open) and (body < priceRange * 0.35) and (close < ema50) and (vol < volSMA)
// === הצגת סימני כניסה/יציאה צמודים לנרות (עמידים לכל שינוי גרף) ===
plotshape(entryCond, title="כניסה", location=location.belowbar, style=shape.triangleup, color=color.green, size=size.normal, text="Long")
plotshape(exitCond, title="יציאה", location=location.abovebar, style=shape.triangledown, color=color.red, size=size.normal, text="Sell")
// === התראות ===
alertcondition(entryCond, title="Alert Entry", message="📥 אות כניסה לפי מודל Yosef26")
alertcondition(exitCond, title="Alert Exit", message="📤 אות יציאה לפי מודל Yosef26")
VWAP & EMAs with Accurate Color LogicThis Pine Script combines multiple technical indicators to help traders analyze price movements with precision. It features:
VWAP (Volume Weighted Average Price):
Displays the 5-minute VWAP with dynamic coloring:
White when the price is neutral.
Yellow when the price closes below the 5-minute VWAP.
Red when the price closes below the 15-minute VWAP.
Helps identify potential support and resistance levels.
VWAP Crossover Dots:
Blue dots appear on the chart whenever the price crosses the 5-minute VWAP, indicating a potential change in price direction.
Exponential Moving Averages (EMAs):
EMA 5, EMA 10, and EMA 21 with soft, eye-friendly colors.
EMA 50 and EMA 200 will only be displayed if the price is near them (within 1% threshold), helping you spot key support and resistance levels when the price is close to these longer-term moving averages.
This script is designed to assist day traders and swing traders by highlighting key price levels and crossovers, making it easier to spot trends and market reversals.
BTC vs ALT Lag Detector [MEXC Overlay]This indicator monitors the price movement of Bitcoin (BTC) and compares it in real time to a customizable list of major altcoins on the MEXC exchange.
It helps you identify lagging altcoins — tokens that are underperforming or overperforming BTC’s price action over a selected timeframe. These temporary deviations can offer profitable entry or rotation opportunities, especially for scalpers, day traders, and arbitrage-style strategies.
Key Features:
- Real-time deviation detection between BTC and altcoins
- Customizable comparison timeframe: 1m, 6m, 12m, 30m, 1h, 4h, or 1d
- Deviation threshold alert: Highlights coins that lag BTC by more than 0.5%, 1%, 2%, or 3%
- Compact stats table embedded in the price chart
- Fully adjustable layout: Table position (Top/Bottom/Center + Left/Right), Font size (Tiny, Small, Medium)
- Built-in alert system when deviation exceeds your chosen threshold
How to Use It:
Set your desired timeframe for comparison (e.g., 1 hour).
Select a deviation threshold (e.g., 1.0%).
The table will show:
Each altcoin’s % change
BTC’s % change
The delta (deviation) vs BTC
Red highlights indicate alts whose deviation exceeded the threshold.
When at least one alt lags beyond your threshold, the indicator can trigger an alert — helping you capitalize on potential catch-up trades.
Please provide any feedback on it.
Colored SMA by Time & TrendScalping script for XAUUSD this indicator checks times in which there is a usual uptrend or downtrend for this instrument. When green, a buy is likely to be profitable (at least for a few bars) and when red, a sell is likely to be profitable (for the next few bars).
TTM Squeeze Overlay (Wave A/B/C Visible)This script overlays three MACD-based wave structures directly on the price chart — giving you a clear, time-based view of market momentum without needing a sub-panel.
🔴 Wave A (Short-Term) – fast reactions, shows immediate price pressure
⚫ Wave B (Mid-Term) – smoother movements, ideal for swing context
🔵 Wave C (Long-Term) – area-style macro trend overlay
All waves are dynamically scaled and centered around price action, so you don’t need to manually stretch or shift anything.
Built for traders who want trend clarity at a glance — right where it matters.
Dual ATR TargetsATR Distance Markers with Percentage Display
This powerful indicator visually displays dynamic support/resistance levels based on the ATR Trailing Stop, while providing clear percentage-based distance measurements to help traders assess risk/reward ratios at a glance.
Key Features:
🔹 Dual Distance Markers - Track two customizable distance multiples (default: 1.0x and 0.35x ATR)
🔹 Percentage-First Display - Shows percentage distances first (more intuitive for multi-timeframe analysis) with exact price differences in parentheses
🔹 Current + Previous Candle Data - Compare current levels with previous candle's values for trend confirmation
🔹 Clean Visual Presentation - Grey info box with white text for optimal readability
🔹 Customizable Settings - Adjust ATR period, multiplier, colors, and visibility
How Traders Use It:
✅ Identify potential profit targets based on volatility-adjusted distances
✅ Gauge stop-loss placement with percentage-based risk assessment
✅ Compare current vs. previous candle distances for momentum shifts
✅ Maintain consistent risk parameters across different instruments
Input Parameters:
ATR Period (default 14)
ATR Multiplier (default 1.1)
Two fully configurable distance markers
Custom colors for each marker
Perfect For:
• Swing traders looking for volatility-based targets
• Position traders managing risk across timeframes
• Anyone who prefers percentage-based analysis over fixed price distances
The indicator plots circular markers (blue) and cross markers (red) at your specified distances from the ATR trailing stop, while the info box keeps all critical data organized in one corner of your chart.
Pro Tip: Combine with trend analysis tools - the distances become more reliable when trading in the direction of the prevailing trend. The percentage display helps maintain consistent position sizing across different priced instruments.
S&P 500 Bear Markets and CorrectionsS&P 500 Corrections and Bear Markets (pullbacks/crashes) from 1970 to 2025 (May).
You are always welcome to reach out with feedback :-)
Best - Nicolai
Shade Between 9 EMA and 20 EMAThis indicator shades the area between the 9 EMA and the 20 EMA.
The wider the area of shade, the stronger the trend and momentum. If the shaded area is more narrow, that tells you to possibly take caution as there is no clear trend yet.
Stochastics + VixFix Weekly Buy Signal
This Long Term Investment Weekly Timeframe Strategy combines:
- Stochastic Oscillator momentum exhaustion
- Williams VixFix volatility panic spikes
- Ideal for Weekly timeframes and ETF Long Term Investing.
- Add Stochastics, CM_Williams_Vix_Fix and Order Flow Analysis from FlowState also nice Average Sentiment Oscillator
Morning & EOD ReportThis is not financial advice, nor meant to influence anyone's trading strategies.
Please use at your discretion and if you decide to give this indicator a shot, please leave some feedback if there could be changes made to the intervals or if there any other necessary changes to make
As you can see, this indicator provides a detailed morning report on all timeframes. Also, when you switch to the 15 minute time interval you are able to see an EOD report as well. These both print after collecting enough data based on key indicators within a designated time frame.
The reports will provide short-term data showing whether the stock price is above or below VWAP, as well as if the MACD and RSI are trending upwards or downwards. This is the code that builds the model and signal:
= ta.macd(close, 12, 26, 9)
rsiST = ta.rsi(close, 14)
vwapST = ta.vwap
priceAboveVWAP = close > vwapST
macdBullish = macdST > signalST
rsiBullish = rsiST > 50
The long-term uses a mid/daily time frame and analyzes key indicators like MACD, RSI, PMO, SMA on a 50 day moving average, and if price is above or below VWAP. These indicators allow the model to display BUY Signal Active, SELL Signal Active, or Neutral. Along with this, it also tracks price change percentage and can indicate whether volume is normal or if there has been a spike detected. The code that makes all this possible is listed below:
= request.security(syminfo.tickerid, "D", ta.macd(close, 12, 26, 9))
rsiD = request.security(syminfo.tickerid, "D", ta.rsi(close, 14))
pmo = request.security(syminfo.tickerid, "D", ta.ema(ta.roc(close, 1), 35))
pmoSMA = request.security(syminfo.tickerid, "D", ta.sma(ta.ema(ta.roc(close, 1), 35), 10))
priceAboveSMA50 = close > ta.sma(close, 50)
buySignalD = macdD > signalD and rsiD > 50 and pmo > pmoSMA and priceAboveSMA50
sellSignalD = macdD < signalD and rsiD < 50 and pmo < pmoSMA and not priceAboveSMA50
// --- % CHANGE FROM OPEN ---
sessionOpen = request.security(syminfo.tickerid, "D", open)
pctChange = ((close - sessionOpen) / sessionOpen) * 100
// --- Volume Spike Detection ---
avgVol = ta.sma(volume, 20)
volSpike = volume > avgVol * 1.5
FLAT Multi-TF EMAs 3 EMA's where you can Choose the Timeframes you like and need on any other Timeframe!
INTELLECT_city - Bitcoin Whitepaper DayBitcoin Whitepaper Day is celebrated on October 31 each year, marking the anniversary of the publication of the Bitcoin whitepaper by Satoshi Nakamoto in 2008. Titled "Bitcoin: A Peer-to-Peer Electronic Cash System," the nine-page document introduced the concept of a decentralized digital currency that operates without intermediaries like banks, using a peer-to-peer network, blockchain technology, and proof-of-work to solve the double-spending problem.
Published on a cryptography mailing list during the 2008 financial crisis, the whitepaper laid the foundation for Bitcoin and the broader cryptocurrency ecosystem, influencing innovations like Ethereum, decentralized finance (DeFi), and NFTs. It’s a day celebrated by the crypto community to honor the revolutionary ideas that sparked a new era of financial sovereignty and technological innovation. Some note the symbolic connection to October 31, also Reformation Day, suggesting Nakamoto chose it to signify a break from centralized financial systems, though this is speculative.
Volatility ML StrategyThis strategy uses proxy indicators for machine learning-predicted volatility and GARCH-based expected volatility. Trades are triggered when predicted volatility change exceeds threshold and market momentum confirms. Based on a fully engineered XGBoost + GARCH Python pipeline, adapted into Pine Script for backtesting and deployment on TradingView
Pi Cycle Top Indicator (BTCUSD)Indikator siklus untuk btcusdt, Indikator siklus untuk btcusdt,Indikator siklus untuk btcusdt
Reverse Keltner Channel StrategyReverse Keltner Channel Strategy
Overview
The Reverse Keltner Channel Strategy is a mean-reversion trading system that capitalizes on price movements between Keltner Channels. Unlike traditional Keltner Channel strategies that trade breakouts, this system takes the contrarian approach by entering positions when price returns to the channel after overextending.
Strategy Logic
Long Entry Conditions:
Price crosses above the lower Keltner Channel from below
This signals a potential reversal after an oversold condition
Position is entered at market price upon signal confirmation
Long Exit Conditions:
Take Profit: Price reaches the upper Keltner Channel
Stop Loss: Placed at half the channel width below entry price
Short Entry Conditions:
Price crosses below the upper Keltner Channel from above
This signals a potential reversal after an overbought condition
Position is entered at market price upon signal confirmation
Short Exit Conditions:
Take Profit: Price reaches the lower Keltner Channel
Stop Loss: Placed at half the channel width above entry price
Key Features
Mean Reversion Approach: Takes advantage of price tendency to return to mean after extreme moves
Adaptive Stop Loss: Stop loss dynamically adjusts based on market volatility via ATR
Visual Signals: Entry points clearly marked with directional triangles
Fully Customizable: All parameters can be adjusted to fit various market conditions
Customizable Parameters
Keltner EMA Length: Controls the responsiveness of the channel (default: 20)
ATR Multiplier: Determines channel width/sensitivity (default: 2.0)
ATR Length: Affects volatility calculation period (default: 10)
Stop Loss Factor: Adjusts risk management aggressiveness (default: 0.5)
Best Used On
This strategy performs well on:
Currency pairs with defined ranging behavior
Commodities that show cyclical price movements
Higher timeframes (4H, Daily) for more reliable signals
Markets with moderate volatility
Risk Management
The built-in stop loss mechanism automatically adjusts to market conditions by calculating position risk relative to the current channel width. This approach ensures that risk remains proportional to potential reward across varying market conditions.
Notes for Optimization
Consider adjusting the EMA length and ATR multiplier based on the specific asset and timeframe:
Lower values increase sensitivity and generate more signals
Higher values produce fewer but potentially more reliable signals
As with any trading strategy, thorough backtesting is recommended before live implementation.
Past performance is not indicative of future results. Always practice sound risk management.
Weak Doji DetectorIndicators shows when a weak doji candle is formed. This is important for my strategy , after the break of a weak doji candle (the high the timeframe the stronger the break and continuation) near a support or resistance with enough range and time of volume, then we can see continuation of trend
Engulfing w/ Liquidity Sweep (Bullish & Bearish)This indicator shows both a “bullish” and Bearish engulfing bar close that has swept previous candles liquidity . This bar is a very important part of my trading strategy . After a liquidity sweep, followed by an engulfing candle, after a retracement ( usually no greater than 75% or trade will be invalid), then we can look to target the previous candles low, or further extend the trend