SAPSAN TRADE: Regression ChannelSAPSAN TRADE: Regression Channel
The SAPSAN TRADE: Regression Channel indicator provides traders with a powerful visual tool to identify trends, deviations, and potential reversal zones using linear regression analysis.
Key Features:
Custom Time Range: Set the start and end time to focus the regression calculation on a specific portion of the chart.
Regression Line: Automatically calculates and plots the best-fit linear regression line based on closing prices.
± StdDev Levels: Shows upper and lower standard deviation levels, giving insight into price volatility and potential support/resistance zones.
Styled Parameters Table: Displays slope (a), intercept (b), and standard deviation in a clear, color-coded table on the chart.
Benefits:
Quickly identify the dominant trend over a selected time range.
Easily spot overextended price movements beyond ± StdDev levels.
Track regression parameters visually with the table for quick decision-making.
Fully customizable colors and line width for optimal readability on any chart.
How to Use:
Set the desired time range for the regression calculation.
Enable or disable the regression line and StdDev levels according to your preference.
Observe the slope and intercept values in the table to understand trend strength and direction.
Use the ± StdDev levels as dynamic zones for potential entries or exits.
Ideal for:
Traders who want a clear visual representation of trend direction, price deviations, and statistical analysis directly on the chart. Perfect for forex, crypto, stocks, and other markets where trend and volatility analysis is essential.
ניתוח מגמה
ActivTrades - Crypto Fear & Greed Index - Ion Jauregui📌 ActivTrades – Crypto Fear & Greed Index
This indicator recreates a Crypto Fear & Greed Index directly on TradingView, allowing traders to monitor overall market sentiment in the cryptocurrency market. It is designed for informational purposes and should be used together with your own analysis and risk management.
🔎 How it works
The index is calculated by combining five components into a single score (0–100):
RSI, Volatility, Volume Activity, Momentum, Altcoin Dominance
Each component is normalized and weighted to form the index.
📊 Interpretation
• Below 40 → Fear Zone (market sentiment is cautious, risk-off).
• Above 60 → Greed Zone (market sentiment is aggressive, risk-on).
• 40–60 → Neutral sentiment.
Shaded backgrounds and reference lines help visualize these zones, and can be toggled in the settings.
⚠️ Notes
• This tool does not generate buy or sell signals.
• It is meant to provide a sentiment overview of the crypto market.
• Works best on the daily chart of BTCUSDT, but can be applied to other timeframes.
*******************************************************************************************
The information provided does not constitute investment research. The material has not been prepared in accordance with the legal requirements designed to promote the independence of investment research and such should be considered a marketing communication.
All information has been prepared by ActivTrades ("AT"). The information does not contain a record of AT's prices, or an offer of or solicitation for a transaction in any financial instrument. No representation or warranty is given as to the accuracy or completeness of this information.
Any material provided does not have regard to the specific investment objective and financial situation of any person who may receive it. Past performance and forecasting are not a synonym of a reliable indicator of future performance. AT provides an execution-only service. Consequently, any person acting on the information provided does so at their own risk. Political risk is unpredictable. Central bank actions can vary. Platform tools do not guarantee success.
INDICATORS RISK ADVICE: The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by ActivTrades. This script intends to help follow the trend and filter out market noise. This script is meant for the use of international users. This script is not meant for the use of Spain users.
Dual Relative Strength (vs NIFTY) Nikrun1. Fast RS (Early Leadership)
• Indicator: Relative Strength (by modhelius)
• Comparative Symbol: NIFTY
• Period: 26 weeks (~6 months)
• Purpose: Detects early shifts in relative strength before price fully confirms.
⸻
2. Slow RS (Confirmation)
• Add the same indicator again.
• Comparative Symbol: NIFTY
• Period: 52 weeks (1 year)
• Purpose: Confirms sustained leadership. Helps filter noise & false positives.
⸻
3. Visuals
• Style tip:
• Make RS(26) = blue line (fast, responsive).
• Make RS(52) = thicker black/green line (slow, authority).
• Keep zero line visible so you instantly see outperformance/underperformance.
⸻
ENAUSDT.P Strategy – Alerts Ready (JSON)Ena/usdt trend trading strategy.
Backtesting results:
Starting date: 2 September 2025
7 days:
PnL: +13.91 (+1.39%)
Max drawdown: -17.68 (-1.73%)
Total trades: 22
Win rate: 63.64%
Profit factor: 1.82
30 days:
PnL: +81.16 (+8.12%)
Max drawdown: -26.38 (-2.51%)
Total trades: 89
Win rate: 68.54%
Profit factor: 2.52
90 days:
PnL: +270.64 (+27.06%)
Max drawdown: -36.29 (-3.34%)
Total trades: 273
Win rate: 67.09%
Profit factor: 2.72
365 day:
PnL: +702.89 (+70.29%)
Max drawdown: -130.40 (-10.16%)
Total trades: 986
Win rate: 65.42%
Profit factor: 1.67
Market Opening Time### TradingView Pine Script "Market Opening Time" Explanation
This Pine Script (`@version=5`) is an indicator that visually highlights market trading sessions (Sydney, London, New York, etc.) by changing the chart's background color. It adjusts for U.S. and Australian Daylight Saving Time (DST).
---
#### **1. Overview**
- **Purpose**: Changes the chart's background color based on UTC time zones to highlight market sessions.
- **Features**:
- Automatically adjusts for U.S. DST (2nd Sunday of March to 1st Sunday of November) and Australian DST (1st Sunday of October to 1st Sunday of April).
- Assigns colors to four time zones (00:00, 06:30, 14:00, 21:00).
- **Use Case**: Helps forex/stock traders identify active market sessions.
---
#### **2. Key Logic**
- **DST Detection**:
- `f_isUSDst`: Checks U.S. DST status.
- `f_isAustraliaDst`: Checks Australian DST status.
- **Time Adjustment** (`f_getAdjustedTime`):
- U.S. DST off: Shifts `time3` (14:00) forward by 1 hour.
- Australian DST off: Shifts `time4` (21:00) forward by 1 hour.
- **Time Conversion** (`f_timeToMinutes`): Converts time (e.g., "14:00") to minutes (e.g., 840).
- **Current Time** (`f_currentTimeInMinutes`): Gets UTC time in minutes.
- **Background Color** (`f_getBackgroundColor`):
- Applies colors based on time ranges:
- 00:00–06:30: Orange (Asia)
- 06:30–14:00: Purple (London)
- 14:00–21:00: Blue (New York, DST-adjusted)
- 21:00–00:00: Red (Sydney, DST-adjusted)
- Outside ranges: Gray
---
#### **3. Settings**
- **Time Zones**:
- `time1` = 00:00 (Orange)
- `time2` = 06:30 (Purple)
- `time3` = 14:00 (Blue, DST-adjusted)
- `time4` = 21:00 (Red, DST-adjusted)
- **Colors**: Transparency set to 90 for visibility.
---
#### **4. Example**
- **September 5, 2025, 10:25 PM JST (13:25 UTC)**:
- U.S. DST active, Australian DST inactive.
- 13:25 UTC falls between `time2` (06:30) and `time3` (14:00) → Background is **Purple** (London session).
- **Effect**: Background color changes dynamically to reflect active sessions.
---
#### **5. Customization**
- Modify `time1`–`time4` or colors for different sessions.
- Add time zones for other markets (e.g., Tokyo).
---
#### **6. Notes**
- Uses UTC; ensure chart is set to UTC.
- DST rules are U.S./Australia-specific; verify for other regions.
A simple, visual tool for tracking market sessions.
----
### TradingView Pine Script「Market Opening Time」解説
このPine Script(`@version=5`)は、市場の取引時間帯(シドニー、ロンドン、ニューヨークなど)を背景色で視覚化するインジケーターです。米国とオーストラリアの夏時間(DST)を考慮し、時間帯を調整します。
---
#### **1. 概要**
- **目的**: UTC基準の時間帯に基づき、チャートの背景色を変更して市場セッションを強調。
- **機能**:
- 米国DST(3月第2日曜~11月第1日曜)とオーストラリアDST(10月第1日曜~4月第1日曜)を自動調整。
- 4つの時間帯(00:00、06:30、14:00、21:00)に色を割り当て。
- **用途**: FXや株式トレーダーが市場のアクティブ時間を把握。
---
#### **2. 主要ロジック**
- **DST判定**:
- `f_isUSDst`: 米国DSTを判定。
- `f_isAustraliaDst`: オーストラリアDSTを判定。
- **時間調整** (`f_getAdjustedTime`):
- 米国DST非適用時: `time3`(14:00)を1時間遅延。
- オーストラリアDST非適用時: `time4`(21:00)を1時間遅延。
- **時間変換** (`f_timeToMinutes`): 時間(例: "14:00")を分単位(840)に変換。
- **現在時刻** (`f_currentTimeInMinutes`): UTCの現在時刻を分単位で取得。
- **背景色** (`f_getBackgroundColor`):
- 時間帯に応じた色を適用:
- 00:00~06:30: オレンジ(アジア)
- 06:30~14:00: 紫(ロンドン)
- 14:00~21:00: 青(ニューヨーク、DST調整)
- 21:00~00:00: 赤(シドニー、DST調整)
- 時間外: グレー
---
#### **3. 設定**
- **時間帯**:
- `time1` = 00:00(オレンジ)
- `time2` = 06:30(紫)
- `time3` = 14:00(青、DST調整)
- `time4` = 21:00(赤、DST調整)
- **色**: 透明度90で視認性確保。
---
#### **4. 使用例**
- **2025年9月5日22:25 JST(13:25 UTC)**:
- 米国DST適用、豪DST非適用。
- 13:25は`time2`(06:30)~`time3`(14:00)の間 → 背景色は**紫**(ロンドン)。
- **効果**: 時間帯に応じて背景色が変化し、市場セッションを直感的に把握。
---
#### **5. カスタマイズ**
- 時間帯(`time1`~`time4`)や色を変更可能。
- 他の市場(例: 東京)に対応する時間帯を追加可能。
---
#### **6. 注意点**
- UTC基準のため、チャート設定をUTCに。
- DSTルールは米国・オーストラリア準拠。他地域では要確認。
シンプルで視覚的な市場時間インジケーターです。
Composite Sentiment Indicator (SPY/QQQ/SOXX + VixFix)# Multi-Index Composite Sentiment Indicator
A comprehensive sentiment indicator that works across SPY, QQQ, SOXX, and custom symbols. Combines volatility, options flow, macro factors, technicals, and seasonality into a single z-score composite.
## What It Does
Takes multiple market sentiment inputs (VIX, put/call ratios, breadth, yields, etc.) and smooshes them into one normalized line. When the composite is high = markets getting spooked. When it's low = markets getting complacent.
## Key Features
- **Multi-Index Support**: Automatically adapts for SPY (uses VIX), QQQ (uses VXN), SOXX (uses VixFix), or custom symbols
- **VixFix Integration**: Larry Williams' VixFix for indices without dedicated VIX measures
- **Signal MA**: Choose from SMA/EMA/WMA/HMA/TEMA/DEMA with color coding (red above MA = risk-on, green below = risk-off)
- **September Focus**: Built-in seasonality weighting for September weakness patterns
- **Comprehensive Components**: Volatility, options sentiment, macro factors, technicals, and sector-specific metrics
## How to Use
**Basic Setup:**
1. Pick your index (SPY/QQQ/SOXX)
2. Choose signal MA type and length (EMA 21 is a good start)
3. Watch for extreme readings and MA crossovers
**Color Signals:**
- Red composite = above signal MA = bearish sentiment
- Green composite = below signal MA = bullish sentiment
- Extreme high readings (red background) = potential tops
- Extreme low readings (green background) = potential bottoms
**For Different Indices:**
- **QQQ**: Uses NASDAQ VIX (VXN) when available, falls back to VixFix
- **SOXX**: Includes semiconductor cycle indicators, uses VixFix for volatility
- **Custom**: Adapts automatically, relies on VixFix and general market metrics
## Components Included
**Volatility**: VIX/VXN/VixFix, term structure, historical vol
**Options**: Put/call ratios, SKEW index
**Macro**: DXY, 10Y yields, yield curve, TIPS spreads
**Technical**: RSI deviation, momentum
**Seasonality**: September effects, quad witching, month-end patterns
**Breadth**: S&P 500 and NASDAQ breadth measures
## Pro Tips
- Works well on Daily Timeframe
- September gets extra weight automatically - watch for August setup signals
- Keltner envelope breaks often mark sentiment exhaustion points
- Use alerts for extreme readings and MA crossovers
Works best when you understand that sentiment extremes often mark turning points, not continuation signals. High readings don't mean "keep shorting" - they mean "start looking for reversal setups."
## Settings Worth Tweaking
- Signal MA type/length for your timeframe
- Component weights based on what matters for your index
- Envelope multipliers for your risk tolerance
- VixFix parameters if default doesn't fit your symbol's volatility
The table shows all current component readings so you can see what's driving the signal. Good for context and debugging weird readings.
HalfTrend Histogram (MTF)This indicator shows the halftrend on a histogram (rather than a line on the chart) and has an option for Multi timeframe (MTF).
It uses the logic of the original halftrend coded by Everget.
The halftrend is a trend-following indicator that uses volatility to to determine change in bias.
𝑨𝒔𝒕𝒂𝒓 - HelAstar – Hel is an adaptive ATR stop system that finds the best ATR length in real time.
@v1.0
Optimizes ATR length automatically within a defined range
Plots dynamic long/short stops with ATR multiplier
Option to use Super Smoother (FFT-lite) filtering
On-chart stats table with performance & win probability
Lightweight, efficient, and no repainting
buy sell ultra systemWhat it is
EMA-POC Momentum System Ultra combines a proven trend stack (EMA 20/50/238), a price-of-control layer (POC via Bar-POC or VWAP alternative), and a momentum trigger (RSI) to surface higher-quality entries only when multiple, independent conditions align. This is not a cosmetic mashup; each component gates the others.
How components work together
Trend (EMA 20/50/238): Defines short/medium/long bias and filters counter-trend signals.
POC (Bar-POC or Alt-POC/VWAP): Locates the most-traded/weighted price area; a neutral band around POC helps avoid chop.
Control background: Above POC → buyers likely in control; below → sellers.
Momentum (RSI): Entry arrows print only when RSI confirms with trend and price location vs POC; optional “cross 50” requirement reduces noise.
Optional HTF trend: Confluence with a higher-timeframe EMA stack for stricter filtering.
Why it’s original/useful
Signals require confluence of (1) EMA trend stack, (2) POC location and neutral-zone filtering, (3) momentum confirmation, (4) optional slope and distance-to-POC checks, and (5) optional HTF trend. This reduces false positives compared with using any layer in isolation.
How to use
Markets/TFs: Built for XAUUSD (Gold) and US30. Works 1m–1h for intraday; 2h–4h for swing.
Entries:
Long: EMA stack bullish, price above POC, not in neutral band, RSI condition true → “Buy” arrow.
Short: Opposite conditions → “Sell” arrow.
Stops/Targets (suggested):
Initial stop beyond POC/neutral band or recent swing.
First target around 1R; trail with EMA20/50 or structure breaks.
Settings to tune:
POC Mode: Bar-POC (highest-volume bar’s close over lookback) or Alt-POC (VWAP).
Neutral Band %: 0.10–0.35 typical intraday.
Min distance from POC: 0.10–0.50% helps avoid low-RR entries right at POC.
RSI: Choose “cross 50” for stricter triggers or simple >/< 50 for more signals.
HTF trend: Turn on for extra confluence.
Alerts:
Buy Signal and Sell Signal (separate), or one Combined Buy/Sell alert.
Set to “Once per bar close” if you want only confirmed arrows.
Repainting / limitations
Shapes can move until bar close (standard Pine behavior) when using intrabar conditions; final confirmation at close. No system guarantees profitability—forward test and adapt to your market/instrument.
Clean chart
The published chart contains only this script so outputs are easy to identify.
Versions / updates
Use Publish → Update for minor changes; do not create new publications for small tweaks. If you fork to preserve older behavior, explain why and how your fork differs.
Changelog
v1.1 – Tuning for Gold/US30, neutral-band & distance filters, optional HTF trend, combined alert.
v1.0 – Initial public release (EMA stack + POC modes + RSI + alerts).
License & credits
Open-source for learning and improvement. Please credit on forks and explain modifications in your description.
AMF PG Strategy AMF Command Center Strategy (Praetorian Guard)
The AMF PG Strategy (Praetorian Guard) is an advanced trading system built to adapt seamlessly across market conditions. Its unique structure balances precision entries with intelligent protection, giving traders confidence in both trending and volatile environments.
Key highlights include:
Adaptive Core (AMF Engine) – A dynamic framework that automatically adjusts and generates a powerful tracking line for clearer long and short opportunities.
Praetorian Guard – A built-in protective shield that activates in extreme conditions, helping stabilize performance when markets become turbulent.
Versatility – Effective across multiple timeframes, from scalping to swing trading, without constant parameter adjustments.
Clarity – Clean visual signals and color-coded tracking for instant decision-making.
This strategy was designed for traders who want more than just entries and exits — it offers a command center for disciplined, adaptive, and resilient trading.
CyberTrading01 – CollegePips Exclusive IndicatorVersion 5 – September 2025
This indicator features a custom calculation table based on ATR.
It also identifies various candlestick types according to specific calculations. Then, following trading rules, it detects pivots and key market highs and lows, helping us find the best trading opportunities.
The indicator also has the ability to calculate FVG.
In future versions, Order Blocks and other zones will be added.
To obtain this indicator, you can only contact the Telegram ID: Sceptered_m.
Long-Term Trend & Valuation Model [Backquant]Long-Term Trend & Valuation Model
Invite-only. A universal long-term valuation strategy and trend model built to work across markets, with an emphasis on crypto where cycles and volatility are large. Intended primarily for the 1D timeframe. Inputs should be adjusted per asset to reflect its structure and volatility.
If you would like to checkout the simplified and open source valuation, check out:
What this is
A two-layer framework that answers two different questions.
• The Valuation Engine asks “how extended is price relative to its own long-term regime” and outputs a centered oscillator that moves positive in supportive conditions and negative in deteriorating conditions.
• The Trend Model asks “is the market actually trending in a sustained direction” and converts several independent subsystems into a single composite score.
The combination lets you separate “where we are in the cycle” from “what to do about it” so allocation and timing can be handled with fewer conflicts.
Design philosophy
Crypto and many risk assets move in multi-month expansions and contractions. Short tools flip often and can be misleading near regime boundaries. This model favors slower, high-confidence information, then summarizes it in simple visuals and alerts. It is not trying to catch every swing. It is built to help you participate in the meat of long uptrends, de-risk during deteriorations, and identify stretched conditions that deserve caution or patience.
Valuation Engine, high level
The Valuation Engine blends several slow signals into one measure. Exact transforms, windows, and weights are private, but the categories below describe the intent. Each input is standardized so unlike units can be combined without one dominating.
Momentum quality — favors persistent, orderly advances over erratic spikes. Helps distinguish trend continuation from noise.
Mean-reversion pressure — detects when price is far from a long anchor or when oscillators are pulling back toward equilibrium.
Risk-adjusted return — long-window reward to variability. Encourages time in market when advances are efficient rather than merely fast.
Volume imbalance — summarizes whether activity is expanding with advances or with declines, using a slow envelope to avoid day-to-day churn.
Trend distance — expresses how stretched price is from a structural baseline rather than from a short moving average.
Price normalization — a long z-score of price to keep extremes comparable across cycles and symbols.
How the Valuation Engine is shaped
Standardization — components are put on comparable scales over long windows.
Composite blend — standardized parts are combined into one reading with protective weighting. No single family can override the rest on its own.
Smoothing — optional moving average smoothing to reduce whipsaw around zero or around the bands.
Bounded scaling — the composite is compressed into a stable, interpretable range so the mid zone and extremes are visually consistent. This reduces the effect of outliers without hiding genuine stress.
Volatility-aware re-expansion — after compression, the series is allowed to swing wider in high-volatility regimes so “overbought” and “oversold” remain meaningful when conditions change.
Thresholds — fixed OB/OS levels or dynamic bands that float with recent dispersion. Dynamic bands use k times a rolling standard deviation. Fixed bands are simple and comparable across charts.
How to read the Valuation Oscillator
Above zero suggests a supportive backdrop. Rising and positive often aligns with uptrends that are gaining participation.
Below zero suggests deterioration or risk aversion. Falling and negative often aligns with distribution or with trend exhaustion.
Touches of the upper band show stretch on the optimistic side. Repeated tags without breakdown often occur late in cycles, especially in crypto.
Touches of the lower band show stretch on the pessimistic side. They are common in washouts and early bases.
Visual elements
Valuation Oscillator — colored by sign for instant context.
OB/OS guides — fixed or dynamic bands.
Background and bar colors — optional, tied to the sign of valuation for quick scans.
Summary table — optional, shows the standardized contribution of the major categories and the final composite score with a simple status icon.
Trend Model, composite scoring
The trend side aggregates several independent subsystems. Each subsystem issues a vote: long, short, or neutral. Votes are averaged into a composite score. The exact logic of each subsystem is intentionally abstracted. The families below describe roles, not formulas.
Long-horizon price state — checks where price sits relative to multiple structural baselines and whether those baselines are aligned.
Macro regime checks — favors sustained risk-on behavior and penalizes persistent deterioration in breadth or volatility structure.
Ultimate confirmation — a conservative filter that only votes when directional evidence is persistent.
Minimalist sanity checks — keep the model responsive to obvious extremes and prevent “stuck neutral” states.
Higher timeframe or overlay inputs — optional votes that consider slower contexts or relative strength to stabilize borderline periods.
You define two cutoffs for the composite: above the long threshold the state is Long , below the short threshold the state is Short , in between is Cash/Neutral . The script paints a signal line on price for an at-a-glance view and provides alerts when the composite crosses your thresholds.
How it can be used
Cycle framing in crypto — use deep negative valuation as accumulation context, then look for the composite trend to move through your long threshold. Late in cycles, extended positive valuation with weakening composite votes is a caution cue for de-risking or tighter management.
Regime-based allocation — increase risk or loosen take-profits when the composite is firmly Long and valuation is rising. Decrease risk or rotate to stable holdings when the composite is Short and valuation is falling.
Signal gating — run shorter-term entry systems only in the direction of the composite. This reduces counter-trend trades and improves holding discipline during strong uptrends.
Sizing overlay — scale position sizes by the magnitude of the valuation reading. Smaller sizes near the upper band during aging advances, larger sizes near zero after strong resets.
DCA context — for long-only accumulation, schedule heavier adds when valuation is negative and stabilizing, then lighten or pause adds when valuation is very positive and flattening.
Cross-asset rotation — compare symbols on 1D with the same fixed bands. Favor assets with positive valuation that are also in a Long composite state.
Interpreting common patterns
Early build-out — valuation rises from below zero, but the composite is still neutral. This is often the base-building phase. Patience and staged entries can make sense.
Healthy advance — valuation positive and trending up, composite firmly Long. Pullbacks that keep valuation above zero are usually opportunities rather than trend breaks.
Late-cycle stretch — valuation pinned near the upper band while the composite starts to weaken toward neutral. Consider trimming, tightening risk, or shifting to a “let the market prove it” stance.
Distribution and unwind — valuation negative and falling, composite Short. Rallies are treated as counter-trend until both turn.
Settings that matter
Timeframe
This model is intended for 1D as the primary view. It can be inspected on higher or lower frames, but the design choices assume daily bars for crypto and other risk assets.
Asset-specific tuning
Inputs should be adjusted per asset. Coins with high variability benefit from longer lookbacks and slightly wider dynamic bands. Lower-volatility instruments can use shorter windows and tighter bands.
Valuation side
Lookback lengths — longer values make the oscillator steadier and more cycle-aware. Shorter values increase sensitivity but create more mid-zone noise.
Smoothing — enable to reduce flicker around zero and around the bands. Disable if you want faster warnings of regime change.
Dynamic vs fixed thresholds — dynamic bands float with recent dispersion and keep OB/OS comparable across regimes. Fixed bands are simple and make inter-asset comparison easy.
Scaling and re-expansion — keep this enabled if you want extremes to remain interpretable when volatility rises.
Trend side
Composite thresholds — widen the neutral zone if you want fewer flips. Tighten thresholds if you want earlier signals at the cost of more transitions.
Visibility — use the price-pane signal line and bar coloring to keep the regime in view while you focus on structure.
Alerts
Valuation OB/OS enter and exit — the oscillator entering or leaving stretched zones.
Zero-line crosses — valuation turning positive or negative.
Trend flips — composite crossing your long or short threshold.
Strengths
Separates “valuation context” from “trend state,” which improves decisions about when to add, reduce, or stand aside.
Composite voting reduces reliance on any single indicator family and improves robustness across regimes.
Volatility-aware scaling keeps signals interpretable during quiet and wild markets.
Clear, configurable visuals and alerts that support long-horizon discipline rather than frequent toggling.
Final thoughts
This is a universal long-term valuation strategy and trend model that aims to keep you aligned with the dominant regime while giving transparent context for stretch and risk. For crypto on 1D, it helps map accumulation, expansion, distribution, and unwind phases with a single, consistent language. Tune lookbacks, smoothing, and thresholds to the asset you trade, let the valuation side tell you where you are in the cycle, and let the composite trend side tell you what stance to hold until the market meaningfully changes.
GOLD – Dan Toma Patterns + Market Structure/OB [by Dragos] v3.2GOLD – Dan Toma Patterns + Market Structure/OB v3.2
(Panel x3 • Last R:R • Logical SL • HTF Filter)
All-in-one XAUUSD tool blending Dan Toma patterns (P1–P4) with Internal/External Market Structure, Order Blocks, fixed liquidity (PDH/PDL & sessions), breakout short, dip-buy on trend, a live signals panel, and auto-draw Entry/SL/TP for the last signal. Includes an HTF EMA filter (with slope) and logical Stop Loss to keep signals disciplined.
What it does
P1 – Trend Reverse SELL: structure shift (BOS down) + Supply rejection (wick/engulf) and/or RSI overbought.
P2 – Liquidity: hunts fixed liquidity: PDH/PDL and Asia/London/NY session highs/lows + wick rejection confirmation. BUY at PDL/session Lows, SELL at PDH/session Highs.
P3 – Breakout Short: tight range (ATR/ATRma below threshold) + break under range LL with volume spike.
P4 – Dip Buy: uptrend (EMA) + Demand + pullback to 61.8% (configurable) + RSI oversold.
Market Structure + OB: marks CHoCH/BOS on Internal/External and draws Order Blocks from the last opposite candle at the break (box cap & custom colors).
Auto R:R (last signal only): draws Entry/SL/TP1/TP2 (1.5R / 3R) for the most recent signal to keep the chart clean.
Logical SL: choose Pivot, SD Box, or %ATR and force correct placement (BUY: SL below entry / SELL: SL above entry).
HTF Filter: confirm direction with HTF EMA (custom TF/length), optional slope requirement (rising for BUY / falling for SELL).
Panel x3: compact panel with the last N signals (time, pattern, side, entry, SL, TP1, TP2); place it in any corner.
Quick workflow
HTF context: enable HTF filter (e.g., EMA 200 on H4) to lock a clean bias.
Structure & zones: let MS/OB mark CHoCH/BOS and Supply/Demand; look for confluence with PDH/PDL & session HLs.
Triggers:
SELL: P1/P2/P3 confluencing with Supply, BOS down, wick up, breakout volume.
BUY: P2/P4 in Demand, uptrend, pullback near 0.618, RSI OS.
Execution & management: confirm on bar close (optional repaintSafe), use logical SL, follow auto Entry/SL/TP lines of the last signal.
Panel: monitor fresh events (timestamp + details) for quick validation/journaling.
Key settings
General: XAU/GOLD filter, close-bar confirmation, optional candle labels, show Entry/SL/TP for the last signal only.
HTF: timeframe, EMA length, Need Slope toggle.
Structure/OB: Internal/External/Both/Off, swing lengths, OB lookback, max OB boxes.
Supply/Demand: pivot length (HH/LL) + wick fraction for imbalance detection.
Liquidity: PDH/PDL on/off, sessions (Asia/London/NY) and session HLs.
Breakout Short: range lookback, ATR/ATRma threshold, volume spike multiplier.
Dip Buy: EMA trend length, target Fibo retracement.
RSI/Volume: RSI length + OB/OS thresholds.
SL/TP: Pivot / SD Box / %ATR, ATR length & multiplier, forceLogicalSL.
Alerts (ready to use)
P1 – Trend Reverse SELL
P2 – Liquidity Short
P2 – Liquidity Buy
P3 – Breakout Short
P4 – Dip Buy
(Messages include current price; for auto-execution use your own bridge/automation.)
Recommendations
Timeframes: M5/M15 for entries, H1/H4 for context.
Look for 2–3 confluences (MS, OB, PDH/PDL/sessions, RSI/volume) before validating a signal.
Avoid flat, low-volume ranges or thin-liquidity periods.
Disclaimer
This is an analysis tool, not financial advice. Trading involves risk. Use strict risk management (risk < 1%/trade, R:R ≥ 1:2, mandatory SL) and test on demo/backtest before going live.
ICT Sessions & Killzones +PRO (VinceFxBT)ICT Sessions & Killzones +PRO (VinceFxBT)
All in one Session and Killzone script for FX, Futures and Crypto markets. It includes London, New York, CBDR & Asia Sessions and Killzones.
Features
Includes London, New York, Asia, CBDR sessions
Includes all ICT Killzones
Extended session highs/lows up to 90s back, until mitigated.
Set recurring alerts for session highs and lows
Includes Indices price levels and opens
Uses UTC timezones with automatic Daylight Saving Time so NO timezone correction needed ; ) Works out of the box for all regions, including different dates of DST for US/EU.
Session highs/lows displayed on chart as lines, box or background color
Customize line styles, width and colors
Customize colors for Sessions and Killzones
Optionally include weekends for Session or Killzone separately
Optionally display day separators and labels
Fully control which options are displayed at higher or lower timeframes. (e.g. hide sessions when timeframe is 1h or higher)
Session display options
Session Background Color.
Session High & Low Lines, including Session Middle Line.
Extended session highs/lows until mitigated
Extended Session Highs & Lows until mitigated.
Session Background Color with extended Asia Session Highs & Lows until mitigated.
Set recurring alerts for session highs and lows
Set automatic alerts when previous and/or current session levels are broken.
Aljane's 13/48 strategyThis indicator combines key moving averages (EMA 13, EMA 48, and EMA 200) with VWAP and SuperTrend to help identify market trends, reversals, and potential entry/exit points. EMA crosses provide momentum signals, VWAP tracks volume-weighted price, and SuperTrend highlights trend direction with buy/sell labels.
GOLD – OB Clean + Internal/External Market Structure [Dragos]GOLD – OB Clean + Internal/External Market Structure
All-in-one tool for XAUUSD that combines:
Clean Order Blocks (Supply/Demand) derived from the last opposite candle after a BOS (break of structure)
Internal & External Market Structure (CHoCH/BOS) with lines and labels
Visual zone management: right extension, mitigation (first touch), invalidation (close beyond), and 50% midline
How it works
Structure & BOS
Finds pivots (HH/LL) via Pivot len.
Triggers BOS when price crosses the last confirmed swing.
Order Blocks
On BOS, scans the last N bars for the opposite candle (bear for BOS up / bull for BOS down) and draws the OB:
Green = Demand, Red = Supply
Optional: use wicks (high/low) or just the body (open/close).
Mitigation: on first touch the zone fades or hides (per settings).
Invalidation: if price closes beyond the zone, it turns gray or gets removed (per settings).
Midline: 50% line for refined management (partial entries, R/R, etc.).
Internal / External Structure
Two structure layers: Internal (micro, shorter swing) and External (macro, longer swing).
Displays CHoCH/BOS with labels; External lines can be dashed for clarity.
Choose to show Internal, External, or Both.
Key Settings
Structure
Pivot len (swing HH/LL) — pivot sensitivity.
Order Blocks
Lookback N bars for the opposite candle
Use wicks — if on, zone uses high/low; otherwise just the body.
Zone Management
Extend zones to the right
Hide zone after mitigation (touch)
Fade zone after mitigation
Remove zone when invalidated
Show 50% line
Max zones stored
Colors: fill/border for Demand/Supply, 50% line color, Mitigated/Invalidated colors.
General
Only on XAU/GOLD (optional) — restricts execution to symbols containing “XAU”/“GOLD”.
Market Structure (tab)
Internal Swing Length / External Swing Length
Show Internal/External Market Structure (Both / Internal / External)
Colors for bullish/bearish MS
Usage Guide
Recommended timeframes: M5/M15 for entries, H1 for context.
Workflow:
Determine External (macro) direction.
Look for BOS and OB in the same direction on Internal.
Wait for mitigation (touch) inside the OB; the 50% line can be used for conservative entries.
Good confluences: sessions (killzones), volume spikes, extreme RSI, MAs (add as separate indicators if needed).
Visual Conventions
Demand: green; Supply: red.
Mitigated: faded yellow (or hidden if chosen).
Invalidated: gray (or removed).
50% line: gray.
Notes & Limits
Pine v6. Object caps follow TradingView limits (max_* = 500). On long histories, increase “Max zones stored” carefully.
BOS is computed when price crosses the last confirmed swing; some traders prefer “close-only” confirmation (can be customized if desired).
This tool does not auto-generate BUY/SELL signals; it’s a context & zones assistant.
Risk disclaimer: Trading involves risk. This tool is for educational analysis and does not guarantee profit. Use strict risk management (fixed SL, R:R ≥ 1:2, risk < 1% per trade).
Sectoral Stock Top-to-Down Screener : ⭐ Sectoral Stock Top-to-Down Screener Analysis ⭐
This Screener indicator provides a bird's-eye view of the Market's important indices, sectors and Stocks listed in those sectors.
1: It represents a Screener Table that shows the (%) percentage change of the market, Sectors and all the Stocks (listed via input) . The color represents the Trend of the Previous day and the current day compared to Nifty50 Index.
2: The %percentage change is dependent on the Time-Frame selection:
This Input allows users to look at the Major Index > sectors > stocks in their specific time frame.
3: It has a alert function, which can trigger for all symbols/securities in the table.
Irrespective of Trading View Free or Paid user, this alert works for all .
4: Compatible with All Devices (Laptop / Mobile / Tablet / PC)
15m — numerotare candele într-o perioadă delimitată15m — numerotare candele într-o perioadă delimitată
Moons Bearish Pullback Detector# Moons Bearish Pullback Detector
## Overview
**Moons Bearish Pullback Detector** is a trend following indicator intended to identify bearish trend pullbacks to enter on price continuation.
This indicator is useful for setting watchlist alerts! Configure your pullback rules and have it monitor your watchlist for you. You will be alerted when pullbacks have occurred and are starting to continue in the trend direction.
## How It Works
### Bearish Trend Detection
The indicator identifies a bearish trend based on a configurable MA basis
### Pullback Identification
Once in a bearish trend, the indicator tracks:
Swing Lows: Continuously monitors and updates the lowest point in the trend
Pullback Start: Detects the first green candle after establishing new lows
Pullback Duration: Monitors pullback length (configurable number of bars)
Pullback Depth: Ensures pullbacks don't violate a key moving average (optional)
### Multi-Layer Filtering System
The indicator employs several optional filters to ensure signal quality:
Volume Filter: Set a minimum daily volume to ensure sufficient liquidity
Pullback Duration Filter: Pick a min and max bar count you like to see in a pullback.
Pullback Depth Filter: Monitors that pullbacks don't close above the desired EMA, maintaining trend strength
Validation Filter: Checks higher timeframe moving average for trend confirmation
Context Filter: Analyzes even higher timeframe for broader market context
### Alert System
The indicator generates alerts when:
All filtering conditions are met
Price crosses back below the configured alert line
This signals potential continuation of the bearish trend and gives warning to place potential orders
## Key Features
### Alerts
The indicator is useful for driving a watchlist alert to notify you when a pullback is starting to continue the trend.
### Visual Elements
Bollinger Bands: Optional display of 1 and 2 standard deviation bands
Moving Averages: 20 EMA (basis), 50 EMA, and 10 EMA (pullback filter)
Trend High Line: Yellow line showing current swing low during pullbacks
Alert Line: Entry signal line positioned below swing low
Background Highlighting: Gray for normal pullbacks, red tint when rules aren't met
Labels: Price labels at swing lows and depth violation warnings
Wick Detection: Tags bullish and bearish wicks for helpful spotting in your analysis
### Information Table
Comprehensive status table to show the state of your filters and rules as price plays out.
### Configuration Options
Moving average settings
Display Options
Alert Configuration
Filter Settings
## Best Use Cases
Swing Trading: Identify high-probability entries during trend pullbacks
Trend Following: Stay aligned with strong bearish momentum
Risk Management: Multiple filters help avoid false signals
Multi-Timeframe Analysis: Ensures broader market context alignment
## Trading Applications
This indicator works best when:
Markets are in clear downtrends
Sufficient volume is present
Multiple timeframes align
Used in conjunction with proper risk management
The Moons Pullback Detector provides traders with a systematic approach to identifying and capitalizing on pullback opportunities in strong bearish trends, combining technical rigor with practical usability.
---
*Note: This indicator is for educational purposes. Past performance does not guarantee future results. Always use proper risk management and consider multiple factors when making trading decisions.*
Moons Bullish Pullback Detector# Moons Pullback Detector
## Overview
**Moons Pullback Detector** is a trend following indicator intended to identify bullish trend pullbacks to enter on price continuation.
This indicator is useful for setting watchlist alerts! Configure your pullback rules and have it monitor your watchlist for you. You will be alerted when pullbacks have occurred and are starting to continue in the trend direction.
## How It Works
### Bullish Trend Detection
The indicator identifies a bullish trend based on a configurable MA basis
### Pullback Identification
Once in a bullish trend, the indicator tracks:
Swing Highs: Continuously monitors and updates the highest point in the trend
Pullback Start: Detects the first red candle after establishing new highs
Pullback Duration: Monitors pullback length (configurable number of bars)
Pullback Depth: Ensures pullbacks don't violate a key moving average (optional)
### Multi-Layer Filtering System
The indicator employs several optional filters to ensure signal quality:
Volume Filter: Set a minimum daily volume to ensure sufficient liquidity
Pullback Duration Filter: Pick a min and max bar count you like to see in a pullback.
Pullback Depth Filter: Monitors that pullbacks don't close below the desired EMA, maintaining trend strength
Validation Filter: Checks higher timeframe moving average for trend confirmation
Context Filter: Analyzes even higher timeframe for broader market context
### Alert System
The indicator generates alerts when:
All filtering conditions are met
Price crosses back above the configured alert line
This signals potential continuation of the bullish trend and gives warning to place potential orders
## Key Features
### Alerts
The indicator is useful for driving a watchlist alert to notify you when a pullback is starting to continue the trend.
### Visual Elements
Bollinger Bands: Optional display of 1 and 2 standard deviation bands
Moving Averages: 20 EMA (basis), 50 EMA, and 10 EMA (pullback filter)
Trend High Line: Yellow line showing current swing high during pullbacks
Alert Line: Entry signal line positioned below swing high
Background Highlighting: Gray for normal pullbacks, red tint when depth violated
Labels: Price labels at swing highs and depth violation warnings
Wick Detection: Tags bullish and bearish wicks for helpful spotting in your analysis
### Information Table
Comprehensive status table to show the state of your filters and rules as price plays out.
### Configuration Options
Moving average settings
Display Options
Alert Configuration
Filter Settings
## Best Use Cases
Swing Trading: Identify high-probability entries during trend pullbacks
Trend Following: Stay aligned with strong bullish momentum
Risk Management: Multiple filters help avoid false signals
Multi-Timeframe Analysis: Ensures broader market context alignment
## Trading Applications
This indicator works best when:
Markets are in clear uptrends
Sufficient volume is present
Multiple timeframes align bullishly
Used in conjunction with proper risk management
The Moons Pullback Detector provides traders with a systematic approach to identifying and capitalizing on pullback opportunities in strong bullish trends, combining technical rigor with practical usability.
---
*Note: This indicator is for educational purposes. Past performance does not guarantee future results. Always use proper risk management and consider multiple factors when making trading decisions.*
Prophecy Orderflow – US30 ScalperProphecy Orderflow – US30 Scalper is not a general-purpose indicator.
It was engineered specifically for New York session scalping on US30, where volatility demands precision, speed, and discipline.
🔹 Sniper Entries Only – The algorithm combines multi-timeframe bias, dynamic ATR filters, and orderflow-based band triggers to identify high-probability scalps with minimal noise.
🔹 Clean Visual Execution – Automatic plotting of SL and TP1/2/3 levels ensures you can trade with clarity and consistency, without overcomplicating your chart.
🔹 Adaptive to US30 Volatility – Optimized settings account for the unique pace and structure of the Dow Jones index, giving you signals aligned with real scalping conditions.
🔹 Exclusivity by Design – This script is not built for mass retail use. It is tuned for operators and scalpers who treat trading as execution, not experimentation.
⚠️ Disclaimer: This tool is provided for educational purposes only. Past performance does not guarantee future results. Trade responsibly and manage risk.