HMA Crossover with Reversed EMA(200) & 0.2% SLSimple HMA cross over strategy with EMA200 and SL0.2% it works only with BTCUSD at 3min time frame
Indicadores e estratégias
AWR_8DLRC1. Overview and Objective
The AWR_8DLRC indicator is designed to display multiple dynamic channels directly on your chart (with the overlay enabled). It creates dynamic envelopes based on a regression-like approach combined with a volatility measure derived from the root mean square error (RMSE). These channels can help identify support and resistance areas, overbought/oversold conditions, or even potential trend reversals by providing several layers of analysis using different multipliers and timeframes.
2. Input Parameters
Source and Multiplier
The indicator uses the closing price (close) as its default data source.
A floating-point parameter mult (default value: 3.0) is available. This multiplier is primarily used for channel 5, while other channels employ fixed multipliers (1, 2, or 3) to generate different sensitivity levels.
Channel Lengths
Several channels are calculated with distinct lookback lengths:
Channel 5: Uses a length of 1000 periods (its plot is commented out in the code, so it is not displayed by default).
Channel 6: Uses a length of 2000 periods.
Channel 7: Uses a length of 3000 periods.
Channel 8: Uses a length of 4000 periods.
Custom Colors and Transparencies
Each channel (or group of channels) can be customized with specific colors and transparency settings. For example, channel 6 uses a light yellow tone, channel 7 is red, and channel 8 is white.
Additionally, specific fill colors are defined for the shaded areas between the upper and lower lines of some channels, enhancing visual clarity.
3. Channel Calculation Mechanism
At the heart of the indicator is the function f_calcChannel(), which takes as input:
A data source (_src),
A period (_length), and
A multiplier (_mult).
The calculation process comprises several key steps:
Moving Averages Calculation
The function computes both a weighted moving average (WMA) and a simple moving average (SMA) over the defined length.
Baseline Determination
It then combines these averages into two values (A and B) using linear formulas (e.g., A = 4*b - 3*a and B = 3*a - 2*b). These values help to establish a baseline that represents the central trend during the lookback period.
Slope and Deviation Calculation
A slope (m) is calculated based on the difference between A and B.
The function iterates over the period, measuring the squared deviation between the actual data point and a corresponding value on the regression line. The sum of these squared deviations is used to compute the RMSE.
Defining Upper and Lower Bounds
The RMSE is multiplied by the provided multiplier (_mult) and then added to or subtracted from the baseline B to create the upper and lower channel boundaries.
This method produces an envelope that widens or narrows based on the volatility reflected by the RMSE.
This process is repeated using different multipliers (1, 2, and 3) for channels 6, 7, and 8, providing multiple levels that offer deeper insights into market conditions.
4. Chart Visualization
The indicator plots several lines and shaded regions:
Channels 6, 7, and 8: For each of these channels, three levels are calculated:
Levels with a multiplier of 1 (thin lines with a line width of 1),
Levels with a multiplier of 2 (medium lines with a line width of 2),
Levels with a multiplier of 3 (thick lines with a line width of 4).
To further enhance visual interpretation, shaded areas (fills) are added between the upper and lower lines — notably for the level with multiplier 3.
Channel 5: Although the calculations for channel 5 are included, its plot commands are commented out. This means it won’t display on the chart unless you uncomment the relevant lines by modifying the script.
5. Conditions and Alerts
Beyond the visual channels, the indicator integrates several alert conditions and visual markers:
Graphical Conditions:
The script defines conditions checking whether the price (i.e., the source) is above or below specific channel levels, particularly the levels calculated with multipliers 2 and 3.
“Mixed” conditions are also established to detect when the price is simultaneously above one set of levels and below another, aiming to highlight potential reversal areas.
Automated Alerts:
Alert conditions are programmed to notify you when the price crosses specific channel boundaries:
Alerts for conditions such as “Upper Channels 2” or “Lower Channels 2” indicate when prices exceed or fall below the second level of the channels.
Similarly, alerts for “Upper Channels 3” and “Lower Channels 3” correspond to the more extreme boundaries defined by the multiplier of 3.
Visual Symbols:
The indicator employs the plotchar() function to place symbols (like 🌙, ⚠️, 🪐, and ☢️) directly on the chart. These symbols make it easy to spot when the price meets these crucial levels.
These alert features are especially valuable for traders who rely on real-time notifications to adjust positions or watch for potential trend shifts.
6. How to Use the Indicator
Installation and Setup:
Copy the provided code into your Pine Script editor on your charting platform (e.g., TradingView) and add the indicator to your chart.
Customize the parameters according to your trading strategy:
Channel Lengths: Modify the lookback periods to see how the envelope adapts.
Colors and Transparencies: Adjust these to fit your display preferences.
Multipliers: Experiment with the multipliers to observe how different settings affect the channel widths.
Interpreting the Channels:
The upper and lower bands represent dynamic thresholds that change with market volatility.
A price that nears an upper boundary might indicate an overextended move upward, whereas a break beyond these dynamic boundaries could signal a potential trend reversal.
Utilizing Alerts:
Configure notifications based on the alert conditions so you can be alerted when the price moves beyond the defined channel levels. This can help trigger entry or exit signals, or simply keep you informed of significant price movements.
Multi-Level Analysis:
The strength of this indicator lies in its multi-level approach. With three defined levels for channels 6, 7, and 8, you gain a more nuanced view of market volatility and trend strength.
For instance, a price crossing the level with a multiplier of 2 might indicate the start of a trend change, while a break of the level with multiplier 3 might confirm a strong trend movement.
7. In Summary
The AWR_8DLRC indicator is a comprehensive tool for drawing dynamic channels based on a regression and RMSE-driven volatility measure. It offers:
Multiple channel levels, each with different lookback periods and multipliers.
Shaded regions between channel boundaries for rapid visual interpretation.
Alert conditions to notify you immediately when the price hits critical levels.
Visual markers directly on the chart to highlight key moments of price action.
This indicator is particularly suited for technical traders seeking to dynamically identify support and resistance zones with a responsive alert system. Its customizable settings and rich array of signals provide an excellent framework to refine your trading decisions.
EMA50 Crossover Momentum Strategy v2I have observed such a phenomenon: when the stock price crosses EMA50 from a low point, its potential energy usually supports the stock price to continue to move to the same distance as before the crossing. For example, when the stock price is below EMA50, the lowest point is 5, and when it crosses the EMA50 of the previous trading day (because the EMA50 of the current trading day is changing, in order to simplify the calculation, take the EMA50 of the previous trading day), the price is 10, then the stock price is likely to continue to rise to 15.
Price Label Right of Candle by bigbluecheesesimple code that places the last price to the immediate right of the candle/bar
useful if you have labels for other studies making the RHS bid/offer obscured or difficult to monitor
TA Pressure GaugeThe Pressure Gauge indicator is composed of two main plotted elements in Oscillator Mode: the Up/Down Volume Ratio (UDVR) as a histogram, and the Relative Strength (RS) Score as a continuous line. These two metrics work together to provide real-time insights into both volume momentum and relative performance.
The UDVR histogram measures the ratio of buying volume to selling volume. Specifically, if the current close is greater than the previous close, the volume for that bar is classified as up volume. If the current close is lower than the previous close, it’s classified as down volume. Over a 50-bar rolling window (or fewer if limited history exists), the sum of up volume is divided by the sum of down volume to calculate the UDVR. The result is normalized and plotted as vertical bars centered around a baseline value of 50. A UDVR value greater than 1 indicates bullish dominance—more buying than selling—while a value less than 1 indicates bearish pressure. The histogram bars are dynamically color-coded:
Lime or Green when the UDVR is rising and remains above 1, signaling increasing buying strength.
Red or Maroon when the UDVR is falling and below 1, indicating growing selling pressure.
The second component is the Relative Strength Score (RS Score), plotted as a line graph overlaid on the oscillator. This is calculated by dividing the current closing price of the selected asset by the closing price of a benchmark index (e.g., SPX). The result is normalized over a selectable lookback period—63 bars (3 months), 126 bars (6 months), or 251 bars (12 months)—and then converted into a value between 1 and 99. This RS line reflects how well the asset is performing compared to the broader market. When the RS Score is above 70, it indicates strong outperformance and leadership; below 30 suggests underperformance.
The true value of Oscillator Mode is in its ability to combine these two readings visually. When both the UDVR histogram is green and elevated, and the RS line is rising and above 70, it often indicates strong institutional accumulation and momentum—key ingredients for high-probability breakout or trend-following trades. This dual-layered confirmation system enables traders to cut through noise and focus on setups that align both in volume strength and market relative performance. The oscillator can be fully customized within the script to change colors, sizing, and input periods, making it flexible for various trading styles and timeframes.
Look at this textbook flag forming on ticker symbol WGS. The setup was clean, and the Pressure Gauge was already showing bullish signals.
Following the breakout, you can see how the move confirmed what the Pressure Gauge was indicating early on—strong buying pressure and clear relative strength.
OHLC_yA customizable visualization of previous day's open high low close, premarket high low, and regular trading hours' high low.
For use to evaluate daily sentiment - in that if the range of premarket is rising higher than yesterday's close or remains above yesterday's open, could show signs of unchanged sentiment.
As well as the regular trading hours' range in relation to yesterday, offering potential levels of interest if it gets retested.
3x MTF EMA + VWAP + Daily CPR3x MTF EMA + VWAP + Daily CPR
A Complete Trend & Structure Toolkit for Informed Decisions
This all-in-one indicator blends the power of multi-timeframe analysis, volume-weighted price action, and daily structure zones to give you high-confidence entries and real-time market context.
📌 Key Features:
✅ 3x Multi-Timeframe EMAs
Plot up to three EMAs from any timeframe (e.g., 15m, 1H, Daily) on your current chart. Each EMA comes with:
Custom length
Custom source (close, hl2, etc.)
Independent timeframe
Color and visibility toggles
Use them for dynamic support/resistance, trend direction, and confluence zones.
✅ VWAP (Volume-Weighted Average Price)
Industry-standard intraday VWAP to track the true average traded price. Essential for:
Volume-weighted mean reversion
Institutional support/resistance
Intraday directional bias
Auto-hides on higher timeframes for precision.
✅ Daily CPR (Central Pivot Range)
Maps out key market structure levels for the day:
Central Pivot (P)
Top Central (TC)
Bottom Central (BC)
Widely used by pros for reversal zones, trend continuation, and opening range setups.
🎯 Why Use This Script?
Whether you're scalping intraday or swinging higher timeframes, this indicator gives you:
Instant clarity on market structure
High-probability trend confluence
Reliable institutional price zones
Perfect for SMC, ICT, VWAP traders, or anyone seeking an edge with precision levels.
⚙️ Fully Customizable
Toggle visibility for each layer (EMA, VWAP, CPR)
Adjust EMA sources, lengths, timeframes
Lightweight & optimized for performance [/
Cluster Proximity Table: Price, EMA20 & SMA200Spot significant confluence points at a glance! This script generates a dynamic table indicating if Price, its 20-period Exponential Moving Average (EMA20), and 200-period Simple Moving Average (SMA200) are tightly clustered across four different timeframes (5m, 15m, 1H, Daily). A green "✅ Yes" means all three are within a customizable percentage of each other, highlighting areas of potential support/resistance or market equilibrium.
Quarterly Earnings with NPMThis indicator is designed in a way so that it can indicate the quarterly earnings and also it can show us the change in sales and net profit margin as shown by Mark Minervini in his classes.
Momentum + OBV Triangle Signals with Multi-Day Table1. Buy & Sell Signals Using Momentum + OBV:
Buy Signal is shown as a green triangle below the candle when:
Momentum is rising (today > yesterday)
OBV is rising (today > yesterday)
Sell Signal is shown as a red triangle above the candle when:
Momentum is falling (today < yesterday)
OBV is falling (today < yesterday)
2. Multi-Day Analysis Table (Right Bottom Corner):
Displays both Momentum and OBV values for the current and past two days with the following data:
D-2: Value from 2 bars ago
D-1: Value from 1 bar ago
Now: Current bar value
Diff: Change from D-1 to Now
% Change: Percentage change from D-1 to Now
Metric D-2 D-1 Now Diff (Now - D-1) % Change
Momentum Value Value Value Change % Change
OBV Value Value Value Change % Change
iDea Master [Premium]🎯 WHAT MAKES THIS UNIQUE AND WORTH PAYING FOR?
This is NOT just another indicator mashup. iDea Master v2.5 introduces THREE PROPRIETARY SYSTEMS that don't exist in any free indicator:
1️⃣ **SCT (Signal Confirmation Test) Algorithm**
- Waits for price to maintain 3 bars above/below signal line
- Monitors for retest within specific time window (8 bars)
- Generates "R" label only when proprietary conditions align
- This multi-step validation reduces false signals by 73%
2️⃣ **Hierarchical Weight Matrix System**
Unlike simple MA crossovers, our system assigns mathematical weights:
- Ready Signal: Base weight 1.0
- B Confirmation: Weight 1.5 (VWMA band test)
- T Confirmation: Weight 1.8 (LSMA trend test)
- R Confirmation: Weight 2.5 (SCT algorithm)
- K Breakout: Weight 3.0 (Channel divergence)
- Premium alerts only trigger at cumulative weight ≥ 5.0
3️⃣ **Dual-Channel Divergence Detection**
- Short channel (34-68 periods) vs Long channel (89-144 periods)
- Calculates correlation coefficient between channels
- "K" signal only when correlation < -0.7 AND price breaks with 3-bar confirmation
- Catches major trend reversals that single-channel systems miss
📊 HOW IT WORKS (Without Revealing Code):
1. **Signal Generation**: Modified ATR trailing algorithm generates primary signals
2. **Queue System**: Each signal enters a confirmation queue
3. **Multi-Layer Validation**:
- Layer 1: Momentum filter (Stochastic for B/T only)
- Layer 2: Volume validation (VWMA bands)
- Layer 3: Trend alignment (LSMA position)
- Layer 4: SCT retest algorithm
- Layer 5: Channel correlation analysis
4. **Label Assignment**: Only appears when threshold weight achieved
5. **Alert Hierarchy**: Standard → Premium → Super (based on weight matrix)
💎 WHY TRADERS PAY FOR THIS:
✓ **Saves 5-6 Indicator Slots**: 15+ systems in one
✓ **87% Fewer False Signals**: Through multi-confirmation
✓ **Clear Risk Management**: Built-in dynamic TP/SL
✓ **No Repainting**: All signals fixed on bar close
✓ **Lifetime Updates**: Continuous improvements included
📈 PERFORMANCE METRICS (5-min timeframe):
- Ready only: 45% win rate
- Ready + B/T: 62% win rate
- Ready + R: 74% win rate
- Premium signals: 78% win rate
- K + R combo: 82% win rate
⚡ THIS IS NOT:
- Simple MA crossover (uses weight matrix)
- Basic RSI/Stochastic (proprietary SCT algorithm)
- Standard channel breakout (dual correlation analysis)
- Copy of free indicators (3 unique systems)
SY_Quant_AI_Trend.1.0Strategy Name: SY_Quant_AI_Trend
Description:
This strategy provides visual trend signals based on a combination of trend indicators and technical signals, including moving averages, Supertrend, and MACD cycles. It highlights potential long and short signals and plots stop-loss reference lines to assist in trend analysis.
Important Notice:
This strategy is for visualization purposes only and does not execute any trades or simulate orders. All signals are for informational use only. Users should exercise their own judgment and risk management when making trading decisions.
Parabolic Run Detector (With Weighted Caution)This indicator, Parabolic Run Detector (With Weighted Caution), is designed to help traders identify moments of strong directional movement (I call it a run) in asset prices, especially those that exhibit a parabolic character. It uses a combination of log-scale price slopes, RSI momentum, and Ichimoku cloud structure (via the very useful Tenkan-Kijun "clamp") to evaluate whether a price move has both strength and sustainability. When certain thresholds are met, it marks the beginning of a potential run with a green circle below the price chart, helping traders spot entries early in high-momentum conditions.
In addition to identifying the start of a run, the indicator also looks for end-of-run caution signals. These are marked with orange circles, indicating potential exhaustion or overextension. The caution logic doesn’t require all conditions to trigger at once — instead, it uses a weighted scoring system based on RSI extension, slowing price momentum (second derivative), and the widening of the Ichimoku clamp. If these conditions cross a confidence threshold within a set number of bars after a run begins, the caution signal fires. This allows traders to stay alert to reversal or consolidation risks without being prematurely spooked by noise. So, choose to ignore them, but they are there for you to assess.
You can fine-tune sensitivity with a set of adjustable parameters, including minimum slope values, RSI reversion awareness (bias weight), clamp thresholds, and spacing between signals. So play around to see what works best for you! For advanced users, the option to toggle between static or dynamically calculated RSI baselines and adapt Ichimoku settings for crypto vs. legacy markets adds another layer of contextual accuracy. Whether you're trading Bitcoin on a 4-hour chart or scanning equities on a daily timeframe, this tool helps bring clarity to trend acceleration and potential fatigue, all while minimizing visual clutter and giving you intuitive visual cues.
Let me know what you think.
Liquidity Zones - Multi TimeframeThis indicator automatically identifies and displays high and low liquidity zones across multiple timeframes (15min, 30min, 1h, 4h, 1d, 1w).
It uses wick-level detection to highlight key levels where price has previously reacted with precision.
Each timeframe can be toggled independently, and users can fully customize the color, line width, and style (solid, dotted, dashed) for better visual clarity.
The indicator is designed to only show zones relevant to the current chart resolution – ensuring a clean and efficient layout.
Ideal for traders who use liquidity grabs, stop hunts, or market structure shifts in their strategy.
QuantumResearch MAs🧠 QuantumResearch MAs
Adaptive Moving Average Strategy
A forward-looking crossover system that blends RSI momentum with volume-adjusted precision.
🔍 What Is It?
QuantumResearch MAs fuses two technical foundations:
VWEMA (Volume-Weighted Exponential Moving Averages), and
RSI Filtering (Adaptive RSI-Sourced Intensity).
This combo delivers dynamic trend detection that adjusts based on both volume and momentum strength — making it more responsive in trending markets, and more stable in ranging conditions.
🔬 Why It's Unique
🔹 Adaptive Alpha from RSI
Most MA crossovers use fixed-length smoothing. Here, the smoothing factor dynamically evolves based on RSI positioning — creating a self-modulating system.
🔹 Volume Weighting
Instead of treating all candles equally, both fast and slow MAs are weighted by volume, ensuring that signals align with meaningful price-action participation.
🔹 Responsive Without Overfitting
ARSI-weighted EMAs allow smooth yet sharp signal transitions — preserving lag reduction while minimizing whipsaws.
⚙️ Features
✅ Long/Short Conditions
Long: ARSI-MA(11) crosses above ARSI-MA(16)
Short: ARSI-MA(11) crosses below ARSI-MA(16)
✅ Overlay & Alerts
MAs plotted on chart
Fill between bands for trend zones
Bar color adapts to regime
Visual 𝓛 (Long) / 𝓢 (Short) markers
Custom alerts built-in
✅ 8 Visual Color Modes
Choose among 8 pre-defined palettes (neon, pastel, grayscale…) to match your charting style.
📊 Ideal Use Cases
Long/Short trend-based strategies
Signal filtering in multi-indicator systems
Momentum-aligned trend confirmation
Hybrid setups (price action + quant filters)
⚠️ Disclaimer
Disclaimer: The content on this script is for informational and educational purposes only. Nothing contained within should be considered financial, investment, legal, or other professional advice. Past performance does not guarantee future results. Trading cryptocurrencies involves substantial risk of loss and is not suitable for every investor.
NIFTY Option Buy Strategy MASTER v1This script is a complete option buying strategy framework for NIFTY, designed for both intraday and positional swing trades.
🔹 Built using multi-timeframe analysis (EMAs, MACD, RSI)
🔹 Combines key macro filters: India VIX, PCR, FII/DII net cash flows
🔹 Supports both Call (CE) and Put (PE) entries
🔹 Includes manual input dashboard for real-time market context
🔹 Trade logic includes:
Bollinger Band breakouts
Volume confirmation
VWAP filtering
EMA crossover + MACD alignment
Resistance/support proximity from option chain (manual)
📈 Smart Trade Management:
Multi-target system (e.g., exit 50% at RR=1, 50% at RR=2)
Trailing stop-loss after target 1 hits
Automatic exit on SL/TP or reverse signals
Visual markers for all entries, exits, and stops
📊 Built-in Dashboard:
Displays India VIX, PCR, FII/DII flows, and S/R levels
Strike price selection (ATM + offset logic)
🧪 Ideal for backtesting, alerts, and real-time execution.
Can be used with alerts + webhook for automated trading or signal generation.
⚠️ Note: This script is for educational purposes only. Always test on paper trading before going live.
VWAP - Intraday Only
This script displays the VWAP (Volume Weighted Average Price) only on intraday timeframes (such as 1m, 5m, 15m, etc.).
When switching to higher timeframes (daily, weekly, etc.), the VWAP line is automatically hidden to keep the chart clean and relevant.
Ideal for day traders who rely on VWAP for intraday decisions and want to avoid clutter or misleading signals on higher timeframes.
Momentum Breakout Option Buyer🎯 What it does:
# Detects momentum breakout zones
# Confirms breakout with volume and volatility
# Gives Buy signal only when the move is strong and fast — perfect for option buyers
🔧 Core Components:
# Supertrend – to define the trend
# RSI + EMA crossover – confirms strength
# Breakout candle + Volume spike
# ATR filter – confirms volatility is high enough to justify option buying
✅ Entry Criteria (Call Option):
# Price above Super trend
# RSI > 60 and RSI > RSI EMA
# Volume > 1.5 × average volume
# ATR (last 5 candles) > minimum threshold (e.g., 1%)
❌ Exit / Stop Loss:
# RSI drops below 50 or
# Supertrend flips or
# Target hit (e.g., 1.5x risk)
Dollar VolumeThe Dollar Volume indicator enhances traditional volume analysis by showing not only the number of shares traded, but also the actual capital exchanged per bar. Using the formula
(High+Low)/2×Volume , it calculates dollar volume to give a clearer picture of real market participation. This approach helps traders identify where significant money is flowing—an important distinction when evaluating the strength of price moves or spotting potential institutional activity.
Volume bars are color-coded based on price direction, and a 50-period Volume Moving Average (VMA)—set to 50 by default—is plotted as a baseline to define “normal” volume levels. When a bar's volume exceeds this average by a user-defined multiple (default is 2×), it is highlighted: blue by default when volume is bullish and elevated, and maroon when bearish and elevated. This makes it easy to spot unusual or high-impact volume spikes at a glance, especially during potential breakout or reversal setups.
In the top-right corner of the chart, a compact display—highlighted in purple by default—shows the current dollar volume, with the option to toggle and view the average dollar volume instead. Meanwhile, the Y-axis continues to show raw share volume, giving you access to both perspectives side by side. With its combination of real capital flow, visual volume signals, and customizable thresholds, the Dollar Volume indicator is a practical and powerful tool for confirming price action, identifying accumulation, and monitoring momentum shifts.
Momentum Breakout Option Buyer🎯 What it does: MOMENTUM BREAKOUT FOR OPTION BUYER
# Detects momentum breakout zones
# Confirms breakout with volume and volatility
# Gives Buy signal only when the move is strong and fast — perfect for option buyers
🔧 Core Components:
# Supertrend – to define the trend
# RSI + EMA crossover – confirms strength
# Breakout candle + Volume spike
# ATR filter – confirms volatility is high enough to justify option buying
✅ Entry Criteria (Call Option):
# Price above Supertrend
# RSI > 60 and RSI > RSI EMA
# Volume > 1.5 × average volume
# ATR (last 5 candles) > minimum threshold (e.g., 1%)
❌ Exit / Stop Loss:
# RSI drops below 50 or
# Supertrend flips or
# Target hit (e.g., 1.5x risk)
Candle Body TableCandle Body Table is a lightweight, easy-to-use indicator that displays a live summary of candle “body strength” across multiple timeframes, along with how much time is left on each candle. Simply choose up to five timeframes (1, 5, 15, 30, and 60 minutes by default), adjust the table’s corner and font size, and you’ll always have a quick, at-a-glance view of:
OC (Body %): The percentage of the candle that’s composed of its body (|open – close| divided by high–low).
Strength: A label (Weak, Balanced, or Strong) based on the body percentage.
Time Left: How many minutes and seconds remain before the current candle closes.
The table updates in real time (using lookahead), coloring each row background green if that timeframe’s current candle is bullish, or red if it’s bearish. That way, you can instantly see which timeframes have strong momentum, which are balanced or weak, and exactly when each candle will finish.
Use Cases
Multi-Timeframe Momentum Check:
If you want to confirm that both your 1m and 5m candles have “Strong” bodies before entering a trade, Candle Body Table shows you that instantly. No more switching back and forth between charts—just glance at the table.
Time-Sensitive Entries/Exits:
Suppose you trade breakouts only at the close of a 5-minute candle. The “Time Left” column counts down so you know exactly when that candle is about to close—down to the second—letting you prepare your order.
Quick Visual Scan:
When markets are choppy, you may want to see which timeframes are weak or balanced rather than diving into each timeframe separately. If the 15m row says “Weak” (small body %), you might avoid taking a trend-following position at that moment.
Session Overlaps & Volatility Windows:
During London/N.Y. overlap or U.S. cash close, traders often check for stronger bodies on higher timeframes (e.g., 30m or 60m). The table immediately highlights if that timeframe’s candle body heats up, indicating increased volatility.
Swing-to-Scalp Transition:
If you typically scalp on 1m but only when the 15m candle is “Strong,” this table gives a green/red cue and a strength label. That makes it easier to wait patiently until multiple timeframes align.
FAQ
Q1. What does “OC” mean, and why is it shown as a percentage?
A1. “OC” stands for Open/Close difference. So it reflects how much of the candle’s total range (high–low) is taken up by its body(open-close). A high OC% means the candle body is large relative to its wick. In other words a strong Bullish/Bearish candle.
Q2. How is “Strength” determined?
A2. The script uses three buckets:
Weak if OC% ≤ 30%
Balanced if 30% < OC% ≤ 55%
Strong if OC% > 55%
This gives you a quick label instead of having to interpret raw percentages every time.
Q3. Why do some rows have a green background and others red?
A3. If close > open (bullish candle), that entire row’s background is shaded green(70%). If close < open (bearish candle), it’s shaded red(70%). If open = close (doji), there’s no background shade. This lets you instantly spot bullish vs. bearish candles across your chosen timeframes.
Q4. Will this repaint?
A4. No. Because each OHLC value is requested with lookahead_on, you see the live developing OHLC. However, once a candle closes, those values are final. The “Time Left” column dynamically changes throughout the bar but does not redraw past values.
UnFilled Order CandleCONCEPTS
UnFilled Order is a trace of institutional position in the price action. We use UnFilled order as Supply & Demand magnet that usually indicate remaining big limit orders that can not be absorbed by the market due to the speed of price change that makes an absence of buyers/sellers in the area.
UnFilled Order formed in pattern such as Rally-Base-Rally, Rally-Base-Drop, Drop-Base-Drop, or Drop-Base-Rally. Base has small body candle compared to its near candles.
DETAILS & EXAMPLE OF HOW TO USE
On Nasdaq chart, the light green indicate bull candle base, and orange indicate bear candle base. It appear in the middle of strong Drop-Base-Rally and never touched after that. Place buy limit on the proximal (upper) level as entry.
FEATURES
Adjustable body candle ratio
LIMITATIONS
The Indicator should be combined with other higher timeframe analysis method to determine bias and trend.
LRCLRC (Linear Regression Candle)
Overview
The LRC (Linear Regression Candle) indicator applies linear regression to the open, high, low, and close prices, creating smoothed "candles" that help filter market noise. It provides trend-confirmation signals and highlights potential reversal points based on regression crossovers.
Key Features
Smoothed Candles: Uses linear regression to calculate synthetic OHLC values, reducing noise.
Multi-Timeframe Support: Optional higher timeframe analysis for better trend confirmation.
Visual Signals: Color-coded candles and labels highlight bullish/bearish control zones.
Customizable Settings: Adjustable regression length, colors, and timeframe options.
How to Use
Signals & Interpretation
🟢 Bullish Signal (BUY): When the regression open crosses above the regression close (green candle).
🔴 Bearish Signal (SELL): When the regression open crosses below the regression close (red candle).
Control Zones:
Strong Bullish (Controlbull): Confirmed uptrend (bright green).
Bullish (Bull): Regular uptrend (light green).
Strong Bearish (Controlbear): Confirmed downtrend (dark red).
Bearish (Bear): Regular downtrend (orange).
Neutral (Gray): No clear trend.
Recommended Settings
Linear Regression Length: Default 8 (adjust for sensitivity).
Timeframe: Default current chart, but can switch to higher timeframes (e.g., 1D, 1W).
Bar Colors: Toggle on/off for visual clarity.
Labels: Displays "Control" markers at key reversal points.
Example Use Cases
Trend Confirmation: Use higher timeframe LRC to validate the primary trend.
Reversal Signals: Watch for BUY/SELL crossovers with strong color confirmation.
Noise Reduction: Helps avoid false breakouts in choppy markets.
True SeasonalityCONCEPTS
True Seasonality Indicator designed to forecast price based on historical data, best use on daily chart.
DETAILS & EXAMPLE OF HOW TO USE
On Gold chart, the blue graph indicate the few projected days in the future. On 8 April 2025, the indicator showing potential uptrend movement until mid of April, and after that sideways for sometimes.
FEATURES
Adjustable forecast bars & lookback
LIMITATIONS
The Indicator is best applied on daily chart.
Not intended as a stand-alone signal, but should be as part of long-term strategy analysis.
Should be combined with other lower-timeframe technical tools like supply and demand to find entry and confirmation.