Smart Money Proxy IndexOverview
The Smart Money Proxy Index (SMPI) is an educational tool that attempts to identify potential institutional-style behavior patterns using publicly available market data. This comprehensive tool combines multiple institutional analysis techniques into a single, easy-to-read 0-100 oscillator.
Important Disclaimer
This is an educational proxy indicator that analyzes volume and price patterns. It cannot identify actual institutional trading activity and should not be interpreted as tracking real "smart money." Use for educational purposes and combine with other analysis methods.
Inspiration & Methodology
This indicator is inspired by MAPsignals' Big Money Index (BMI) methodology but uses publicly available price and volume data with original calculations. This is an independent educational interpretation designed to teach smart money concepts to retail traders.
What It Analyzes
SMPI tracks potential "smart money" activity by combining:
Block Trading Detection - Identifies unusual volume surges with significant price impact
Money Flow Analysis - Volume-weighted price pressure using Money Flow Index
Accumulation/Distribution Patterns - Modified On-Balance Volume signals
Institutional Control Proxy - End-of-day positioning and control analysis
Key Features
– Multi-Component Analysis - Combines 4 different institutional detection methods
– BMI-Style 0-100 Scale - Familiar oscillator range with clear extreme levels
– Professional Visualization - Dynamic colors, gradient fills, and clean data table
– Comprehensive Alerts - Buy/sell signals plus divergence detection
– Fully Customizable - Adjust all parameters, colors, and display options
– Non-Repainting Signals - All alerts use confirmed data for reliability
– Educational Focus - Designed to teach institutional flow concepts
How to Interpret
Above 80: Potential smart money distribution phase (bearish pressure)
Below 20: Potential smart money accumulation phase (bullish opportunity)
Signal Generation: Buy signals when crossing above 20, sell signals when crossing below 80
Divergences: Price vs SMPI divergences can signal potential trend changes
Volume Confirmation: Higher volume ratios strengthen signal reliability
Best Practices
Timeframes: Works best on higher timeframes for institutional behavior analysis
Confirmation: Combine with other technical analysis tools and market context
Volume: Pay attention to volume confirmation in the data table
Context: Consider overall market conditions and fundamental factors
Risk Management: Not recommended as standalone trading system
Customizable Parameters
Block Volume Threshold: Sensitivity for unusual volume detection (default: 2.5x average)
SMPI Smoothing Period: Index calculation smoothing (default: 25 bars)
Extreme Levels: Overbought/oversold thresholds (default: 80/20)
Money Flow Length: MFI calculation period (default: 14)
Visual Options: Colors, signals, and display preferences
Available Alerts
Buy Signal: SMPI crosses above oversold level (20)
Sell Signal: SMPI crosses below overbought level (80)
Extreme Levels: Alerts when reaching overbought/oversold zones
Divergence Detection: Bullish and bearish price vs SMPI divergences
Educational Purpose & Limitations
This indicator is designed as an educational proxy for understanding institutional flow concepts. It analyzes publicly available price and volume data to identify potential smart money behavior patterns.
Cannot access actual institutional transaction data
Signals may be slower than day-trading indicators (intentionally designed for institutional timeframes)
Should be used in conjunction with other analysis methods
Past performance does not guarantee future results
What Makes This Different
Unlike simple volume or momentum indicators, SMPI combines multiple institutional analysis techniques into one comprehensive tool. The multi-component approach provides a more robust view of potential smart money activity.
M-oscillator
Global Bond Yields Monitor [MarktQuant]Global Bond Yields Monitor
The Global Bond Yields Monitor is designed to help users track and compare government bond yields across major economies. It provides an at-a-glance view of short- and long-term interest rates for multiple countries, enabling users to observe shifts in global fixed-income markets.
Key Features:
Multi-Country Coverage: Includes major advanced and emerging economies such as the United States, China, Japan, Germany, United Kingdom, Canada, Australia, and more.
Multiple Maturities: Displays yields for the 2-year, 5-year, 10-year, and 30-year maturities (20-year for Russia).
Dynamic Yield Data: Plots real-time yields for the selected country directly from TradingView’s data sources.
Weekly Change Tracking: Calculates and displays the yield change from one week ago ( ) for each maturity.
Table Visualization: Option to display a compact data table showing current yields and weekly changes, color-coded for easier interpretation.
Visual Yield Curve Comparison: Plots yield lines for short- and long-term maturities, with shaded areas between curves for visual clarity.
Customizable Display: Choose table placement and whether to show or hide the weekly change table.
Use Cases
This script is intended for analysts, traders, and investors who want to monitor shifts in sovereign bond markets. Changes in yields can reflect adjustments in monetary policy expectations, inflation outlook, or broader macroeconomic trends.
❗Important Note❗
This indicator is for market monitoring and educational purposes only. It does not generate trading signals, and it should not be interpreted as financial advice. All data is sourced from TradingView’s available market feeds, and accuracy may depend on the source data.
Non-Repainting Buy/Sell Oscillator B Dadasaheb//@version=5
indicator("Non-Repainting Buy/Sell Oscillator", overlay=false, max_labels_count=500)
// Inputs
fastLen = input.int(9, "Fast EMA Length", minval=1)
slowLen = input.int(21, "Slow EMA Length", minval=1)
// EMA Calculation
fastEMA = ta.ema(close, fastLen)
slowEMA = ta.ema(close, slowLen)
// Non-Repaint Conditions: Check crossover on previous bar
buySignal = ta.crossover(fastEMA , slowEMA )
sellSignal = ta.crossunder(fastEMA , slowEMA )
// Oscillator value: 1 for buy, -1 for sell
oscValue = fastEMA > slowEMA ? 1 : fastEMA < slowEMA ? -1 : 0
// Colors
oscColor = oscValue > 0 ? color.green : oscValue < 0 ? color.red : color.gray
// Plot Oscillator
plot(oscValue, title="Buy/Sell Oscillator", color=oscColor, linewidth=2, style=plot.style_histogram)
hline(0, "Zero Line", color=color.gray)
hline(1, "Buy Zone", color=color.green, linestyle=hline.style_dotted)
hline(-1, "Sell Zone", color=color.red, linestyle=hline.style_dotted)
// Buy/Sell Labels (non-repainting)
plotshape(buySignal, title="Buy Label", location=location.bottom, style=shape.labelup, text="BUY", color=color.green, textcolor=color.white, size=size.tiny)
plotshape(sellSignal, title="Sell Label", location=location.top, style=shape.labeldown, text="SELL", color=color.red, textcolor=color.white, size=size.tiny)
// Alerts
alertcondition(buySignal, title="Buy Alert", message="BUY: Fast EMA crossed above Slow EMA (confirmed)")
alertcondition(sellSignal, title="Sell Alert", message="SELL: Fast EMA crossed below Slow EMA (confirmed)")
MACD-V (Volatility-Normalised Momentum) — Spiroglou, 2022Volatility-normalized MACD per Alex Spiroglou (2022):
MACD-V = (EMA12 − EMA26) / ATR26 × 100, so momentum is expressed in ATR units and stays comparable across assets/timeframes.
What you get
• Trend-colored line: green when price ≥ EMA200, red otherwise.
• Guides: ±50 / ±100 / 0; Extremes: ±140 (editable).
• Regime shading: OB ≥ +140 shaded red; OS ≤ −140 shaded green.
• Clean, on-curve markers: small circles on the MACD-V line at the four edge events — OB (enter ≥ +threshold), OBX (cross back down), OS (enter ≤ −threshold), OSX (cross back up).
• Text labels are off by default; optional toggle only for OB/OBX.
• Signal & histogram: EMA(9) of MACD-V and (MACD-V − Signal) columns.
• Alerts: OB/OS entries & exits included.
How to use
• Favor longs when MACD-V > 0 (ideally > +50); respect OB for possible exhaustion.
• Favor shorts when MACD-V < 0 (ideally < −50); respect OS for possible exhaustion.
• Because it’s ATR-normalized, thresholds transfer well across symbols and timeframes.
RSI by Tamil harmonic trader rajThis indicator will show RSI value in candle chart.
telegram channel link tamilharmonictraderraj
Buy/Sell Alert Strong Signals [TCMaster]This indicator combines Smoothed Moving Averages (SMMA), Stochastic Oscillator, and popular candlestick patterns (Engulfing, 3 Line Strike) to highlight potential trend reversal zones.
Main features:
4 SMMA lines (21, 50, 100, 200) for short-, medium-, and long-term trend analysis.
Trend Fill: Background shading when EMA(2) and SMMA(200) are aligned, visually confirming trend direction.
Stochastic Filter: Filters signals based on overbought/oversold conditions to help reduce noise.
Candlestick pattern recognition:
Bullish/Bearish Engulfing
Bullish/Bearish 3 Line Strike
Alerts for each pattern when Stochastic conditions are met.
⚠️ Note: This is a technical analysis tool. It does not guarantee accuracy and is not financial advice. Always combine with other analysis methods and practice proper risk management.
🛠 How to Use:
1. SMMA Settings
21 SMMA & 50 SMMA: Short- and medium-term trend tracking.
100 SMMA: Optional mid/long-term filter (toggle on/off).
200 SMMA: Major trend direction reference.
2. Trend Fill
EMA(2) > SMMA(200): Background shaded green (uptrend bias).
EMA(2) < SMMA(200): Background shaded red (downtrend bias).
Can be enabled/disabled in settings.
3. Stochastic Filter
K Length, D Smoothing, Smooth K: Adjust sensitivity.
Overbought & Oversold: Default 80 / 20 thresholds.
Buy signals only valid if Stochastic is oversold.
Sell signals only valid if Stochastic is overbought.
4. Candlestick Patterns
3 Line Strike:
Bullish: Three consecutive bullish candles followed by one bearish candle closing below the previous, with potential reversal.
Bearish: Three consecutive bearish candles followed by one bullish candle closing above the previous, with potential reversal.
Engulfing:
Bullish: Green candle fully engulfs the prior red candle body.
Bearish: Red candle fully engulfs the prior green candle body.
5. Alerts
Alerts available for each pattern when Stochastic conditions are met.
Example: "Bullish Engulfing + Stochastic confirm".
📌 Important Notes
Do not use this indicator as the sole basis for trading decisions.
Test on a demo account before applying to live trades.
Combine with multi-timeframe analysis, volume, and proper position sizing.
RSI (14) with Auto Zone Colors — Overbought/Oversold HighlighterThis indicator plots the Relative Strength Index (RSI 14) with dynamic color changes for instant visual clarity:
✅ Green line in overbought zone (≥70)
✅ Red line in oversold zone (≤30)
✅ White line in neutral range (30–70)
Includes reference lines at 70, 50, and 30 for quick decision-making. Perfect for spotting momentum extremes, divergences, and potential reversal points without squinting at numbers. Works on any timeframe.
QUANTUM MARKET ANALYZER X7QUANTUM MARKET ANALYZER X7 — Study Material (Learning & Teaching Guide)
What this tool is (and isn’t)
QUANTUM MARKET ANALYZER X7 is a multi-factor TradingView indicator that summarizes many classic signals into one dashboard. It does not predict the future or guarantee profits. It simply scores what is happening now using oscillators, moving averages, order-block behavior, trendline/channel context, Supertrend bias, and volume/flow clues—so you can make structured, risk-aware decisions.
________________________________________
Quick start (for brand-new traders)
1. Add the indicator to a chart.
2. Pick an Analysis Timeframe (e.g., 60-min for day trading, 4-hour for swing).
3. Read the Summary tile first; then check Oscillators → MAs → OB/Trendline/Supertrend → Volume.
4. Take trades only when multiple sections agree, and always plan stop loss and size before entry.
________________________________________
How the dashboard is built (section by section)
Below you’ll learn what each section measures, how the numbers are produced, and how to interpret them. The script converts each sub-signal into a small integer (e.g., +2, +1, 0, −1, −2). These are summed into section totals and then into a Summary score.
1) Summary (the combined score)
• What it is: The grand total of all sections (Oscillators + Moving Averages + Advanced: OB, Trendline/Channel, Supertrend, Volume).
• How it’s labeled:
o Large positive total → BUY / STRONG BUY
o Around zero → NEUTRAL
o Large negative total → SELL / STRONG SELL
• How to use: Treat it as a headline, not a trigger. Confirm with the sections below and price action.
________________________________________
2) Oscillators (momentum / overbought–oversold)
Inputs used on your chosen timeframe:
• RSI(14):
o 70 → bearish pressure (−)
o <30 → bullish pressure (+)
• Stochastic (14):
o 80 overbought (−), <20 oversold (+)
• CCI(20):
o +100 (−), <−100 (+)
• Williams %R(14):
o −20 overbought (−), <−80 oversold (+)
• MACD(12,26,9):
o MACD line > Signal → (+), below → (−)
• Momentum(10): >0 → (+), <0 → (−)
• ROC(9): >+2% → (+), <−2% → (−)
• Bollinger Bands(20,2):
o Price > Upper band → (−), < Lower band → (+)
How it scores: Each item contributes between −2 and +2 (or −1/+1 for some). The Oscillator total is their sum.
How to use: Oscillators excel for timing. Favor longs when the total is clearly positive and exiting or avoiding when clearly negative.
________________________________________
3) Moving Averages (trend/structure)
MAs used: SMA(10/20/50/100/200) and EMA(10/20/50).
Scoring logic: Compares price vs each MA:
• Price > MA by >2% → +2 (strongly bullish)
• Price > MA by 0–2% → +1
• Price < MA by 0–2% → −1
• Price < MA by >2% → −2
How to use: A clearly positive MA total suggests trend alignment for longs; clearly negative favors shorts or flat. Mixed readings → treat as range/transition.
________________________________________
4) Order-Block (OB) breakout analysis (support/resistance from clustered reactions)
What it approximates: The script searches a lookback window for pivot-like candles and counts repeated “touches” near that level (within ±0.2%) to infer support (bullish OB) or resistance (bearish OB).
Settings you can tune
• OB Lookback Period: how far back to search.
• Min OB Touches: more touches = stronger level.
Signals produced
• BULLISH BRK: Price crosses above the most recent bearish OB (resistance → breakout).
• BEARISH BRK: Price crosses below the most recent bullish OB (support → breakdown).
• ABOVE SUP / BELOW RES: Price position relative to the latest OB levels.
How to use: Use OB with MAs and Volume. Best when a breakout comes with trend alignment and volume expansion.
________________________________________
5) Trendline / Channel analysis (context envelope)
Rather than a single diagonal line, this module forms a dynamic channel:
• Finds highest high and lowest low over your Trendline Lookback.
• Builds a midline = (highest + lowest)/2.
• Creates an upper/lower channel by multiplying the range with Channel Width Multiplier.
Signals produced
• UPPER BRK: Price > upper channel (bullish expansion)
• LOWER BRK: Price < lower channel (bearish expansion)
• ABOVE MID / BELOW MID: Bias zone inside channel
How to use: Treat UPPER/LOWER breaks as momentum context. Confirm with MAs and Volume before acting.
________________________________________
6) Supertrend (ATR-based bias)
• Uses ta.supertrend(ATR Multiplier, ATR Period) on your analysis timeframe.
• Signal:
o BULLISH when Supertrend flips to trend-up state
o BEARISH when it flips to trend-down
Tuning tips:
• Higher ATR Multiplier (e.g., 6) → fewer, higher-quality flips.
• Lower multiplier → more responsive, more noise.
How to use: Use Supertrend as a trend filter. Avoid fighting it unless higher-timeframe context disagrees and you have strong confluence.
________________________________________
7) Volume/Flow analysis (participation & pressure)
This section combines several volume-based tools:
1. Volume Spike vs MA
o Volume MA Period (default 20)
o Volume Spike Threshold (e.g., 1.5×)
o If current volume / MA > threshold → spike.
2. OBV vs OBV-MA → Accumulation (+) / Distribution (−)
3. VPT vs VPT-MA → Price-volume trend alignment (+/−)
4. MFI(14): >70 (−), <30 (+)
5. Accumulation/Distribution vs its MA → (+/−)
Scoring:
• Big spike with up bar → +2; with down bar → −2
• Each of OBV, VPT, MFI, A/D adds +1 or −1
Interpretation labels:
• HIGH ACC / ACCUM → constructive flow
• HIGH DIST / DISTRIB → selling pressure
• NEUTRAL → no edge
How to use: Favor setups where directional signals + trend + volume point the same way.
________________________________________
Putting it together — a repeatable reading order
1. Summary: What’s the combined bias?
2. Oscillators: Is momentum supportive or stretched?
3. MAs: Is price aligned with the trend structure?
4. OB & Trendline/Channel: Are we breaking key levels/zones?
5. Supertrend: Is the higher-level bias with you or against you?
6. Volume: Is there participation to confirm the move?
Only act when at least 3–4 sections agree and you can define a logical stop and position size.
________________________________________
Parameter tuning (step-by-step)
1. Choose timeframe:
o 15–60m for active trading; 4h–1D for swing.
2. Oscillators:
o Keep defaults first; later tighten or loosen thresholds only if you’ve tested.
3. Moving Averages:
o The script’s built-in 0–2% bands around each MA are sensible.
o If your market is very volatile, you can consider widening the 2% threshold to reduce whipsaws (requires code edit).
4. Order Blocks:
o Start with OB Lookback ~50 and Min Touches = 2.
o Increase touches for fewer, stronger zones.
5. Trendline/Channel:
o Longer Trendline Lookback and smaller Channel Width → tighter channel (more breaks).
o Shorter lookback and larger width → fewer breaks.
6. Supertrend:
o If you get too many flips, raise ATR Multiplier.
o If it’s lagging, lower it slightly.
7. Volume:
o For quieter instruments, reduce the Threshold (e.g., 1.2×).
o For very liquid/active markets, 1.5–2.0× works well.
________________________________________
Example playbooks (for practice)
A) Pro-trend long continuation
• Summary: BUY or STRONG BUY
• MAs: clearly positive
• Supertrend: BULLISH
• OB/Trendline: ABOVE MID or UPPER BRK
• Volume: ACCUM or HIGH ACC
Plan: Enter on a minor pullback; stop below recent structure; scale out at logical resistance.
B) Mean-reversion short (cautious)
• Oscillators: multiple overbought readings (RSI>70, price > BB upper)
• MAs: still positive (trend up), so this is countertrend
• Volume: no spike
Plan: If you must, take smaller size, tighter stop, faster targets. Prefer waiting for alignment instead.
C) Breakout with confirmation
• OB: BULLISH BRK of a known resistance
• Trendline/Channel: UPPER BRK
• Volume: spike with up bar
• Supertrend: recently flipped up
Plan: Enter on retest or structured continuation; define stop under breakout level.
________________________________________
Common pitfalls to avoid
• Acting on one section alone. Confluence matters.
• Chasing after long candles without volume follow-through.
• Ignoring timeframe alignment. Check the next higher timeframe.
• Oversizing trades just because “Summary = Strong Buy/Sell.”
• Moving stops farther instead of accepting a planned loss.
________________________________________
Practice & evaluation routine
1. Replay mode (TradingView Bar Replay) to practice reading the tiles in order.
2. Journal each trade: which sections agreed, where stop/target were, outcome.
3. Weekly review: Were losing trades missing confirmation? Did you respect size rules?
4. Iterate cautiously: Change one setting at a time and observe for a week.
________________________________________
Frequently asked questions
Q: Is the Summary score weighted?
A: Each sub-signal contributes small integers; totals from Oscillators, MAs, and Advanced sections are added without fancy weighting, keeping it transparent.
Q: Can I use this as a standalone system?
A: It’s best used as a decision support layer with your own risk rules, not as a mechanical “buy/sell” machine.
Q: Which timeframe is best?
A: The one that matches your holding period. Always confirm with at least one higher timeframe.
________________________________________
Suggested classroom flow (for teaching)
1. Session 1: Oscillators only → identify good vs stretched momentum.
2. Session 2: Moving Averages → trend structure and bias.
3. Session 3: OB + Trendline/Channel → location and breakouts.
4. Session 4: Supertrend + Volume → confirmation and participation.
5. Session 5: Confluence building → case studies and journaling.
6. Session 6: Risk management, sizing, and review habits.
________________________________________
Disclaimer aiTrendview (please read)
This indicator and study material are provided for educational and research purposes only. They do not constitute financial advice, investment recommendations, or a promise of performance. Trading involves substantial risk and may result in losses. Past performance of any method or indicator does not guarantee future results. You are solely responsible for your trading decisions, including risk management, position sizing, and due diligence. Always test ideas in a demo environment before using real capital, and consider consulting a licensed financial advisor.
EMA Deviation with Min/Max Levelshis indicator visualizes the percentage deviation of the closing price from its Exponential Moving Average (EMA), helping traders identify overbought and oversold conditions. It dynamically tracks the minimum and maximum deviation levels over a user-defined lookback period, highlighting extreme zones with color-coded signals:
• 🔵 Normal deviation range
• 🔴 Near historical maximum — potential sell zone
• 🟢 Near historical minimum — potential buy zone
Use it to spot price extremes relative to trend and anticipate possible reversals or mean reversion setups.
✨Smart Option MACD: Bullish, Bearish, Neutral Logic by AKM ✨The **Smart Option MACD: Bullish, Bearish, Neutral Logic by AKM** is an advanced indicator designed for TradingView, tailored for option traders on indices like NIFTY. It automates options trend scanning by applying MACD analysis to both Call (CE) and Put (PE) options near the ATM (At-The-Money) strike, providing actionable market states—Bullish, Bearish, or Neutral—using distinct logic for both strikes and overall market context.
***
### Core Features
- **Option Selection Logic:** The script dynamically calculates ATM, CE, and PE strike prices based on the underlying index spot price and customizable user inputs for expiry, strike distance, and OTM/ITM shift.
- **MACD on Option Prices:** For both CE and PE symbols, the indicator computes the MACD (Moving Average Convergence Divergence) and Signal lines. It uses standard MACD settings: 12-period EMA (fast), 26-period EMA (slow), and 9-period Signal.
- **Strike Status Classification:**
- AZL 🔼: Indicates MACD > 0 for that option, signifying positive momentum.
- BZL 🔽: Indicates MACD 0 & crossover up), PE is bearish (MACD<0 & crossover down).
- **Bearish:** PE is bullish & crossover up, CE is bearish & crossover down.
- **Neutral:** All other scenarios—including mixed or undefined signals.
***
### Table Output
A real-time table is displayed on the chart (top-right) with key option and market details:
- Spot price
- ATM Strike
- CE/PE strike status (momentum + crossover logic)
- Option prices
- Overall market state, color-coded for clarity
***
### How to Use This Indicator
- **Entry Signal:** Use the Bullish/Bearish status for directional trades or option strategies. Bullish calls for buying or selling upward momentum options; Bearish favors downside trades. Neutral advises caution or range-bound trades.
- **Customizability:** Expiry, strike width, OTM/ITM offset, and chart resolution are user-controlled, allowing adaptation to different market contexts.
- **Best Practice:** Use alongside price action, support/resistance zones and other indicators to confirm options momentum, as MACD is powerful yet not infallible.
***
### Who Is It For?
- **Option traders** who want to automate trend/momentum detection for CE/PE strikes instead of manual chart switching.
- **Index traders** (NIFTY, BANKNIFTY...) seeking systematic edge in intraday/positional strategies tied to option momentum.
- **Technical analysts** interested in visual, rule-based signals combining options data and classic MACD logic.
***
The Smart Option MACD indicator streamlines multi-strike, multi-option momentum analysis and presents clear actionable logic directly on your chart for enhanced decision-making. Use it as a core part of your TradingView toolkit for options-focused market views.
Buy/Sell Alert Strong Signals [Wilson]This indicator combines Smoothed Moving Averages (SMMA), Stochastic Oscillator, and popular candlestick patterns (Engulfing, 3 Line Strike) to highlight potential trend reversal zones.
Main features:
4 SMMA lines (21, 50, 100, 200) for short-, medium-, and long-term trend analysis.
Trend Fill: Background shading when EMA(2) and SMMA(200) are aligned, visually confirming trend direction.
Stochastic Filter: Filters signals based on overbought/oversold conditions to help reduce noise.
Candlestick pattern recognition:
Bullish/Bearish Engulfing
Bullish/Bearish 3 Line Strike
Alerts for each pattern when Stochastic conditions are met.
⚠️ Note: This is a technical analysis tool. It does not guarantee accuracy and is not financial advice. Always combine with other analysis methods and practice proper risk management.
🛠 How to Use:
1. SMMA Settings
21 SMMA & 50 SMMA: Short- and medium-term trend tracking.
100 SMMA: Optional mid/long-term filter (toggle on/off).
200 SMMA: Major trend direction reference.
2. Trend Fill
EMA(2) > SMMA(200): Background shaded green (uptrend bias).
EMA(2) < SMMA(200): Background shaded red (downtrend bias).
Can be enabled/disabled in settings.
3. Stochastic Filter
K Length, D Smoothing, Smooth K: Adjust sensitivity.
Overbought & Oversold: Default 80 / 20 thresholds.
Buy signals only valid if Stochastic is oversold.
Sell signals only valid if Stochastic is overbought.
4. Candlestick Patterns
3 Line Strike:
Bullish: Three consecutive bullish candles followed by one bearish candle closing below the previous, with potential reversal.
Bearish: Three consecutive bearish candles followed by one bullish candle closing above the previous, with potential reversal.
Engulfing:
Bullish: Green candle fully engulfs the prior red candle body.
Bearish: Red candle fully engulfs the prior green candle body.
5. Alerts
Alerts available for each pattern when Stochastic conditions are met.
Example: "Bullish Engulfing + Stochastic confirm".
📌 Important Notes
Do not use this indicator as the sole basis for trading decisions.
Test on a demo account before applying to live trades.
Combine with multi-timeframe analysis, volume, and proper position sizing.
Buy/Sell Alert Strong Signals [Wilson]This indicator combines Smoothed Moving Averages (SMMA), Stochastic Oscillator, and popular candlestick patterns (Engulfing, 3 Line Strike) to highlight potential trend reversal zones.
Main features:
4 SMMA lines (21, 50, 100, 200) for short-, medium-, and long-term trend analysis.
Trend Fill: Background shading when EMA(2) and SMMA(200) are aligned, visually confirming trend direction.
Stochastic Filter: Filters signals based on overbought/oversold conditions to help reduce noise.
Candlestick pattern recognition:
Bullish/Bearish Engulfing
Bullish/Bearish 3 Line Strike
Alerts for each pattern when Stochastic conditions are met.
⚠️ Note: This is a technical analysis tool. It does not guarantee accuracy and is not financial advice. Always combine with other analysis methods and practice proper risk management.
🛠 How to Use:
1. SMMA Settings
21 SMMA & 50 SMMA: Short- and medium-term trend tracking.
100 SMMA: Optional mid/long-term filter (toggle on/off).
200 SMMA: Major trend direction reference.
2. Trend Fill
EMA(2) > SMMA(200): Background shaded green (uptrend bias).
EMA(2) < SMMA(200): Background shaded red (downtrend bias).
Can be enabled/disabled in settings.
3. Stochastic Filter
K Length, D Smoothing, Smooth K: Adjust sensitivity.
Overbought & Oversold: Default 80 / 20 thresholds.
Buy signals only valid if Stochastic is oversold.
Sell signals only valid if Stochastic is overbought.
4. Candlestick Patterns
3 Line Strike:
Bullish: Three consecutive bullish candles followed by one bearish candle closing below the previous, with potential reversal.
Bearish: Three consecutive bearish candles followed by one bullish candle closing above the previous, with potential reversal.
Engulfing:
Bullish: Green candle fully engulfs the prior red candle body.
Bearish: Red candle fully engulfs the prior green candle body.
5. Alerts
Alerts available for each pattern when Stochastic conditions are met.
Example: "Bullish Engulfing + Stochastic confirm".
📌 Important Notes
Do not use this indicator as the sole basis for trading decisions.
Test on a demo account before applying to live trades.
Combine with multi-timeframe analysis, volume, and proper position sizing.
Mucip AL BUY indicator V2/ Mucip AL indikatörüThis indicator is an updated version of version 1 with some filters.
KDJ - CakeProfitsKDJ Indicator
The KDJ is an enhanced version of the traditional Stochastic Oscillator, adding a third line (J) to measure momentum extremes. It uses the K and D lines from the Stochastic, with the J line calculated to amplify overbought and oversold signals.
K Line – Fast-moving measure of current momentum.
D Line – Smoothed version of K, used for signal confirmation.
J Line – Projects potential extremes by extending the distance between K and D.
How to Use:
Overbought: J above 100 may indicate price is extended.
Oversold: J below 0 may signal price is undervalued.
Crossovers: Bullish when K crosses above D, bearish when K crosses below D.
The KDJ is popular among swing and momentum traders for spotting early reversals, confirming trends, and filtering trades in ranging markets.
OI Heat Oscillator (Z on ΔOI%) — _OI sourceOI Heat Oscillator — A Free Indicator for the Trading Community
What is Open Interest (OI)?
Open Interest represents the total number of active futures or perpetual contracts that have not yet been closed. It’s a way to measure how much “betting action” or participation there is in a market.
Why watch OI?
Changes in OI often signal when traders are entering or exiting positions, which can precede strong price moves. However, raw OI data can be noisy and difficult to interpret on its own.
How does this indicator help?
The OI Heat Oscillator calculates the percentage change in OI and compares it statistically against recent history using a z-score. This highlights when OI changes are unusually large or small, reflecting significant shifts in market leverage.
To avoid false signals, it also checks trading volume and price direction, giving you a smoothed, easy-to-read heat score from 0 to 100.
What do the zones mean?
Hot-Long (above 80): Strong OI build-up with rising price, signalling increased buying interest and leverage.
Hot-Short (below 20): Strong OI build-up with falling price, signalling increased selling interest.
Neutral (around 50): Normal OI activity, no significant leverage changes.
Where does the OI data come from?
This script works on any market or exchange that has _OI data on TradingView — not just Binance.
By default, it looks for the chart’s symbol with _OI appended (e.g. BINANCE:BTCUSDTPERP_OI).
If no OI feed exists for your chart, you can set your own override ticker in the settings (e.g. CME:BTC1!_OI, BYBIT:ETHUSDT.P_OI).
If TradingView doesn’t offer _OI data for your symbol, the script will prompt you to choose an alternative.
How can you use it?
Use this indicator to spot when momentum is building, when markets might be crowded, or when traders are unwinding positions. Combine it with your own analysis to improve timing and risk management.
Happy trading!
SAMC's Oscillator DEF1 Mark4An integrated oscillator and momentum suite for professional traders. This indicator provides a comprehensive view of market conditions by combining several core analytical components:
RSI & Stochastic: Traditional and log-based calculations with robust divergence plotting.
Proprietary MFI: An innovative MFI area that highlights market sentiment and money flow.
WaveTrend Logic: Utilizes WaveTrend for a dynamic VWAP-like momentum histogram.
Advanced Divergence System: Features a combined divergence system for both Stochastics and RSI, identifying potential shifts in momentum.
RSI/Stoch RSI ComboIt shows both rsi and stoch rsi as one indicator. You need to select which one using checkbox.
Nexus One v1.1Introduction
My Order Block Indicator is THE cutting-edge trading tool designed to offer traders an unparalleled edge in the markets. This unique indicator combines order blocks, fair value gaps, exponential moving averages (EMAs), and vector candles into a cohesive Nexus strategy. Unlike traditional indicators, this tool leverages the synergistic effects of these components to identify high-probability trading setups.
How It Works
Order Blocks: At the heart of our indicator are pivot-based order blocks. These are price levels or ranges that are significant due to past market activity. Our algorithm identifies these blocks based on historical pivot points, considering both the price's reaction to these levels and their recurrence over time. This method helps in pinpointing areas where institutional orders are likely to be placed.
Fair Value Gaps: Alongside, our indicator detects fair value gaps - regions where price has moved too swiftly, leaving a gap in the market's valuation. By identifying these gaps, the tool helps traders anticipate areas where price might return to fill the gap, offering strategic entry and exit points.
EMAs and Vector Candles: To refine our signals, the indicator utilizes a combination of exponential moving averages and vector candles. EMAs help in determining the market's trend direction, while vector candles offer insights into the momentum and strength of price movements. The integration of these elements enables our tool to filter out lower probability setups, focusing on those with higher chances of success.
Originality and Usefulness
My Order Block Indicator is not merely a combination of existing tools. It represents a novel approach to market analysis, integrating various components into a single, comprehensive trading strategy. The methodology behind combining real time order blocks with fair value gaps and EMAs, supplemented by the unique use of vector candles, is proprietary and designed to offer original insights into market dynamics.
This tool is invaluable for traders looking to enhance their market analysis, providing a deeper understanding of price movements and potential reversal points. Whether for scalping, day trading, or swing trading, our indicator offers versatile applications, helping traders to navigate the complexities of various market conditions with greater confidence.
How to Use
To make the most of my Order Block Indicator:
Setup: Apply the indicator to any chart or time frame, tailoring the EMA settings according to your trading style.
Interpretation: Look for confluences between real time order blocks and fair value gaps as high-probability entry points. EMAs will guide you on the trend's direction, while vector candles highlight momentum strength.
Application: Use the indicator to identify potential reversal zones, entry, and exit points. Combine it with The Nexus risk management strategy to optimize your trading performance.
Conclusion
My Order Block Indicator is crafted for traders who demand depth, precision, and originality in their tools. It stands out by providing a multifaceted approach to market analysis, backed by a proprietary integration of critical trading concepts. This tool is not just an indicator; it's a comprehensive strategy designed to elevate your trading journey.
Zabbo Confluence Indicator + DashboardDescription
This script combines the power of multiple proven swing trend indicators into a single, unified confluence system. A trade signal is generated when the specified number of indicators align in the same bullish or bearish direction, helping traders identify high-probability long or short opportunities.
The script includes an on-chart dashboard that displays the current status of each individual indicator, along with the overall confluence score, allowing you to visually track trend alignment as market conditions evolve.
Included Indicators:
Xtreme Trend – View Script
MACD (12-26-9) – View Script
MACD (144-34-9) Histogram – View Script
WaveTrend Oscillator – View Script
QQE MT4 (Glaz-Modified by JustUncleL) – View Script
Signal Conditions:
A BUY signal is triggered when:
Xtreme Trend is Bullish
MACD (12-26-9) shows a bullish cross
MACD (144-34-9) histogram is increasing
WaveTrend Oscillator is bullish
QQE MT4 line crosses above its signal
A SELL signal is triggered when:
Xtreme Trend is Bearish
MACD (12-26-9) shows a bearish cross
MACD (144-34-9) histogram is decreasing
WaveTrend Oscillator is bearish
QQE MT4 line crosses below its signal
Users can enable or disable individual indicators in the settings and adjust the confluence threshold (from 1 to 5) to suit their trading style. They also have the ability to toggle off the Xtrend indicator, the 200 EMA, and the confluence dashboard.
Best Use
Performs best on higher timeframes such as 1H, 4H, and Daily.
Lower timeframes (<1H) and choppy, sideways markets may produce frequent signals with smaller spreads.
Increasing the confluence requirement reduces the number of signals, but increases the reliability of potential market tops and bottoms.
Key Features
Five popular trend/trading indicators in one script
Adjustable confluence threshold (1–5)
On-chart dashboard for quick signal confirmation
Customizable indicator inclusion/exclusion
Works across any market (forex, crypto, stocks, commodities)
Cycle Phase & ETA Tracker [Robust v4]
Cycle Phase & ETA Tracker
Description
The Cycle Phase & ETA Tracker is a powerful tool for analyzing market cycles and predicting the completion of the current cycle (Estimated Time of Arrival, or ETA). It visualizes the cycle phase (0–100%) using a smoothed signal and displays the forecasted completion date with an optional confidence band based on cycle length variability. Ideal for traders looking to time their trades based on cyclical patterns, this indicator offers flexible settings for robust cycle analysis.
Key Features
Cycle Phase Visualization: Tracks the current cycle phase (0–100%) with color-coded zones: green (0–33%), blue (33–66%), orange (66–100%).
ETA Forecast: Shows a vertical line and label indicating the estimated date of cycle completion.
Confidence Band (±σ): Displays a band around the ETA to reflect uncertainty, calculated using the standard deviation of cycle lengths.
Multiple Averaging Methods: Choose from three methods to calculate average cycle length:
Median (Robust): Uses the median for resilience against outliers.
Weighted Mean: Prioritizes recent cycles with linear or quadratic weights.
Simple Mean: Applies equal weights to all cycles.
Adaptive Cycle Length: Automatically adjusts cycle length based on the timeframe or allows a fixed length.
Debug Histogram: Optionally displays the smoothed signal for diagnostic purposes.
Setup and Usage
Add the Indicator:
Search for "Cycle Phase & ETA Tracker " in TradingView’s indicator library and apply it to your chart.
Configure Parameters:
Core Settings:
Track Last N Cycles: Sets the number of recent cycles used to calculate the average cycle length (default: 20). Higher values provide stability but may lag market shifts.
Source: Selects the data source for analysis (e.g., close, open, high; default: close price).
Use Adaptive Cycle Length?: Enables automatic cycle length adjustment based on timeframe (e.g., shorter for intraday, longer for daily) or uses a fixed length if disabled.
Fixed Cycle Length: Defines the cycle length in bars when adaptive mode is off (default: 14). Smaller values increase sensitivity to short-term cycles.
Show Debug Histogram: Enables a histogram of the smoothed signal for debugging signal behavior.
Cycle Length Estimation:
Average Mode: Selects the method for calculating average cycle length: "Median (Robust)", "Weighted Mean", or "Simple Mean".
Weights (for Weighted Mean): For "Weighted Mean", chooses "linear" (moderate emphasis on recent cycles) or "quadratic" (strong emphasis on recent cycles).
ETA Visualization:
Show ETA Line & Label: Toggles the display of the ETA line and date label.
Show ETA Confidence Band (±σ): Toggles the confidence band around the ETA, showing the uncertainty range.
Band Transparency: Adjusts the transparency of the confidence band (0 = fully transparent, 100 = fully opaque; default: 85).
ETA Color: Sets the color for the ETA line, label, and confidence band (default: orange).
Interpretation:
The cycle phase (0–100%) indicates progress: green for the start, blue for the middle, and orange for the end of the cycle.
The ETA line and label show the predicted cycle completion date.
The confidence band reflects the uncertainty range (±1 standard deviation) of the ETA.
If a warning "Insufficient cycles for ETA" appears, wait for the indicator to collect at least 3 cycles.
Limitations
Requires at least 3 cycles for reliable ETA and confidence band calculations.
On low timeframes or low-volatility markets, zero-crossings may be infrequent, delaying ETA updates.
Accuracy depends on proper cycle length settings (adaptive or fixed).
Notes
Test the indicator across different assets and timeframes to optimize settings.
Use the debug histogram to troubleshoot if the ETA appears inaccurate.
For feedback or suggestions, contact the author via TradingView.
Cycle Phase & ETA Tracker
Описание
Индикатор Cycle Phase & ETA Tracker предназначен для анализа рыночных циклов и прогнозирования времени завершения текущего цикла (ETA — Estimated Time of Arrival). Он отслеживает фазы цикла (0–100%) на основе сглаженного сигнала и отображает предполагаемую дату завершения цикла с опциональной доверительной полосой, основанной на стандартном отклонении длин циклов. Индикатор идеально подходит для трейдеров, которые хотят выявлять циклические закономерности и планировать свои действия на основе прогнозируемого времени.
Ключевые особенности
Фазы цикла: Визуализирует текущую фазу цикла (0–100%) с цветовой кодировкой: зеленый (0–33%), синий (33–66%), оранжевый (66–100%).
Прогноз ETA: Показывает вертикальную линию и метку с предполагаемой датой завершения цикла.
Доверительная полоса (±σ): Отображает зону неопределенности вокруг ETA, основанную на стандартном отклонении длин циклов.
Гибкие методы усреднения: Поддерживает три метода расчета средней длины цикла:
Median (Robust): Медиана, устойчивая к выбросам.
Weighted Mean: Взвешенное среднее, где недавние циклы имеют больший вес (линейный или квадратичный).
Simple Mean: Простое среднее с равными весами.
Адаптивная длина цикла: Автоматически подстраивает длину цикла под таймфрейм или позволяет задать фиксированную длину.
Отладочная гистограмма: Опционально отображает сглаженный сигнал для анализа.
Настройка и использование
Добавьте индикатор:
Найдите "Cycle Phase & ETA Tracker " в библиотеке индикаторов TradingView и добавьте его на график.
Настройте параметры:
Core Settings:
Track Last N Cycles: Количество последних циклов для расчета средней длины (по умолчанию 20). Большие значения дают более стабильные результаты, но могут запаздывать.
Source: Источник данных (по умолчанию цена закрытия).
Use Adaptive Cycle Length?: Включите для автоматической настройки длины цикла по таймфрейму или отключите для использования фиксированной длины.
Fixed Cycle Length: Длина цикла в барах, если адаптивная длина отключена (по умолчанию 14).
Show Debug Histogram: Включите для отображения сглаженного сигнала (полезно для отладки).
Cycle Length Estimation:
Average Mode: Выберите метод усреднения: "Median (Robust)", "Weighted Mean" или "Simple Mean".
Weights (for Weighted Mean): Для режима "Weighted Mean" выберите "linear" (умеренный вес для новых циклов) или "quadratic" (сильный вес для новых циклов).
ETA Visualization:
Show ETA Line & Label: Включите для отображения линии и метки ETA.
Show ETA Confidence Band (±σ): Включите для отображения доверительной полосы.
Band Transparency: Прозрачность полосы (0 — полностью прозрачная, 100 — полностью непрозрачная, по умолчанию 85).
ETA Color: Цвет для линии, метки и полосы (по умолчанию оранжевый).
Интерпретация:
Фаза цикла (0–100%) показывает прогресс текущего цикла: зеленый — начало, синий — середина, оранжевый — конец.
Линия и метка ETA указывают предполагаемую дату завершения цикла.
Доверительная полоса показывает диапазон неопределенности (±1 стандартное отклонение).
Если отображается предупреждение "Insufficient cycles for ETA", дождитесь, пока индикатор соберет минимум 3 цикла.
Ограничения
Требуется минимум 3 цикла для надежного расчета ETA и доверительной полосы.
На низких таймфреймах или рынках с низкой волатильностью пересечения нуля могут быть редкими, что замедляет обновление ETA.
Эффективность зависит от правильной настройки длины цикла (fixedL или адаптивной).
Примечания
Протестируйте индикатор на разных таймфреймах и активах, чтобы подобрать оптимальные параметры.
Используйте отладочную гистограмму для анализа сигнала, если ETA кажется неточным.
Для вопросов или предложений по улучшению свяжитесь через TradingView.
Mucip AL BUY indicator/Mucip AL BUY indikatörüThis indicator aims to identify potential market bottoms. It also provides visual support to investors by displaying the percentage profit after each buy signal, based on the highest peak price since that signal. Simple yet effective terms help users identify optimal entry points. Furthermore, not every signal yields accurate results.
TMO of Relative StrengthThis indicator shows 3 TMOs, one for the charted symbol, one for a chosen index symbol, and one for the relative strength ratio of the 2 symbols.
While a normal TMO measures momentum of a stock, this indicator measures the subtle momentum shifts that happen in the relative strength ratio of the stock , which can sometimes happen before the momentum of the stock itself shifts. This provides the potential for an early warning that a move may be about to begin, even before the stock price starts heading in one direction.
Many traders watch relative strength ratio charts to see when a stock begins to outperform the index. This indicator doesn't measure the relative or comparative strength ratio itself, but instead measures the change in momentum of relative strength .
Signals and alerts are provided for when the Ratio's TMO line crosses above/below the Stock's TMO line, or the Market Index's TMO line, and also for when the Stock's TMO line crosses above/below the Market's TMO line even if the ratio isn't crossing currently. Also alerts when the Ratio or Stock TMO lines cross their prior values.
I created a version of this for Thinkorswim originally and it has been valuable to me and my clients, so I hope it provides value here as well.
-Josiah
Mr.BourssioA professional indicator that combines multiple strategies into one tool ,
Mr.Bourssio indicator that will help you spot ideal entry and exit opportunities.
The best frame for the indicator is the 1 - Hour frame.