Student Wyckoff Paunch v.3 Adx
Look trend background
Look at the trend combined with the volatility bands
Indicadores e estratégias
AnalistAnka FlowScore Pro (v8.2)AnalistAnka FlowScore Pro – User Guide (EN)
1) What it is
AnalistAnka FlowScore Pro aggregates money flow into a single scale.
Components:
SMF-Z: Z-score of (log return × volume)
OBV-Z: Z-score of OBV (cumulative volume flow)
MFI-Z (optional): Z-score of Money Flow Index
Combined into FlowScore, then smoothed by EMA.
Core signal:
FlowScore > +0.5 → strong long bias
FlowScore < −0.5 → strong short bias
Optional HTF EMA filter keeps you trading with the higher-timeframe trend.
2) Inputs (summary)
FlowScore & Signal: wSMF, wOBV, wMFI, smoothFS, enterBand, exitBand, cooldownBars
HTF Filter: useHTF, htf (e.g., 60/240/1D), htfEmaLen (default 200)
MFI: useMfi, mfiLen, mfiSmooth, mfiZwin
Spike: spWin, spK (σ threshold), minVolPct (volume MA threshold)
Fills: fillSMF, fillOBV with separate positive/negative colors
Divergences: showDiv, divLeft/right, divShowLines, divShowLabels, colors
3) How to read
A) FlowScore (primary)
Long setup: FlowScore crosses above enterBand (+)
Short setup: FlowScore crosses below −exitBand
Hysteresis (±bands) reduces whipsaws; cooldown throttles repeats.
B) HTF trend filter (recommended)
With useHTF=true: only longs above HTF EMA, only shorts below it.
Example: trade 15-min, filter with 1-hour EMA200.
C) Spike IN/OUT (confirmation)
Detects statistical surges in OBV derivative plus volume threshold.
Use as confirmation, not as a standalone trigger.
D) Divergence (pivot-based)
Bearish: price HH while FlowScore prints LH
Bullish: price LL while FlowScore prints HL
Tune pivots via divLeft/right; toggle lines/labels in the panel.
4) Timeframes & suggested presets
Profile Chart HTF (Filter) Band (±) Cooldown Notes
Scalp 1–5m 15–60m 0.7 5–8 Fewer, cleaner signals
Intraday 5–15m 60–240m 0.5 8–12 Solid default
Swing 1–4h 1D 0.4 12–20 Patient entries
Daily usage:
On a daily chart, nothing extra is needed.
On intraday but want daily filter → set htf=1D.
5) Example playbook
Long:
useHTF=true and price above HTF EMA
FlowScore crosses above +band
Optional confirmations: recent Spike IN, SMF-Z & OBV-Z aligned positive
Stop: below last swing low or ATR(14)×1.5
Exit: partial on FlowScore below 0; full on below −band or at 1R/2R
Short: mirror logic (below HTF EMA, break under −band, Spike OUT, etc.).
6) Alerts
FlowScore LONG / SHORT → immediate signal notification
Spike IN / OUT → money-in/out warnings
7) Tips
Too many signals → widen bands (0.6–0.7), increase cooldown, raise smoothFS (6–9).
Too slow → lower smoothFS (3–4), reduce bands to 0.4–0.5.
Thin liquidity → reduce minVolPct, also reduce position size.
Best reliability when SMF-Z & OBV-Z share the same polarity.
8) Disclaimer
For educational purposes only. Not financial advice. Always apply risk management.
Friday Rule — Daily-aligned (v6)This is a trial script for Friday rule. This indicator will help to achieve 3-5% per week
RSI Cross Alerts with Vertical Lines (9:30 AM - 2:45 PM)RSI Cross Alerts - Indicates Vertical Lines on previous times the RSI Indicator Crosses Overbought or Oversold parameters set by user.
Advanced Sideways Market DetectorHelps to identify sideways in the market and avoid trading those markets
NY Sessions Boxes (Live Drawing)//@version=5
indicator("NY Sessions Boxes (Live Drawing)", overlay=true)
ny_tz = "America/New_York"
t = time(timeframe.period, ny_tz)
hour_ny = hour(t)
minute_ny = minute(t)
// سشن ۱: 02:00 – 05:00
session1_active = (hour_ny >= 2 and hour_ny < 5)
session1_start = (hour_ny == 2 and minute_ny == 0)
// سشن ۲: 09:30 – 11:00
session2_active = ((hour_ny == 9 and minute_ny >= 30) or (hour_ny > 9 and hour_ny < 11))
session2_start = (hour_ny == 9 and minute_ny == 30)
var box box1 = na
var float hi1 = na
var float lo1 = na
if session1_start
hi1 := high
lo1 := low
box1 := box.new(left = time, right = time, top = high, bottom = low, bgcolor=color.new(color.blue, 85), border_color=color.blue)
if session1_active and not na(box1)
hi1 := math.max(hi1, high)
lo1 := math.min(lo1, low)
box.set_right(box1, time)
box.set_top(box1, hi1)
box.set_bottom(box1, lo1)
if not session1_active and not na(box1)
box1 := na
hi1 := na
lo1 := na
var box box2 = na
var float hi2 = na
var float lo2 = na
if session2_start
hi2 := high
lo2 := low
box2 := box.new(left = time, right = time, top = high, bottom = low, bgcolor=color.new(color.purple, 85), border_color=color.purple)
if session2_active and not na(box2)
hi2 := math.max(hi2, high)
lo2 := math.min(lo2, low)
box.set_right(box2, time)
box.set_top(box2, hi2)
box.set_bottom(box2, lo2)
if not session2_active and not na(box2)
box2 := na
hi2 := na
lo2 := na
Universal Webhook Connector Demo.This strategy demonstrates how to generate JSON alerts from TradingView for multiple trading platforms.
Users can select platform_name (MT5, TradeLocker, DxTrade, cTrader, etc).
Alerts are constructed in JSON format for webhook execution.
Smart Multi-Confirm Reversal DetectorHow the Smart Multi-Confirm Reversal Detector Works
The indicator works by analyzing candlestick patterns, trend, and technical confirmations and then scoring each bar to determine the strength of a potential reversal. Here’s the step-by-step logic:
Step 1: Analyze Candlestick Patterns
For each new candle, the indicator checks if any of the selected patterns occur:
Wick Reversal (Long Lower Wick):
Looks for candles with a small body and a long lower shadow.
Indicates buying pressure (potential bullish reversal).
Inverted Wick (Long Upper Wick):
Looks for candles with a small body and a long upper shadow.
Indicates selling pressure (potential bearish reversal).
Body Engulf:
The current candle completely “engulfs” the previous candle.
Signals a strong change in momentum.
Tweezer Patterns:
Two consecutive candles with almost identical highs or lows.
Suggests a potential reversal zone.
3-Bar Pattern:
Three consecutive bullish or bearish candles in a row.
Shows strong momentum continuation or exhaustion, used to confirm reversal.
Each pattern can be turned on/off by the user. If a pattern is detected, it contributes points to the overall signal score.
Step 2: Confirm Trend Direction
The indicator checks EMA trend alignment:
Fast EMA vs Slow EMA:
Fast EMA above Slow EMA → bullish trend.
Fast EMA below Slow EMA → bearish trend.
Optional Higher Timeframe EMA (HTF) Alignment:
Checks if the trend on a higher timeframe matches the current trend.
Adds extra weight to the signal if alignment is true.
This ensures the signal goes in the direction of the prevailing trend, reducing false signals.
Step 3: Check Technical Confirmations
Optional filters increase reliability:
ADX (Average Directional Index):
Measures the strength of the current trend.
Only strong trends contribute to the score.
RSI (Relative Strength Index):
Bullish confirmation: RSI is oversold.
Bearish confirmation: RSI is overbought.
Volume Spike:
Compares current volume to the average volume.
High volume validates the signal’s momentum.
Body Momentum:
Compares current candle’s body size to its average.
Larger than average body indicates stronger momentum.
Each of these confirmations can be enabled/disabled and has a weight in the scoring system.
Step 4: Calculate Score
Each pattern and confirmation has a user-defined weight (0–100).
The indicator sums the active weights that pass conditions and normalizes to 100.
Example:
Wick Reversal detected → 30 points
Trend EMA confirmed → 15 points
ADX confirmed → 10 points
Score = 55/100 → may or may not trigger a signal depending on threshold.
Score Threshold:
Only bars above the user-defined threshold are considered a confirmed signal.
Bars above a lower “label threshold” still show a label, even if not strong enough for alerts.
Step 5: Visualize Signals
Bullish Signals: Green triangle below the candle.
Bearish Signals: Red triangle above the candle.
Labels: Show the type of pattern and the score.
Purpose: Quickly identify potential reversals and assess their strength visually.
Step 6: Optional Alerts
Fixed alert messages can be enabled for confirmed bullish or bearish signals.
Alerts do not recommend trades; they just notify you of pattern confirmations.
Complies with TradingView’s policy for safe alert use.
Step 7: Weighted Decision
The final decision is not binary.
Instead, the indicator combines multiple signals into a score, so stronger signals are more reliable.
This reduces false positives and gives traders a professional, multi-confirmation approach to detect potential reversals.
Lion Vip + V2Lion Vip +V1
The Lion Vip +V1 indicator is a powerful, multi-purpose tool designed to simplify your trading decisions by combining three core analysis components into a single, clean interface. This comprehensive system helps you identify market trends, pinpoint critical support and resistance levels, and confirm overall market direction.
Key Features:
1. Lion VIP Trend-Following Engine
Clear Buy/Sell Signals: Get straightforward buy and sell signals based on the market's price action. The system uses a dynamic trailing stop to follow the trend, making it easy to spot potential reversals.
Intuitive Trend Highlighting: The background of your chart is colored to instantly show you the dominant trend, so you can make decisions at a glance. Green for uptrends, red for downtrends.
2. Multi-Timeframe Support & Resistance (S/R) Module
Automatic S/R Levels: The indicator automatically identifies and draws significant support and resistance levels from pivot points. This saves you time and ensures you're looking at the most relevant levels.
Cross-Timeframe Analysis: Access key S/R levels from higher timeframes directly on your current chart. By enabling up to three different timeframes in the settings, you can see how the bigger picture affects your trading.
Customizable Lines: You have full control over the style, color, and thickness of your S/R lines to match your personal chart layout.
3. Simple Moving Average (MA) Confirmation
Trend Validation: A customizable Simple Moving Average (MA) is included to help you validate the signals from the Lion VIP system. Use it to confirm the overall trend direction and reduce false signals.
Why Use Lion Vip +V1?
Streamlined Analysis: No need to clutter your chart with multiple indicators. Lion Vip +V1 puts trend-following, support/resistance, and trend confirmation all in one place.
Highly Customizable: Each component can be individually turned on or off and its settings can be adjusted to fit your specific trading strategy.
Clarity and Simplicity: The indicator provides a clean and easy-to-read display, helping you make faster, more confident trading decisions.
Lion Vip +V1 is the perfect tool for traders of all levels who want a clear and comprehensive view of the market without the noise.
Distance from 50 SMA in ADR TermsIndicator produces a multiple of ADR% from the 50-day simple moving average to determine is a stock or etf is extended.
Customizable EMA 10/20/50/100Customizable EMA indicator. Fully adjustable with inputs so you can change EMA lengths and colors directly from the indicator settings panel.
Daily Fractals Custom Timeframe Candles - Fractal Analysis Tool
📊 Overview
Custom Timeframe Candles is a powerful Pine Script indicator that displays higher timeframe (HTF) candles directly on your current chart, enabling seamless fractal analysis without switching between timeframes.
Perfect for traders who want to analyze daily candles while trading on hourly charts, or any other timeframe combination.
✨ Key Features
🎯 Multi-Timeframe Analysis
- Display any higher timeframe candles on your current chart
- Real-time updates of the current HTF candle as price moves
- Configurable number of candles (1-10) to display
🎮 How to Use
1. Add to Chart : Apply the indicator to any timeframe chart
2. Select HTF : Choose your desired higher timeframe (e.g., "1D" for daily)
3. Configure Display : Set number of candles, colors, and position
4. Analyze : View HTF context while trading on lower timeframes
📈 Perfect For Backtest
Unlike basic HTF displays, this indicator provides:
- Live Updates: Current candle updates in real-time
- Complete OHLC: Full candle structure with wicks
- Flexible Count: Display exactly what you need
- Stable Performance: No crashes during replay/backtesting
- Professional Design: Clean, customizable appearance
📝 Notes
- Works on all timeframes and instruments
- Requires higher timeframe data availability
- Compatible with replay mode and backtesting
---
by Rock9808
Balanced Price Range (BPR) DetectorBALANCED PRICE RANGE (BPR) DETECTOR
This indicator detects Balanced Price Ranges (BPR) by analyzing the overlap between bullish and bearish Fair Value Gaps (FVG). BPR zones represent areas where opposing market forces create equilibrium, often acting as strong support/resistance levels.
KEY FEATURES:
- Automatic detection of overlapping FVGs to form BPR zones
- Confidence scoring system (0-100%) based on overlap ratio, size, volume, and symmetry
- Customizable filters (ATR, Volume)
- Real-time mitigation tracking
- Alert system for new BPRs, mitigations, and rejections
- Visual customization options
HOW IT WORKS:
The indicator continuously scans for Fair Value Gaps in both directions. When a bullish FVG overlaps with a bearish FVG within the specified lookback period, a BPR zone is created. The confidence score helps traders identify the strongest zones.
USAGE:
- High confidence BPRs (>75%) often act as strong reversal zones
- Use for entry/exit points when price approaches BPR zones
- Combine with other indicators for confirmation
- Monitor touch counts for zone strength validation
SETTINGS:
- Lookback Bars: Number of bars to search for overlapping FVGs
- Min Overlap Ratio: Minimum overlap percentage required
- ATR/Volume Filters: Filter out weak or low-volume BPRs
- Display Options: Customize visual appearance
- Mitigation Type: Choose between wick or close-based mitigation
Perfect for traders using price action, supply/demand zones, or institutional order flow concepts.
Rolling VWAP 7-30-907, 30, and 90-day VWAP (Volume Weighted Average Price) indicator on TradingView provides traders with multiple perspectives on market sentiment and price efficiency across short, medium, and long-term horizons. The 7-day VWAP is particularly useful for active traders or intraday participants who want to gauge near-term value and liquidity. It highlights short-term imbalances, helping to identify overbought or oversold conditions relative to recent trading activity. Meanwhile, the 30-day VWAP smooths out shorter-term noise, offering a more balanced benchmark that swing traders often use to spot trend alignment or potential reversals within a monthly cycle.
The 90-day VWAP serves as a longer-term institutional benchmark, reflecting deeper capital flows and market consensus over a quarter. It’s particularly valuable for position traders or those tracking whether price is consistently trading above or below this broader measure of value, which can indicate long-term accumulation or distribution phases. Using all three together provides a layered framework: the 7-day VWAP for tactical entries, the 30-day VWAP for swing positioning, and the 90-day VWAP for strategic trend confirmation. This multi-timeframe approach allows traders to align short-term signals with medium and long-term market structure, improving precision and conviction in decision-making.
Prof Satoshi
FU + AFU bank candlesThis indicator shows how Bank system and manipulation works. Recognise and understand bank manipulation you can use FU and AFU candles which helps to entry with 5-10 pips Stop loss.
Green Diamond from down - FU bullish candle
Red Diamond from top - FU bearish candle
Blue Arrow from top - AFU candle sell side
Blue Arrow from down - AFU candle buy side
Cumulative VWAPThis indicator plots the cumulative VWAP from the first bar loaded on the chart. Unlike the traditional daily VWAP that resets at the start of each trading session, this version continuously aggregates price and volume over the full visible chart history.
Trend Fibo 1.618FIBONACCI TRENDLINE BREAKOUT SYSTEM
Advanced indicator combining dynamic trendlines with ZigZag-based Fibonacci projections for precise entry and exit points.
KEY FEATURES:
- Dynamic trendline detection using pivot analysis
- ZigZag-based Fibonacci level calculations
- Multiple take profit targets (1.618, 2.618, 3.618, 4.618)
- Automatic breakout signal generation
- Historical price level visualization
METHODOLOGY:
Detects trendline breakouts and automatically draws Fibonacci retracements/extensions based on recent ZigZag swing points. Provides clear entry zones and multiple profit targets.
USAGE:
Best suited for swing trading on higher timeframes (4H-Daily). Combine with trend analysis for optimal results.
DISCLAIMER: Educational purposes only. Past performance doesn't guarantee future results.
EMA20 Entry with Lei Teacher Strategy_Trend_Follow_RuleEMA20 Entry with Lei Teacher Strategy Trend Follow Entry Alert
Dynamic Fibonacci MTF Zones v1🔹 Overview
This indicator automatically detects Fibonacci retracement levels across multiple timeframes (MTF) and highlights the most relevant zones around the current price.
Instead of cluttering the chart with too many lines, it only shows the 3 nearest levels above and below the current price, with clear labels and lines.
🔹 Key Features
Multi-Timeframe Support
Up to 7 custom timeframes can be analyzed simultaneously
Example: 5m, 15m, 1H, 4H, 1D, 1W, 1M
Dynamic Fibonacci Levels
Based on recent high/low within N bars
Uses extended set of 25 ratios (0.045 ~ 0.955)
Golden Pocket (0.382–0.618) zones are auto-highlighted
Nearest 3 Levels Display
Picks the 3 closest levels above and below current price
Labels and lines are plotted for clarity
Identical levels across TFs are merged automatically for clean display
Labels with Details
Direction (▲ / ▼)
Timeframe
Fibonacci ratio
Exact price
Visual Customization
Above levels in blue tones, below levels in red tones
Transparency darkens gradually from TF1 → TF7
Line style: solid / dashed / dotted
Zone fills with adjustable colors
🔹 How to Use
Identify strong support/resistance zones where multiple TF Fibonacci levels overlap
Scalpers: Combine short TFs (5m, 15m, 1H)
Swing traders: Use higher TFs (4H, 1D, 1W)
Investors: Track broader zones (1D, 1W, 1M)
🔹 Settings
Recent Range Bars (R): lookback period for Fibonacci highs/lows
Golden Pocket Highlight: toggle 0.382–0.618 shading
Line Style: switch between line/circle visualization
MTF Control: enable/disable TF1~TF7 with custom timeframe selection
✅ Core Idea:
This tool doesn’t just draw Fibonacci lines — it dynamically selects the most relevant MTF levels, merges duplicates, and highlights only the critical zones you need for real trading decisions.
Guardian Breakout System with Trailing Stop AlertGuardian Breakout System (v5) Smart Trend & Breakout Indicator
Take your trading to the next level with the Guardian Breakout System , a smart, all-in-one indicator designed to spot high-probability bullish breakouts while keeping risk under control. Perfect for Daily, Weekly, and Monthly charts, this tool combines trend analysis, volume, RSI, doji detection, and ATR-based trailing stops into one powerful system.
Why traders love it:
Spot Uptrends Early: Tracks the 20-day and 50-day SMAs to identify strong bullish trends.
Smart Pullback Entries: Detects minor pullbacks with bullish doji signals near the 20-day SMA.
Breakouts with Confidence: Confirms signals with volume spikes, RSI < 63, and 10-day SMA direction.
Dynamic ATR Trailing Stops: Automatically adjusts stop levels to lock in profits as the price moves higher.
Next-Bar Entry Option: Safer entries on higher timeframes like daily or weekly charts.
Visual Markers & Alerts: Green arrows mark entries, red arrows and dots mark stop hits, with built-in alerts for breakouts and stop triggers.
How it works:
1. Identify a bullish trend.
2. Watch for pullbacks with doji candles near the 20-day SMA.
3. Enter on breakout above the doji high, or on the next bar’s open.
4. Use ATR-based trailing stops to protect profits.
The Guardian Breakout System gives traders a clear, visual, and reliable way to enter trending markets with confidence while managing risk automatically.
SMA MAD SuperTrend | OquantThe SMA MAD SuperTrend | Oquant is an trend-following indicator designed to help traders identify potential trend directions and reversals using a unique combination of a Simple Moving Average (SMA), Mean Absolute Deviation (MAD), and a SuperTrend mechanism. This script aims to provide clear visual signals for trend entries and exits, making it suitable for traders looking to capture trends.
This indicator innovatively combines the smoothing properties of an SMA with the volatility-adaptive qualities of MAD to create dynamic SuperTrend bands. Unlike traditional SuperTrend indicators that rely on Average True Range (ATR) for volatility, this script uses Mean Absolute Deviation(MAD) to measure the average absolute deviation from the mean price, providing a different perspective on price volatility. The result is a SuperTrend system that adapts to market conditions with a focus on price deviation, offering a unique tool for trend detection.
Components and Calculations
Simple Moving Average (SMA):
The SMA is a widely used indicator that calculates the average of a specified number of closing prices. It smooths price data to identify the overall trend direction. In this script, the SMA serves as the baseline for calculating dynamic upper and lower bands.
Mean Absolute Deviation (MAD):
MAD measures the average absolute deviation of the price from its mean. It quantifies volatility by calculating how far prices deviate from the mean price, offering an alternative to ATR.
SuperTrend Mechanism:
This SuperTrend indicator generates dynamic upper and lower bands around the Simple Moving Average (SMA) using mean absolute deviation as measure of volatility.
It tracks trend direction by comparing the close price to the bands:
If the price crosses above the upper band, the trend turns bullish, and the SuperTrend follows the lower band.
If the price crosses below the lower band, the trend turns bearish, and the SuperTrend follows the upper band.
The bands adjust based on their previous values, updating only when the price crosses a band or the band shifts in the correct direction, reducing false signals and ensuring stable trend detection.
How to Use the Indicator
Trend Signals:
Green Line: Indicates a bullish trend (price above the SuperTrend line).
Purple Line: Indicates a bearish trend (price below the SuperTrend line).
Bar and Candle Coloring: Bars and candles are colored green for bullish trends and purple for bearish trends, making it easy to visualize trend direction.
Filled Areas: The area between the price and the SuperTrend line is filled with transparent colors (green for bullish, purple for bearish) to highlight trend.
Inputs:
Source: Choose the price data for calculations.
SMA Length: Adjust the period for the SMA. Longer periods smooth the trend further.
MAD Length: Set the period for MAD calculation. Shorter periods make the MAD more sensitive.
Factor: Control the distance of the SuperTrend bands from the SMA. Higher values widen the bands, reducing sensitivity to price fluctuations.
Alerts:
The script includes alert conditions for trend changes:
SMA MAD SuperTrend Long: Triggered when the trend turns bullish.
SMA MAD SuperTrend Short: Triggered when the trend turns bearish.
Set up alerts in TradingView to receive notifications for these conditions.
Why Use This Script?
The SMA MAD SuperTrend | Oquant offers a fresh take on trend-following by integrating SMA as baseline and MAD for volatility measurement, providing an alternative to ATR-based SuperTrend indicators. Its clear visual signals, customizable inputs, and alert conditions make it versatile for traders of all levels.
⚠️ Disclaimer: This indicator is intended for educational and informational purposes only. Trading/investing involves risk, and past performance does not guarantee future results. Always test and evaluate indicators/strategies before applying them in live markets. Use at your own risk.