New York Master Range📈 New York Master Range (5-Min Timeframe)
Description:
This custom TradingView indicator captures the opening range based on the body high and low of the first 3 candles after 10:30 AM (BRT – Brasília Time) on the 5-minute timeframe — a technique often used during the New York market session.
🔍 How it works:
At exactly 10:30 AM (BRT), the indicator starts collecting the highs and lows of candle bodies (not wicks) for the next 3 five-minute candles.
Once the 3 candles are processed, the highest close/open (body high) and lowest close/open (body low) are plotted as static green and red lines on the chart.
These levels can act as key intraday support/resistance zones or range breakout triggers.
Indicatori e strategie
거래량 지표 전략 (최종)"Leverage 100x, 10% of capital committed, 0.3% profit target, 0.2% stop loss."
레버리지 100배 이용, 10프로 자본금 투입, 0.3프로 수익 , 0.2프로 손해
"Volume Indicator Strategy (Final)" Summary
This Pine Script strategy is designed to integrate volume data from multiple cryptocurrency exchanges (Binance, Bitget, OKX, Bybit) across spot and futures markets. It then uses this consolidated volume data to identify volume spikes and apply an RSI filter to generate buy/sell signals.
Key Features and Logic:
Multi-Exchange/Asset Volume Consolidation:
Based on user settings, it fetches and sums up spot and perpetual futures volume data from Binance, Bitget, OKX, and Bybit.
It uses the request.security function to query volume data from each specified exchange.
NA (Not Available) data points are safely handled and treated as 0 to prevent calculation errors.
Volume Spike Detection:
It calculates the Simple Moving Average (avg_volume) of the combined_volume over a lookback period (default 70 bars).
A vol_7x condition is met when the combined_volume is equal to or greater than 7 times (vol_multiplier_7x, user-configurable) the avg_volume.
RSI Filter (Optional):
An RSI (Relative Strength Index) filter (enable_rsi_filter, user-configurable) can be applied in conjunction with the volume spike condition.
Short Entry Condition: vol_7x (volume spike) & price_up (current bar's close is higher than the previous close) & RSI is 73 or greater (if filter is enabled).
Long Entry Condition: vol_7x (volume spike) & price_down (current bar's close is lower than the previous close) & RSI is 28 or less (if filter is enabled).
Strategy Entry/Exit:
When entry conditions are met, the strategy enters a position at market price.
It includes a re-entry cooldown period (default 10 bars) to prevent immediate re-entry in the same direction.
Fixed Take Profit and Stop Loss percentages (0.3% Take Profit, 0.2% Stop Loss) are set to manage open positions.
Visualization:
The combined_volume is plotted as columns (plot.style_columns) in a lower pane, changing color when the 7x volume spike condition is met.
The avg_volume is plotted as a line.
Volume values on the plot (and intended for the Y-axis scale) are formatted using format=format.volume to display in K (thousands), M (millions), B (billions) units.
The chart background color changes to indicate RSI overbought (>= 70, red) and oversold (<= 30, blue) zones.
Labels are displayed on the chart for individual trade P/L (Profit/Loss), and an info panel shows the total P/L over a user-defined period.
This strategy aims to capture significant market movements by aggregating volume data across various sources and combining it with price action and momentum (RSI) analysis to generate automated trading signals.
-------------------------------------------------------------------------------------------------------------
"거래량 지표 전략 (최종)" 요약
이 전략은 여러 암호화폐 거래소(바이낸스, 비트겟, OKX, 바이비트)의 현물(Spot) 및 선물(Futures) 거래량 데이터를 통합하여 사용하는 것을 핵심으로 합니다. 통합된 거래량 데이터를 바탕으로 거래량 급등을 포착하고 RSI 필터를 적용하여 매수/매도 신호를 생성하는 전략입니다.
주요 기능 및 로직:
다중 거래소/자산 거래량 통합:
사용자 설정에 따라 바이낸스, 비트겟, OKX, 바이비트의 현물 및 선물(무기한) 거래량을 개별적으로 가져와 합산합니다.
request.security 함수를 사용하여 각 거래소의 거래량 데이터를 요청합니다.
데이터가 없는 경우(NA)는 0으로 처리하여 계산 오류를 방지합니다.
거래량 급등 감지:
통합된 거래량(combined_volume)의 lookback 기간(기본 70봉) 이동평균(avg_volume)을 계산합니다.
combined_volume이 avg_volume의 7배(vol_multiplier_7x, 사용자 설정 가능) 이상으로 급등하면 vol_7x 조건을 만족합니다.
RSI 필터 (옵션):
거래량 급등 조건과 함께 RSI(상대 강도 지수) 필터(enable_rsi_filter, 사용자 설정 가능)를 적용할 수 있습니다.
매도(Short) 진입 조건: vol_7x (거래량 급등) & price_up (현재 봉 종가가 이전 봉보다 상승) & RSI가 73 이상일 때.
매수(Long) 진입 조건: vol_7x (거래량 급등) & price_down (현재 봉 종가가 이전 봉보다 하락) & RSI가 28 이하일 때.
전략 진입/청산:
위 진입 조건이 충족되면 시장가로 포지션에 진입합니다.
동일 방향으로 10봉 이내 재진입을 제한합니다.
고정 익절(Take Profit) 및 손절(Stop Loss) 비율(각각 0.3%, 0.2%)을 설정하여 포지션을 관리합니다.
시각화:
통합 거래량(combined_volume)은 차트 하단에 막대그래프(plot.style_columns)로 표시되며, 7배 급등 시 색상이 변경됩니다.
평균 거래량(avg_volume)은 선으로 표시됩니다.
거래량 값은 format=format.volume을 사용하여 K(천), M(백만), B(십억) 단위로 간소화되어 표시됩니다.
차트 배경색으로 RSI 과매수(70 이상, 빨간색) 및 과매도(30 이하, 파란색) 구간을 시각적으로 표시합니다.
개별 거래의 P/L(손익) 라벨과 지정된 기간 동안의 총 P/L을 차트 상단에 표시합니다.
이 전략은 여러 거래소의 거래량 데이터를 취합하여 시장의 전반적인 거래 활동을 파악하고, 이를 바탕으로 특정 패턴(거래량 급등 + 가격 방향 + RSI 필터)에 따라 매매 결정을 내리도록 설계되었습니다.
Essa - Market Structure & Fibonacci ToolkitOverview
The Essa Market Structure & Fibonacci Toolkit is a comprehensive trading indicator that combines advanced market structure analysis with customizable fibonacci levels and fair value gap detection. It identifies high-probability trading opportunities by detecting confluence zones where multiple technical factors align, providing traders with precise entry and exit points based on institutional trading concepts.
Key Features
📊Market Structure Analysis
Pattern Recognition: Automatically detects Higher Highs (HH), Higher Lows (HL), Lower Highs (LH), Lower Lows (LL)
Change of Character (CHoCH): Identifies trend changes and market structure breaks
Pattern Locking: Fibonacci levels lock to specific swing patterns (LH→LL for bearish, HL→HH for bullish)
Multi-Timeframe Analysis: Analyzes trend strength across multiple timeframes with scoring system
🧮 Custom Fibonacci System
Fully Configurable Levels: Set any percentage (e.g., 25%, 65%, 87.5%) - not limited to traditional levels
Dynamic Labels: Shows your actual percentages, not hardcoded values
Golden Zone Trading: Customizable optimal entry zones between any two fibonacci levels
Auto-Extension: Levels automatically extend as price moves
Distance Tables: Real-time pip distances to nearest fibonacci levels
📈 Fair Value Gap (FVG) Detection
Smart Detection: Identifies bullish and bearish fair value gaps with size filtering
Age Tracking: Shows how long each FVG has been active (bars or time format)
Confluence Highlighting: Enhanced colors when FVGs overlap with fibonacci golden zones
Width Filtering: ATR-based minimum width requirements to filter noise
🎯 Confluence Trading
Multi-Factor Analysis: Combines market structure + fibonacci + FVGs + golden zones
High-Probability Zones: Highlights areas where multiple factors converge
Trend Strength Scoring: 0-100% scoring system based on multiple confluence factors
Smart Alerts: Notifications for high-confluence setups only
⚡ Advanced Features
Trend Analysis Table: Real-time trend bias, strength score, and pattern identification
Adaptive Sensitivity: Automatically adjusts to market volatility using ATR
Professional Alerts: Customizable alerts for structure breaks, golden zone touches, and FVG confluence
Clean Interface: Basic/Advanced settings organization with inline controls
🎨 Visual Excellence
Professional Styling: Clean, institutional-grade visual presentation
Customizable Colors: Full color customization for all elements
Smart Labeling: Context-aware labels that don't overlap
Performance Optimized: Efficient rendering with visual element limits
Perfect for: Swing traders, day traders, and institutional-style traders who want to identify high-probability setups using confluence of market structure, fibonacci levels, and fair value gaps.
Premium Fibonacci Buy/Sell [MasoodPro]OVERVIEW
This script plots Fibonacci Entry Bands, a trend-following and mean-reversion hybrid system built around dynamic volatility-adjusted bands scaled using key Fibonacci levels. It calculates a smoothed basis line and overlays multiple bands at fixed Fibonacci multipliers of either ATR or standard deviation. Depending on the trend direction, specific upper or lower bands become active, offering a clear framework for entry timing, trend identification, and profit-taking zones.
CONCEPTS
The core idea is to use Fibonacci levels—0.618, 1.0, 1.618, and 2.618—as multipliers on a volatility measure to form layered price bands around a trend-following moving average. Trends are defined by whether the basis is rising or falling. The trend determines which side of the bands is emphasized: upper bands for downtrends, lower bands for uptrends. This approach captures both directional bias and extreme price extensions. Take-profit logic is built in via crossovers relative to the outermost bands, scaled by user-selected aggressiveness.
FEATURES
Basis Line – A double EMA smoothing of the source defines trend direction and acts as the central mean.
snapshot
Volatility Bands – Four levels per side (based on selected ATR or stdev) mark the Fibonacci bands. These become visible only when trend direction matches the side (e.g., only lower bands plot in an uptrend).
snapshot
Bar Coloring – Bars are shaded with adjustable transparency depending on distance from the basis, with color intensity helping gauge overextension.
snapshot
Entry Arrows – A trend shift triggers either a long or short signal, with a marker at the outermost band with ▲/▼ signs.
snapshot
Take-Profit Crosses – If price rejects near the outer band (based on aggressiveness setting), a cross appears marking potential profit-taking.
snapshot
Bounce Signals – Minor pullbacks that respect the basis line are marked with triangle arrows, hinting at continuation setups.
snapshot
Customization – Users can toggle bar coloring, signal markers, and select between ATR/stdev as well as take-profit aggressiveness.
Alerts – All major signals, including entries, take-profits, and bounces, are available as alert conditions.
Tt • FVG CandlesAn FVG / Imbalance identifier.
Default color:
• Light grey - Bullish FVG
• Dark grey - Bearish FVG
Ultimate SuperTrend with Support and ResistanceModified ST with Support and resistance levels. This was developed by SAM team to provide a singular indicator to trade in NIFTY. It can also be used in other securities.
Based on the trading style, can be used for Sell and Buy trades. Provide your comments and guidance.
EMA Slope First Flip Signal1. EMA Calculation:
It calculates 4 Exponential Moving Averages:
EMA 5 – very fast (captures short-term moves)
EMA 9 – fast
EMA 21 – medium
EMA 50 – long-term trend
2. Slope Calculation:
It finds the slope of each EMA using:
pinescript
Copy
Edit
slopeX = emaX - emaX
This checks if the EMA is rising (slope > 0) or falling (slope < 0).
3. Trend Condition:
Buy condition: All 4 EMA slopes must be positive
Sell condition: All 4 EMA slopes must be negative
4. First Signal Logic:
It only flashes a signal when the direction changes.
For example:
If EMAs were not all rising before, but now all are → BUY
If EMAs were not all falling before, but now all are → SELL
Prevents repeated signals during the same trend.
5. Safe Boolean Handling:
Uses bool(condition ) to access previous state without error
Avoids using nz() or na() on booleans (which causes errors)
📈 What You See on Chart:
✅ Green "BUY" label below candle when all EMA slopes turn positive for the first time
❌ Red "SELL" label above candle when all EMA slopes turn negative for the first time
🔄 No duplicate signals in the same direction — only on reversal
Universal Renko Bars by SiddWolfUniversal Renko Bars or UniRenko Bars is an overlay indicator that applies the logic of Renko charting directly onto a standard candlestick chart. It generates a sequence of price-driven bricks, where each new brick is formed only when the price moves a specific amount, regardless of time. This provides a clean, price-action-focused visualization of the market's trend.
WHAT IS UNIVERSAL RENKO BARS?
For years, traders have faced a stark choice: the clean, noise-free world of Renko charts, or the rich, time-based context of Candlesticks. Choosing Renko meant giving up your favorite moving averages, volume profiles, and the fundamental sense of time. Choosing Candlesticks meant enduring the market noise that often clouds true price action.
But what if you didn't have to choose?
Universal Renko Bars is a revolutionary indicator that ends this dilemma. It's not just another charting tool; it's a powerful synthesis that overlays the pure, price-driven logic of Renko bricks directly onto your standard candlestick chart. This hybrid approach gives you the best of both worlds:
❖ The Clarity of Renko: By filtering out the insignificant noise of time, Universal Renko reveals the underlying trend with unparalleled clarity. Up trends are clean successions of green bricks; down trends are clear red bricks. No more guesswork.
❖ The Context of Candlesticks: Because the Renko logic is an overlay, you retain your time axis, your volume data, and full compatibility with every other time-based indicator in your arsenal (RSI, MACD, Moving Averages, etc.).
The true magic, however, lies in its live, Unconfirmed Renko brick. This semi-transparent box is your window into the current bar's real-time struggle. It grows, shrinks, and changes color with every tick, showing you exactly how close the price is to confirming the trend or forcing a reversal. It’s no longer a lagging indicator; it’s a live look at the current battle between buyers and sellers.
Universal Renko Bars unifies these two powerful charting methods, transforming your chart into a more intelligent, noise-free, and predictive analytical canvas.
HOW TO USE
To get the most out of Universal Renko Bars, here are a few tips and a full breakdown of the settings.
Initial Setup for the Best Experience
For the cleanest possible view, it's highly recommended that you hide the body of your standard candlesticks, that shows only the skelton of the candle. This allows the Renko bricks to become the primary focus of your chart.
→ Double click on the candles and uncheck the body checkbox.
Settings Breakdown
The indicator is designed to be powerful yet intuitive. The settings are grouped to make customization easy.
First, What is a "Tick"?
Before we dive in, it's important to understand the concept of a "Tick." In Universal Renko, a Tick is not the same as a market tick. It's a fundamental unit of price movement that you define. For example, if you set the Tick Size to $0.50, then a price move of $1.00 is equal to 2 Ticks. This is the core building block for all Renko bricks. Tick size here is dynamically determined by the settings provided in the indicator.
❖ Calculation Method (The "Tick Size" Engine)
This section determines the monetary value of a single "Tick."
`Calculation Method` : Choose your preferred engine for defining the Tick Size.
`ATR Based` (Default): The Tick Size becomes dynamic, based on market volatility (Average True Range). Bricks will get larger in volatile markets and smaller in quiet ones. Use the `ATR 14 Multiplier` to control the sensitivity.
`Percentage` : The Tick Size is a simple percentage of the current asset price, controlled by the `Percent Size (%)` input.
`Auto` : The "set it and forget it" mode. The script intelligently calculates a Tick Size based on the asset's price. Use the `Auto Sensitivity` slider to make these automatically calculated bricks thicker (value > 1.0) or thinner (value < 1.0).
❖ Parameters (The Core Renko Engine)
This group controls how the bricks are constructed based on the Tick Size.
`Tick Trend` : The number of "Ticks" the price must move in the same direction to print a new continuation brick. A smaller value means bricks form more easily.
`Tick Reversal` : The number of "Ticks" the price must move in the opposite direction to print a new reversal brick. This is typically set higher than `Tick Trend` (e.g., double) to filter out minor pullbacks and market noise.
`Open Offset` : Controls the visual overlap of the bricks. A value of `0` creates gapless bricks that start where the last one ended. A value of `2` (with a `Tick Reversal` of 4) creates the classic 50% overlap look.
❖ Visuals (Controlling What You See)
This is where you tailor the chart to your visual preference.
`Show Confirmed Renko` : Toggles the solid-colored, historical bricks. These are finalized and will never change. They represent the confirmed past trend.
`Show Unconfirmed Renko` : This is the most powerful visual feature. It toggles the live, semi-transparent box that represents the developing brick. It shows you exactly where the price is right now in relation to the levels needed to form the next brick.
`Show Max/Min Levels` : Toggles the horizontal "finish lines" on your chart. The green line is the price target for a bullish brick, and the red line is the target for a bearish brick. These are excellent for spotting breakouts.
`Show Info Label` : Toggles the on-chart label that provides key real-time stats:
🧱 Bricks: The total count of confirmed bricks.
⏳ Live: How many chart bars the current live brick has been forming. These bars forms the Renko bricks that aren't confirmed yet. Live = 0 means the latest renko brick is confirmed.
🌲 Tick Size: The current calculated value of a single Tick.
Hover over the label for a tooltip with live RSI(14), MFI(14), and CCI(20) data for additional confirmation.
TRADING STRATEGIES & IDEAS
Universal Renko Bars isn't just a visual tool; it's a foundation for building robust trading strategies.
Trend Confirmation: The primary use is to instantly identify the trend. A series of green bricks indicates a strong uptrend; a series of red bricks indicates a strong downtrend. Use this to filter out trades that go against the primary momentum.
Reversal Spotting: Pay close attention to the Unconfirmed Brick . When a strong trend is in place and the live brick starts to fight against it—changing color and growing larger—it can be an early warning that a reversal is imminent. Wait for the brick to be confirmed for a higher probability entry.
Breakout Trading: The `Max/Min Levels` are your dynamic breakout zones. A long entry can be considered when the price breaks and closes above the green Max Level, confirming a new bullish brick. A short entry can be taken when price breaks below the red Min Level.
Confluence & Indicator Synergy: This is where Universal Renko truly shines. Overlay a moving average (e.g., 20 EMA). Only take long trades when the green bricks are forming above the EMA. Combine it with RSI or MACD; a bearish reversal brick forming while the RSI shows bearish divergence is a very powerful signal.
A FINAL WORD
Universal Renko Bars was designed to solve a fundamental problem in technical analysis. It brings together the best elements of two powerful methodologies to give you a clearer, more actionable view of the market. By filtering noise while retaining context, it empowers you to make decisions with greater confidence.
Add Universal Renko Bars to your chart today and elevate your analysis. We welcome your feedback and suggestions for future updates!
Follow me to get notified when I publish New Indicator.
~ SiddWolf
KHUSHI VERMA DEHRI ON SONEKhushi Verma Dehri On Sone - ZigZag Buy/Sell with Volume Pressure & Stop Loss
This indicator combines ZigZag-based Buy/Sell signals, dynamic stop-loss levels, and a Volume Pressure histogram to provide a powerful visual trading tool.
🔍 Key Features:
ZigZag Buy/Sell Detection:
Automatically identifies significant highs and lows using ZigZag logic with a user-defined lookback period (depth).
Red "SELL" labels at swing highs
Green "BUY" labels at swing lows
Connected with directional lines for clarity
Stop Loss Visualization:
For each signal, a horizontal dashed stop-loss line is drawn:
For SELL signals: SL = High + %SL
For BUY signals: SL = Low − %SL
Volume Pressure Histogram:
Visualizes the net buying/selling pressure based on candle direction:
Green bars: Positive (buying) pressure
Red bars: Negative (selling) pressure
Blue line: Smoothed pressure using EMA
⚙️ Inputs:
ZigZag Lookback: Number of bars to detect swing highs/lows
Stop Loss (%): Distance from pivot high/low to define SL
Volume Smoothing Length: EMA length for volume pressure
Show Histogram: Toggle for displaying the volume pressure bars
Dual Donchian Channels + Death CrossDual Donchain Channels with a 50/200 day angel/death cross indicator built in. Intended to be used on the daily time frame.
MACD parametrable kylian MACD analysis with indicator on the chart showing bullish and bearish crossover points based on configurable thresholds.
MCC Smart Reversal Signals📊 MCC Smart Reversal Signals (Stoch RSI) v1.0.9
© 2025 Jawid Iqbal Anwar — MIT License
This indicator is designed to help traders detect potential market reversal points by combining multiple confirmation tools such as:
Stochastic RSI
Classic RSI
Trend direction (EMA-based)
Candlestick reversal patterns
Re-entry logic
Dollar-Cost Averaging (DCA) strategy
Built-in alert system
🔄 What’s New in v1.0.9
✅ Time-Frame Presets: Choose from Custom, Weekly, Daily, 4H, 1H, or 15m profiles — each with optimized parameters.
🤖 Auto Mode: The script can automatically detect the chart timeframe and apply the best preset settings.
🎯 Dynamic Overbought/Oversold Levels:
On 15m and 1H, RSI and Stoch RSI use 6 (Oversold) and 94 (Overbought)
On 4H, Daily, and Weekly, it uses 30/70 for RSI and 20/80 for Stoch RSI
🧠 All original logic from v1.0.8 is retained: signal throttling, strong confirmation, and DCA logic.
🔧 How It Works
1. Watch Buy / Watch Sell Signals
These are early signals that notify you of a possible reversal forming.
🟠 Watch Buy: Triggered when the Stoch RSI enters oversold territory. Will only appear if the market isn’t trending strongly downward.
🔵 Watch Sell: Triggered when the Stoch RSI moves into overbought territory. Once fired, it will pause for a few candles unless the zone is exited.
⚠️ OB/OS zones are adjusted based on the selected preset or Auto mode.
2. Strong Reversal Signals (Higher Confidence)
These provide stronger confirmation when all of the following align:
RSI is in an extreme zone (very low or very high)
A reversal candlestick pattern appears (doji, bullish/bearish)
RSI recently changed direction
EMA trend supports the move (not against a strong trend)
When this happens, you’ll see a green (Buy) or red (Sell) label. These are typically high-probability entries.
3. Re-Entry Dots
If the price stays oversold or overbought for a while and forms a new valid candle setup, a new “Watch” dot will appear.
🔁 These help you catch continuation or delayed reversal setups.
4. DCA (Dollar-Cost Averaging) Signals
✅ DCA Buy: RSI is very low and Stoch RSI remains in the oversold zone — a good place to scale into a long position.
❌ DCA Sell: RSI and Stoch RSI are both in the overbought zone — ideal for scaling out or taking profit.
5. Signal Throttling (Smarter Alerts)
To avoid over-signal noise, the script includes throttling logic:
A signal won’t repeat unless the zone is exited and re-entered.
There’s a minimum bar gap between signals to reduce clutter.
🔔 Built-in Alerts (No Setup Needed)
The script includes alerts for all signal types:
Watch Buy / Watch Sell
Strong Buy / Strong Sell
DCA Buy / DCA Sell
Once you add the script to your chart, you can enable alerts immediately.
🕒 How to Use Timeframes
With v1.0.9, the indicator adapts to your chart:
Auto Mode: Just load the indicator — it adjusts based on your active timeframe.
Manual Presets: Choose a preset if you want specific control.
Timeframe Default OB/OS Settings
15m & 1H RSI & Stoch RSI: 6 / 94
4H+ RSI: 30 / 70, Stoch RSI: 20 / 80
🛠️ Suggested Trading Flow
Add the indicator and select a timeframe preset (or use Auto).
Wait for 🟠 Watch Buy or 🔵 Watch Sell — watch the price behavior.
If a 🟢 Strong Buy or 🔴 Strong Sell appears, consider entering with confirmation.
Use ✅ DCA Buy or ⏺️ DCA Sell to scale in/out slowly.
Use EMA trend and candlestick context to refine your decision.
💡 Final Tips
Let signals come to you — don’t force trades.
Use the OB/OS zones and alerts as part of a structured strategy.
Combine this tool with your price action knowledge for best results.
Round Number Levels ProRound Number Levels Pro is a powerful support and resistance indicator that automatically plots psychological price levels on your chart.
What it does:
- Displays major round number levels (100, 200, 300, etc.) with prominent lines
- Shows mid-level lines (50, 150, 250, etc.) for additional reference points
- All lines extend across the entire chart for maximum visibility
- Automatically adjusts levels based on current price action
Key Features:
- Customizable Font Sizes - Large text for main levels, normal for mid-levels
- Clean Black Styling - Professional appearance that works on any chart background
- Flexible Line Styles - Choose solid, dashed, or dotted lines for main and mid levels
- Adjustable Parameters - Control number of levels, rounding increments, and label positioning
- Full Chart Extension - Lines extend both directions for complete price reference
Perfect for:
- Day traders looking for key psychological support/resistance levels
- Swing traders identifying major price zones
- Any trader who uses round numbers as decision points
How to use:
Simply add to your chart and the indicator will automatically plot relevant round number levels. Customize the settings to match your trading style and timeframe.
These psychological levels are where many traders make decisions, often creating natural support and resistance zones in the market.
Quad RSI MTFQuad RSI MTF
it's unique, visually rich, and highly useful for traders who want to understand momentum across different time horizons.
Quad RSI MTF is a custom indicator that plots the Relative Strength Index (RSI) from four different timeframes on one chart pane. It’s designed to help traders spot:
Multi-timeframe momentum alignment
Divergences between short-term and long-term RSI
Early warnings of trend reversals or exhaustion
Overbought/Oversold extremes across timeframes
Four RSI Inputs:
Fully customizable lengths and timeframes (e.g., 1H, Daily, Weekly, Monthly).
Uses request.security() to fetch RSI values from higher/lower timeframes.
Color-coded RSI plots:
Easy to visually differentiate between RSI 1–4.
Helps spot alignment or disagreement between timeframes.
Multi-Level Overbought/Oversold Bands:
Level 1: Traditional RSI zones (70/30)
Level 2: Extreme zones (98/2) to catch euphoria or panic
No repainting:
All values are based on historical RSI closes, ensuring reliability.
QQE MOD + QQE WEIGHTED OSCILLATORQQE MOD WITH QQE WEIGHTED OSCILLATOR added to the same subchart pane. fast line crossing slow line is a signal
FInal Signal
This indicator for 4H timeframe by default
RSI + Moving Average of RSI from the 1-hour chart
MACD from the 1-hour chart
21 EMA from the 4-hour chart
5 EMA from the Daily chart
This multi-timeframe fusion offers strength: confirming shorter-term momentum with higher-timeframe support.
✅ Buy Conditions:
RSI is above its moving average → signals bullish momentum
MACD line > MACD signal line → confirms trend shift
RSI has upward slope (compared to 2 candles ago)
❌ Sell Conditions:
RSI falls below its moving average
MACD turns bearish (signal line overtakes)
RSI slopes downward
Price trades below daily EMA → confirms weakening trend
🔊 Volume Spike Detection
I also added a volume condition that checks:
If current volume > 2x the moving average (length = 10)
QQE MODADDED QQE WEIGHTED OSCILLATOR to the QQE MOD indicator. The oscillator has a fast line that crosses the slow line. As the fast crosses above the slow line this is a long situation and vice versa for a short situation. The weighted Oscillator is a deriviation by LuxAlgo. The QQE mod portion was published by Colinmck
QQE + Signals RNEdited this to do away with larged signals of long and short to small triangles labeld only with QQE text
PTST – Distance from 66-Day LowThis simple yet powerful indicator shows how far the current price is from the lowest low of the last 66 trading days, expressed as a percentage.
🔍 Why use this?
• Identify overextended downtrends or potential bounce zones
• Spot stocks forming major bottoms
• Use it as a mean-reversion or strength filter
✅ Features
• Customizable lookback (default: 66 days)
• Clean, clutter-free plot
• Works on any timeframe and asset
Crypto Spot Volume Ratio**Overview**
This TradingView Pine Script v7 indicator computes and visualizes each exchange’s spot‐volume share relative to the average across ten major venues. By plotting ten “volume coefficients” around a baseline of 1, you immediately see which exchanges are trading above or below the aggregate average in each bar (timeframe period).
---
## 1. Data Sources
The script pulls spot trading volume for the current symbol (e.g. BTC/USDT, ETH/USDT, SOL/USDT, etc.) from these ten exchanges:
* Binance
* OKX
* Bybit
* KuCoin
* Gate.io
* HTX
* Kraken (USD pair)
* Coinbase (USD pair)
* Bitstamp (USD pair)
* Bitfinex (USD pair)
For USD-quoted venues (Coinbase, Kraken, Bitstamp, Bitfinex), it automatically converts the symbol suffix from “USDT” to “USD.”
---
## 2. Calculation Steps
1. **Fetch Volumes**
Using `request.security`, the script retrieves `volume` from each exchange’s contract at the chart’s timeframe.
2. **Sum and Average**
* **Total Volume (`sumVol`)** = sum of all ten exchanges’ volumes.
* **Average Volume (`avgVol`)** = `sumVol / 10‘.
3. **Compute Coefficients**
For each exchange *i*,
A coefficient > 1 means that exchange’s volume is above the ten‐exchange average; < 1 means below average.
4. **Rendering**
* **Table**: A horizontal row in the top‐right corner lists each enabled exchange’s coefficient (formatted to two decimals).
* **Plots**: Ten overlaid line plots show each exchange’s coefficient time series. A dashed horizontal line at **1** marks the average baseline.
---
## 3. Configuration Options
In the indicator’s settings panel, you can toggle **“Show …”** for any of the ten exchanges. Disabling an exchange will hide both its table entry and its plotted line—but does **not** change the average calculation (which always divides by 10).
---
## 4. Interpretation & Significance
* **Relative Activity**: By normalizing each venue to the ten‐exchange average, you spot shifts in where volume is concentrated.
* **Liquidity Insights**: Exchanges consistently above 1 may offer deeper liquidity, tighter spreads, or attract more order flow. Those below 1 may lag on volume, signaling lower activity or potential outages.
* **Arbitrage & Flow Monitoring**: Sudden spikes on a particular exchange (coefficient >> 1) can indicate localized buying/selling pressure, useful for spotting arbitrage windows, large order flows, or exchange-specific events.
* **Market Health**: Tracking the dispersion of these coefficients over time gives you a quick visual of how balanced or skewed the overall market activity is across venues.
---
## 5. How It Works in Practice
1. **Attach** this indicator to any USDT or USD spot chart (e.g., BTCUSDT, ETHUSDT).
2. **Observe** which exchange lines rise above the dashed **1** line—those venues are currently trading more volume than the average of the ten.
3. **Use** the table to see exact coefficient values each bar.
4. **Toggle** exchanges on/off to focus on specific venues without affecting the universal average baseline.
By comparing ten exchanges on a single pane, you gain real-time clarity on where crypto liquidity and activity are most intense—and where it temporarily wanes—empowering more informed trading, arbitrage strategies, and market‐structure analysis.
Lokie's RSI + VWAP + EMA Scalper [Fresh Edition]Lokie’s RSI + VWAP + EMA Scalper
Built for fast, smart scalping on 1–5 min charts. Combines RSI momentum, EMA crossovers, and VWAP zone bias to highlight clean buy/sell entries.
No FOMO signals. No fluff. Just tactical precision.
Perfect for momentum traders who want clarity, not clutter.
By DerekFWIN