Dominance Signal Apex [CHE]]Dominance Signal Apex — Triple-confirmed entry markers with stateful guardrails
Summary
This indicator focuses on entry timing by plotting markers only when three conditions align: a closed-bar Heikin-Ashi bias, a monotonic stack of super-smoother filters, and the current HMA slope. A compact state machine provides guardrails: it starts a directional state on closed-bar Heikin-Ashi bias, maintains it only while the smoother stack remains ordered, and renders a marker only if HMA slope agrees. This design aims for selective signals and reduces isolated prints during mixed conditions. Markers fade over time to visualize the age and persistence of the current state.
Motivation: Why this design?
Common triggers flip frequently in noise or react late when regimes shift. The core idea is to gate entry markers through a closed-bar state plus independent filter alignment. The state machine limits premature prints, removes markers when alignment breaks, and uses the HMA as a final directional gate. The result is fewer mixed-context entries and clearer clusters during sustained trends.
What’s different vs. standard approaches?
Reference baseline: Single moving-average slope or classic MA cross signals.
Architecture differences:
Multi-length two-pole super-smoother stack with strict ordering checks.
Closed-bar Heikin-Ashi bias to start a directional state.
HMA slope as a final gate for rendering markers.
Time-based alpha fade to surface state age.
Practical effect: Entry markers appear in clusters during aligned regimes and are suppressed when conditions diverge, improving selectivity.
How it works (technical)
Measurements: Four recursive super-smoother series on price at short to medium horizons. Up regime means each shorter smoother sits below the next longer one; down regime is the inverse.
State machine: On bar close, positive Heikin-Ashi bias starts a bull state and negative bias starts a bear state. The state terminates the moment the smoother ordering breaks relative to the prior bar.
Rendering gate: A marker prints only if the active state agrees with the current HMA slope. The HMA is plotted and colored by slope for context.
Normalization and clamping: Marker transparency transitions from a starting to an ending alpha across a fixed number of bars, clamped within the allowed range.
Initialization: Persistent variables track state and bar-count since state start; Heikin-Ashi open is seeded on the first valid bar.
HTF/security: None used. State updates are closed-bar, which reduces repaint paths.
Bands: Smoothed high, low, centerline, and offset bands are computed but not rendered.
Parameter Guide
Show Markers — Toggle rendering — Default: true — Hides markers without changing logic.
Bull Color / Bear Color — Visual colors — Defaults: bright green / red — Aesthetic only.
Start Alpha / End Alpha — Transparency range — Defaults: one hundred / fifty, within zero to one hundred — Controls initial visibility and fade endpoint.
Steps — Fade length in bars — Default: eight, minimum one — Longer values extend the visual memory of a state.
Smoother Length — Internal band smoothing — Default: twenty-one, minimum two — Affects computed bands only; not drawn.
Band Multiplier — Internal band offset — Default: one point zero — No impact on markers.
Source — Input for HMA — Default: close — Align with your workflow.
Length — HMA length — Default: fifty, minimum one — Larger values reduce flips; smaller values react faster.
Reading & Interpretation
Entry markers:
Bull marker (below bar): Closed-bar Heikin-Ashi bias is positive, smoother stack remains aligned for up regime, and HMA slope is rising.
Bear marker (above bar): Closed-bar Heikin-Ashi bias is negative, smoother stack remains aligned for down regime, and HMA slope is falling.
Fade: Transparency progresses over the configured steps, indicating how long the current state has persisted.
Practical Workflows & Combinations
Trend following: Focus on marker clusters aligned with HMA color. Add structure filters such as higher highs and higher lows or lower highs and lower lows to avoid counter-trend entries.
Exits/Stops: Consider exiting or reducing risk when smoother ordering breaks, when HMA color flips, or when marker cadence thins out.
Multi-asset/Multi-TF: Suitable for liquid crypto, FX, indices, and equities. On lower timeframes, shorten HMA length and fade steps for faster response.
Behavior, Constraints & Performance
Repaint/confirmation: State transitions and marker eligibility are decided on closed bars; live bars do not commit state changes until close.
security()/HTF: Not used.
Resources: Declared max bars back of one thousand five hundred; recursive filters and persistent states; no explicit loops.
Known limits: Some delay around sharp turns; brief states may start in noisy phases but are quickly revoked when alignment fails; HMA gating can miss very early reversals.
Sensible Defaults & Quick Tuning
Start here: Keep defaults.
Too many flips: Increase HMA length and raise fade steps.
Too sluggish: Decrease HMA length and reduce fade steps.
Markers too faint/bold: Adjust start and end alpha toward lower or higher opacity.
What this indicator is—and isn’t
A selective entry-marker layer that prints only under triple confirmation with stateful guardrails. It is not a full system, not predictive, and does not handle risk. Combine with market structure, risk controls, and position management.
Disclaimer
The content provided, including all code and materials, is strictly for educational and informational purposes only. It is not intended as, and should not be interpreted as, financial advice, a recommendation to buy or sell any financial instrument, or an offer of any financial product or service. All strategies, tools, and examples discussed are provided for illustrative purposes to demonstrate coding techniques and the functionality of Pine Script within a trading context.
Any results from strategies or tools provided are hypothetical, and past performance is not indicative of future results. Trading and investing involve high risk, including the potential loss of principal, and may not be suitable for all individuals. Before making any trading decisions, please consult with a qualified financial professional to understand the risks involved.
By using this script, you acknowledge and agree that any trading decisions are made solely at your discretion and risk.
Best regards and happy trading
Chervolino
Cykle
ARGT Possible entry and exit points:This is just an observation, and not any type of financial advice.
]To identify key entry and exit points. In addition, this is based on YTD and yearly charts. This is a work in progress.
SuperScript Filtered (Stable)🔎 What This Indicator Does
The indicator is a trend and momentum filter.
It looks at multiple well-known technical tools (T3 moving averages, RSI, TSI, and EMA trend) and assigns a score to the current market condition.
• If most tools are bullish → score goes up.
• If most tools are bearish → score goes down.
• Only when the score is very strong (above +75 or below -75), it prints a Buy or Sell signal.
This helps traders focus only on high-probability setups instead of reacting to every small wiggle in price.
________________________________________
⚙️ How It Works
1. T3 Trend Check
o Compares a fast and slow T3 moving average.
o If the fast T3 is above the slow T3 → bullish signal.
o If it’s below → bearish signal.
2. RSI Check
o Uses the Relative Strength Index.
o If RSI is above 50 → bullish momentum.
o If RSI is below 50 → bearish momentum.
3. TSI Check
o Uses the True Strength Index.
o If TSI is above its signal line → bullish momentum.
o If TSI is below → bearish momentum.
4. EMA Trend Check
o Looks at two exponential moving averages (fast and slow).
o If price is above both → bullish.
o If price is below both → bearish.
5. Score System
o Each condition contributes +25 (bullish) or -25 (bearish).
o The total score can range from -100 to +100.
o Score ≥ +75 → Strong Buy
o Score ≤ -75 → Strong Sell
6. Signal Filtering
o Only one buy is allowed until a sell appears (and vice versa).
o A minimum bar gap is enforced between signals to avoid clutter.
________________________________________
📊 How It Appears on the Chart
• Green “BUY” label below candles → when multiple signals agree and the market is strongly bullish.
• Red “SELL” label above candles → when multiple signals agree and the market is strongly bearish.
• Background softly shaded green or red → highlights bullish or bearish conditions.
No messy tables, no clutter — just clear trend-based entries.
________________________________________
🎯 How Traders Can Use It
This indicator is designed to help traders by:
1. Filtering Noise
o Instead of reacting to every small crossover or RSI blip, it waits until at least 3–4 conditions agree.
o This avoids entering weak trades.
2. Identifying Strong Trend Shifts
o When a Buy or Sell arrow appears, it usually signals a shift in momentum that can lead to a larger move.
3. Reducing Overtrading
o By limiting signals, traders won’t be tempted to jump in and out unnecessarily.
4. Trade Confirmation
o Traders can use the signals as confirmation for their own setups.
o Example: If your strategy says “go long” and the indicator also shows a strong Buy, that trade has more conviction.
5. Alert Automation
o Built-in alerts mean you don’t have to watch the chart all day.
o You’ll be notified only when a strong signal appears.
________________________________________
⚡ When It Helps the Most
• Works best in trending markets (bullish or bearish).
• Very useful on higher timeframes (1h, 4h, daily) for swing trading.
• Can also work on lower timeframes (5m, 15m) if combined with higher timeframe trend filtering.
________________________________________
👉 In short
This indicator is a signal filter + trend detector. It combines four powerful tools into one scoring system, and only tells you to act when the odds are stacked in your favor.
________________________________________
Debt Refinance Cycle + Liquidity vs BTC (Wk) — Overlay Part 1Debt Refi Cycle - Overlay script (BTC + Liquidity + DRCI/Z normalized to BTC range)
MACD-V MomentumThe MACD-V (Moving Average Convergence Divergence – Volatility Normalized) is an award-winning momentum indicator created by Alex Spiroglou, CFTe, DipTA (ATAA). It improves on the traditional MACD by normalizing momentum with volatility, solving several well-known limitations of classic indicators:
✅ Time stability – readings are consistent across history
✅ Cross-market comparability – works equally on stocks, crypto, forex, and commodities
✅ Objective momentum framework – universal thresholds at +150 / -150, +50 / -50
✅ Cleaner signals – reduces false signals in ranges and lag in high momentum
By dividing the MACD spread by ATR, the indicator expresses momentum in volatility units, allowing meaningful comparison across timeframes and markets.
MACD-V defines seven objective momentum states:
Risk (Oversold): below -150
Rebounding: -150 to +50 and above signal
Rallying: +50 to +150 and above signal
Risk (Overbought): above +150
Retracing: above -50 and below signal
Reversing: -150 to -50 and below signal
Ranging: between -50 and +50 for N bars
Optional background tints highlight the active regime (Bull above 200-MA, Bear below 200-MA).
Rare extremes (e.g., MACD-V < -100 in a bull regime) are tagged for additional context.
Use Cases
Identify and track momentum lifecycles across any market
Spot rare extremes for potential reversal opportunities
Filter out low-momentum whipsaws in ranging conditions
Compare momentum strength across multiple symbols
Support systematic and rule-based strategy development
SCTI - D14SCTI - D14 Comprehensive Technical Analysis Suite
English Description
SCTI D14 is an advanced multi-component technical analysis indicator designed for professional traders and analysts. This comprehensive suite combines multiple analytical tools into a single, powerful indicator that provides deep market insights across various timeframes and methodologies.
Core Components:
1. EMA System (Exponential Moving Averages)
13 customizable EMA lines with periods ranging from 8 to 2584
Fibonacci-based periods (8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584)
Color-coded visualization for easy trend identification
Individual toggle controls for each EMA line
2. TFMA (Multi-Timeframe Moving Averages)
Cross-timeframe analysis with 3 independent EMA calculations
Real-time labels showing trend direction and price relationships
Customizable timeframes for each moving average
Percentage deviation display from current price
3. PMA (Precision Moving Average Cloud)
7-layer moving average system with customizable periods
Fill areas between moving averages for trend visualization
Support and resistance zone identification
Dynamic color-coded trend clouds
4. VWAP (Volume Weighted Average Price)
Multiple anchor points (Session, Week, Month, Quarter, Year, Earnings, Dividends, Splits)
Standard deviation bands for volatility analysis
Automatic session detection and anchoring
Statistical price level identification
5. Advanced Divergence Detector
12 technical indicators for divergence analysis (MACD, RSI, Stochastic, CCI, Williams %R, Bias, Momentum, OBV, VW-MACD, CMF, MFI, External)
Regular and hidden divergences detection
Bullish and bearish signals with visual confirmation
Customizable sensitivity and filtering options
Real-time alerts for divergence formations
6. Volume Profile & Node Analysis
Comprehensive volume distribution analysis
Point of Control (POC) identification
Value Area High/Low (VAH/VAL) calculations
Volume peaks and troughs detection
Support and resistance levels based on volume
7. Smart Money Concepts
Market structure analysis with Break of Structure (BOS) and Change of Character (CHoCH)
Internal and swing structure detection
Equal highs and lows identification
Fair Value Gaps (FVG) detection and visualization
Liquidity zones and institutional flow analysis
8. Trading Sessions
9 major trading sessions (Asia, Sydney, Tokyo, Shanghai, Hong Kong, Europe, London, New York, NYSE)
Real-time session status and countdown timers
Session volume and performance tracking
Customizable session boxes and labels
Statistical session analysis table
Key Features:
Modular Design: Enable/disable any component independently
Real-time Analysis: Live updates with market data
Multi-timeframe Support: Works across all chart timeframes
Customizable Alerts: Set alerts for any detected pattern or signal
Professional Visualization: Clean, organized display with customizable colors
Performance Optimized: Efficient code for smooth chart performance
Use Cases:
Trend Analysis: Identify market direction using multiple EMA systems
Entry/Exit Points: Use divergences and structure breaks for timing
Risk Management: Utilize volume profiles and session analysis for better positioning
Multi-timeframe Analysis: Confirm signals across different timeframes
Institutional Analysis: Track smart money flows and market structure
Perfect For:
Day traders seeking comprehensive market analysis
Swing traders needing multi-timeframe confirmation
Professional analysts requiring detailed market structure insights
Algorithmic traders looking for systematic signal generation
---
中文描述
SCTI - D14是一个先进的多组件技术分析指标,专为专业交易者和分析师设计。这个综合套件将多种分析工具整合到一个强大的指标中,在各种时间框架和方法论中提供深度市场洞察。
核心组件:
1. EMA系统(指数移动平均线)
13条可定制EMA线,周期从8到2584
基于斐波那契的周期(8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584)
颜色编码可视化,便于趋势识别
每条EMA线的独立切换控制
2. TFMA(多时间框架移动平均线)
跨时间框架分析,包含3个独立的EMA计算
实时标签显示趋势方向和价格关系
每个移动平均线的可定制时间框架
显示与当前价格的百分比偏差
3. PMA(精密移动平均云)
7层移动平均系统,周期可定制
移动平均线间填充区域用于趋势可视化
支撑阻力区域识别
动态颜色编码趋势云
4. VWAP(成交量加权平均价格)
多个锚点(交易时段、周、月、季、年、财报、分红、拆股)
标准差带用于波动性分析
自动时段检测和锚定
统计价格水平识别
5. 高级背离检测器
12个技术指标用于背离分析(MACD、RSI、随机指标、CCI、威廉姆斯%R、Bias、动量、OBV、VW-MACD、CMF、MFI、外部指标)
常规和隐藏背离检测
看涨看跌信号配视觉确认
可定制敏感度和过滤选项
背离形成的实时警报
6. 成交量分布与节点分析
全面的成交量分布分析
控制点(POC)识别
价值区域高/低点(VAH/VAL)计算
成交量峰值和低谷检测
基于成交量的支撑阻力水平
7. 聪明钱概念
市场结构分析,包括结构突破(BOS)和结构转变(CHoCH)
内部和摆动结构检测
等高等低识别
公允价值缺口(FVG)检测和可视化
流动性区域和机构资金流分析
8. 交易时区
9个主要交易时段(亚洲、悉尼、东京、上海、香港、欧洲、伦敦、纽约、纽交所)
实时时段状态和倒计时器
时段成交量和表现跟踪
可定制时段框和标签
统计时段分析表格
主要特性:
模块化设计:可独立启用/禁用任何组件
实时分析:随市场数据实时更新
多时间框架支持:适用于所有图表时间框架
可定制警报:为任何检测到的模式或信号设置警报
专业可视化:清洁、有序的显示界面,颜色可定制
性能优化:高效代码确保图表流畅运行
使用场景:
趋势分析:使用多重EMA系统识别市场方向
入场/出场点:利用背离和结构突破进行时机选择
风险管理:利用成交量分布和时段分析进行更好定位
多时间框架分析:在不同时间框架间确认信号
机构分析:跟踪聪明钱流向和市场结构
适用于:
寻求全面市场分析的日内交易者
需要多时间框架确认的摆动交易者
需要详细市场结构洞察的专业分析师
寻求系统化信号生成的算法交易者
Tesla 3-6-9 Indicator (NY) – Free OnlyOverview
The Tesla 3-6-9 indicator detects key numeric patterns based on hour + minute or minute-only digit sums in New York time, highlighting the results directly on your chart with:
Colored candlesticks
🔺 Hour+Minute signals
🔻 Minute-only signals
Vertical line at minute 45
Daily Tesla statistics table (Paid Version)
This indicator is perfect for traders who want visual guidance for Tesla 3-6-9 patterns without manual calculations.
Features
Feature Free Version Paid Version
Minute-only Tesla signals 🔻 ✅ ✅
Hour+Minute Tesla signals 🔺 ❌ ✅
Candlestick coloring ✅ ✅ (customizable colors)
Vertical line at minute 45. ❌ ✅
Sound alerts ✅ ✅
Daily statistics table ❌ ✅
Symbol size & color customization. ✅ ✅
Ignore zero digits option ✅ ✅
How It Works
Minute-only sum: Adds digits of the current minute and reduces to 3, 6, or 9.
Hour + Minute sum: Adds digits of hour + minute, reduces to 3, 6, or 9.
Candle colors: Automatically changes color when Tesla patterns are detected.
Signals: 🔺 and 🔻 symbols appear above or below candles.
Vertical line: Marks minute 45 (Paid Version).
Daily stats table: Tracks Tesla signals per day (Paid Version).
Customizable Settings
Setting Description
Show 🔺 Hour+Minute Symbols Toggle visibility of Hour+Minute signals
Show 🔻 Minute-only Symbols Toggle visibility of Minute-only signals
Symbol Size Adjust size of 🔺 and 🔻 symbols
Candlestick Colors Customize bullish and bearish candle colors
Tesla Colors Set custom colors for Hour+Minute and Minute-only candles
Enable Sound Alerts Enable/disable sound alerts
Show Vertical Line at Minute 45 Toggle vertical line visibility
Line Color & Width Customize line appearance
Hour+Minute priority Determines if Hour+Minute signals override Minute-only visually
Installation
Open TradingView
Click Indicators → Invite-Only Scripts
Search for Tesla 3-6-9 Indicator (NY)
Add it to your chart and configure settings
Subscription & Pricing Suggestions
Free Version: Access to minute-only signals 🔻 as a teaser
Paid Version: Full feature set (🔺 signals, vertical line, daily stats)
Monthly Subscription: $10/month
Offer trial period to attract new users
Usage Tips
Best used on 1-minute or 5-minute charts
Works with any market symbol
Track patterns visually without manual calculation
Use the daily statistics table to analyze Tesla signal frequency
Уровни SL/TP и значение ATR первого часаSession Range SL/TP Levels with Advanced ATR
Overview
The Session Range SL/TP Levels indicator is a comprehensive tool designed for session-based trading strategies, particularly for breakouts. It identifies the high and low of a user-defined time range (e.g., the Asian session) and uses a sophisticated, customizable Average True Range (ATR) calculation to project key Stop Loss (SL) and Take Profit (TP) levels.
This indicator helps traders visualize potential entry and exit points based on the volatility of a specific trading session, with all crucial data presented in a clean on-screen table.
Key Features
Customizable Trading Session: Define any time range to establish your core trading zone. The indicator will automatically find the high and low of this period.
Advanced ATR Calculation: The indicator uses an ATR calculated on a 5-minute timeframe for higher precision. You can customize:
The ATR length and smoothing method (RMA, SMA, EMA, WMA).
A unique percentage reduction from the ATR to create a more conservative volatility buffer.
Volatility-Based SL/TP Levels: Automatically calculates and plots multiple SL and TP levels for both long and short scenarios based on user-defined multipliers of the modified ATR.
Comprehensive On-Screen Display: A detailed on-screen table provides all critical data at a glance, including:
The original 5-min ATR value.
The modified ATR after the percentage reduction.
Three custom ATR-multiple values for quick reference.
All calculated SL and TP price levels for both Long and Short setups.
Copy-Friendly Data Logging: With a single click in the settings, you can print all calculated values into the Pine Logs panel, allowing for easy copying and pasting into other applications or trading journals.
How to Use
Define Your Session: In the settings, enter the time for the trading session you want to analyze (e.g., "0200-0300" for a part of the Asian session).
Identify the Range: The indicator will draw the high and low of this session once the time period is complete.
Plan Your Trade: The calculated levels provide potential targets for breakout trades.
For a Long Trade: If the price breaks above the session high, the green Take Profit lines (TP1, TP2, TP3) serve as potential exit points, while the Stop Loss (Long) level serves as a volatility-based stop.
For a Short Trade: If the price breaks below the session low, the red Take Profit lines serve as potential targets, with the Stop Loss (Short) level as the corresponding stop.
Reference the Table: Use the on-screen table to see the exact price levels and ATR values without needing to hover over the lines.
Tesla 3-6-9 Highlight (NY) 45-15 + Vertical Line- proTesla 3-6-9 Pro/Free Demo (NY) – User Guide
Overview
This indicator is designed to detect the Tesla 3-6-9 numeric patterns based on hour + minute or minute-only sums in New York time. It helps traders visually spot key moments on the chart with colored candles, symbols, vertical lines, and daily statistics.
Free Version: Shows minute-only signals 🔻.
Paid Version: Adds Hour+Minute signals 🔺, vertical line at minute 45, daily stats table, and customizable visuals.
Features
Tesla 3-6-9 Calculations
Hour + Minute: Calculates sum of digits of current hour + minute, reduces to 3, 6, or 9.
Minute-only: Calculates sum of digits of current minute only.
Candlestick Coloring
Up/Down candles are colored by default (green/bearish black).
Tesla patterns change the candle color (customizable).
Option to prioritize Hour+Minute over Minute-only.
Symbols
🔺 Hour+Minute Tesla signal.
🔻 Minute-only Tesla signal.
Can enable/disable independently.
Vertical Line
Appears at minute 45 for Paid Version.
Customizable color, width, and transparency.
Alerts
Optional sound alerts for both signal types.
Daily Statistics
Table showing number of Tesla signals per type for the day (Paid Version).
Settings Explained
Setting Description
Ignore zero digits when summing Whether 0 is ignored in digit sums.
Bullish Candle Color Color for up candles (default green).
Bearish Candle Color Color for down candles (default black).
Tesla Color (Hour+Minute) Candle color when Hour+Minute Tesla pattern is active.
Tesla Color (Minute-only) Candle color when Minute-only Tesla pattern is active.
Show 🔺 Hour+Minute Symbols Toggle visibility of 🔺 symbols.
Show 🔻 Minute-only Symbols Toggle visibility of 🔻 symbols.
Symbol Size Adjusts the size of the symbols.
Enable Sound Alerts Plays sound alerts when Tesla patterns occur.
Show Vertical Line at Minute 45 Toggle visibility of vertical line at 45th minute.
Vertical Line Color Color of the vertical line.
Vertical Line Transparency 0–255 transparency level for vertical line.
Vertical Line Width Width of the vertical line.
Hour+Minute priority over Minute-only Determines if Hour+Minute signals override Minute-only signals visually.
Paid Version Features Enabled Enables all Paid Version features (table, vertical line, Hour+Minute signals).
How to Use
Add the script to your TradingView chart.
Set Paid Version Features Enabled to true if you have access to the full version.
Customize colors, symbols, and alerts to your preference.
Watch for:
🔺 Hour+Minute signals
🔻 Minute-only signals
Candlestick color changes
Vertical line at minute 45
Daily Tesla statistics table (Paid Version)
Monetization Tips
If you plan to sell or share the Paid Version:
Publish on TradingView: Paid version requires publishing as a protected indicator.
Subscription Model: Offer monthly access to Paid Version.
Free Version as Teaser: Let users try minute-only signals for free.
Marketing: Highlight unique features:
Accurate Tesla 3-6-9 pattern detection
Customizable visuals and alerts
Daily statistics table
Vertical line for key minutes
Features
Feature Free Version Paid Version
Minute-only Tesla signals 🔻 ✅ ✅
Hour+Minute Tesla signals 🔺 ❌ ✅
Candlestick coloring ✅ ✅ (customizable colors)
Vertical line at minute 45 ❌ ✅
Sound alerts ✅ ✅
Daily statistics table ❌ ✅
Symbol size & color customization ✅ ✅
Ignore zero digits option ✅ ✅
Installation
Open TradingView
Click Indicators → Invite-Only Scripts
Search for Tesla 3-6-9 Indicator (NY)
Add it to your chart and configure settings
Subscription & Pricing Suggestions
Free Version: Access to minute-only signals 🔻 as a teaser
Paid Version: Full feature set (🔺 signals, vertical line, daily stats)
Monthly Subscription: $10/month
Offer trial period to attract new users
Usage Tips
Best used on 1-minute or 5-minute charts
Works with any market symbol
Track patterns visually without manual calculation
Use the daily statistics table to analyze Tesla signal frequency
RSI MOVWe can consider the 200 RSI and 200 m/s crossovers as reaction movements.
The periods I use are:
5-minute and 15-minute for short trades
1-hour and 4-hour for swing trades
Trades that can be taken with the intersection and breakout of the red moving average with the green moving average
ATR Regime Study [CHE] ATR Regime Study — ATR percentile regimes with clear bands, table and live label
Summary
This study classifies volatility into five regimes by converting ATR into a percentile rank over a rolling window, plotted on a standardized scale between zero and one hundred. Colored bands mark regime thresholds, while a compact table and an optional label report the current percentile and regime. The standardized scale makes symbols and timeframes easier to compare than raw ATR values. Implemented in Pine v6 as a separate pane (overlay set to false), it is a context tool to adapt tactics and risk handling to the prevailing volatility environment.
Motivation: Why this design?
Raw ATR varies with price scale and asset characteristics, which makes regime comparison inconsistent and leads to poor transfer of settings across symbols and timeframes. The core idea is to transform ATR into a percentile rank within a user-defined lookback, then map it into discrete regimes. This yields a stable, interpretable context signal that shifts slower than raw ATR while still responding to genuine volatility changes.
What’s different vs. standard approaches?
Reference baseline: Traditional ATR plots or ATR bands using fixed multipliers.
Architecture differences:
Percentile ranking of ATR within a rolling window.
Five discrete regimes with fixed thresholds at ninety, seventy, thirty, and ten.
Visual fills between thresholds plus a live table and a last-bar label.
Practical effect: You read a single normalized line between zero and one hundred with consistent thresholds. This improves cross-asset comparison and makes regime shifts obvious at a glance.
How it works (technical)
The script computes ATR over a configurable length, then converts that series to a percentile rank over a configurable number of bars. The percentile is naturally scaled and limited between zero and one hundred. That value is mapped to one of five regimes: above ninety (Extreme), between seventy and ninety (Elevated), between thirty and seventy (Normal), between ten and thirty (Calm), and below ten (Squeeze). Horizontal guide lines mark the thresholds, and fills shade the regions. A table is created once and updated on each bar to show regime definitions and highlight the current row. An optional label on the last bar displays the current percentile and regime. No higher-timeframe requests are used, so repaint risk is limited to normal live-bar fluctuation until the bar closes.
Parameter Guide
ATR length — Effect: Controls how fast ATR reacts to new ranges. Default: fourteen. Trade-offs/Tips: Increase to reduce noise in choppy markets; decrease to react faster during regime changes.
Percentile window (bars) — Effect: Number of bars used for the percentile ranking. Default: two hundred fifty-two. Trade-offs/Tips: Larger windows stabilize the percentile but slow adaptation after structural regime shifts; smaller windows adapt faster but may flip more often.
Table › Show — Effect: Toggles the regime overview table. Default: enabled. Trade-offs/Tips: Disable on constrained layouts to reduce visual clutter.
Table › Position — Effect: Anchors the table in a chart corner. Default: Top Right. Trade-offs/Tips: Choose a corner that avoids overlapping other panels or drawings.
Label › Show — Effect: Toggles a last-bar label with current percentile and regime. Default: enabled. Trade-offs/Tips: Useful for quick reads; disable if it obscures other annotations.
Reading & Interpretation
The white line shows ATR percentile between zero and one hundred. Crossing above seventy signals an elevated volatility environment; above ninety indicates event-driven extremes. Between thirty and seventy represents typical conditions. Between ten and thirty indicates calm conditions that often suit mean reversion. Below ten reflects compression, where breakout probability often increases. The colored bands visually reinforce these ranges. The table summarizes regime definitions and highlights the current state. The last-bar label mirrors the current percentile and regime for quick inspection.
Practical Workflows & Combinations
Trend following: Prefer continuation tactics when the percentile holds in the Normal or Elevated bands and structure confirms higher highs and higher lows. Consider wider stops and partial position sizing as percentile rises.
Mean reversion: Favor fades in Calm regimes within defined ranges; use structure filters and time-of-day constraints to avoid low-liquidity whipsaws.
Breakout preparation: Track compressions below ten; plan entries only with structure confirmation and risk caps, since compressions can persist.
Multi-asset/Multi-TF: Defaults travel well on daily charts. For intraday, reduce the percentile window to align with session dynamics. Combine with trend or market structure tools for confirmation.
Behavior, Constraints & Performance
Repaint/confirmation: The percentile updates during live bars and stabilizes on close; closed bars do not repaint.
security/HTF: Not used. If you add higher-timeframe aggregation externally, account for standard repaint caveats.
Resources: Declared maximum bars back is two thousand; limits for lines and labels are five hundred each. A short loop updates the table rows; arrays are used for table content only.
Known limits: Regime boundaries are fixed; assets with persistent volatility shifts may require window retuning. Low-liquidity periods and gaps can produce abrupt percentile changes. ATR is direction-agnostic and should be paired with trend or structure context.
Sensible Defaults & Quick Tuning
Start with ATR length fourteen and percentile window two hundred fifty-two on daily charts.
Too many flips: Increase ATR length or increase the percentile window.
Too sluggish: Decrease the percentile window or reduce ATR length.
Intraday noise: Keep ATR length moderate and reduce the window to a session-appropriate size; optionally hide the label to declutter.
Compressed markets: Maintain defaults but rely more on structure and volume filters before acting.
What this indicator is—and isn’t
This is a volatility regime context layer that standardizes ATR into interpretable regimes. It is not a complete trading system, not predictive, and not a stand-alone entry signal. Use it alongside structure analysis, confirmation tools, and disciplined risk management.
Disclaimer
The content provided, including all code and materials, is strictly for educational and informational purposes only. It is not intended as, and should not be interpreted as, financial advice, a recommendation to buy or sell any financial instrument, or an offer of any financial product or service. All strategies, tools, and examples discussed are provided for illustrative purposes to demonstrate coding techniques and the functionality of Pine Script within a trading context.
Any results from strategies or tools provided are hypothetical, and past performance is not indicative of future results. Trading and investing involve high risk, including the potential loss of principal, and may not be suitable for all individuals. Before making any trading decisions, please consult with a qualified financial professional to understand the risks involved.
By using this script, you acknowledge and agree that any trading decisions are made solely at your discretion and risk.
Best regards and happy trading
Chervolino
ICT Cycle Boxes - MTFICT Cycle Boxes – Pro Strategy (3×MTF)
A multi-timeframe, confluence-driven strategy designed to capture impulsive moves, controlled pullbacks, and regime shifts. It evaluates three timeframes at once:
TF-A (Higher): establishes the broader regime.
TF-B (Mid): confirms trend context and momentum.
TF-C (Trade TF): times the entry.
Two entry tiers are used:
Very-Good Entries: all conditions align in the direction of the higher-timeframe regime, with fresh confirmation on the trade timeframe.
Medium Entries: directionally aligned but with lighter confirmation, for additional opportunities during established trends.
Risk is managed with ATR-based stops/targets on the trade timeframe, an optional trailing stop, position sizing by percent of equity, a cooldown after flat, and optional early exit when the trade timeframe returns to a neutral regime. Session filtering and flip-on-opposite are available for refined execution.
How to use
Set TF-A/TF-B/TF-C to suit your market (e.g., W/D/60, D/240/30).
Adjust risk parameters (stop/target, trailing, position size).
Enable session filtering if desired.
Review results in the Strategy Tester and fine-tune to your market and instrument.
Jasons Bullish Reversal DetectorThis bullish reversal detector is designed to spot higher-quality turning points instead of shallow bounces. At its core, it looks for candles closing above the 20-period SMA, a MACD bullish crossover, and RSI strength above 50. On top of that, it layers in “depth” filters: price must reclaim and retest a long-term baseline (like the 200-period VWMA), momentum should confirm with RSI and +DI leading, short-term EMAs need to slope upward, and conditions like overheated ATR or strong downside ADX will block false signals. When all of these align, the script flags a depth-confirmed bullish reversal, aiming to highlight spots where structure, momentum, and volatility all support a sustainable shift upward.
Session Top Bars — Equities Sessions (Asia / London / US) — MelbA minimal, non-obstructive session overlay that draws thin top bars for the Asia, London, and US equity sessions on any chart and timeframe. Designed to stay out of the way while giving instant session context—perfect for crypto, indices, futures, and stocks.
Default sessions (AEDT / Australia-Melbourne):
Asia: 10:00 → 17:45
London: 18:00 → 23:30
US: 23:00 → 07:00
(Weekends on by default for crypto; turn off for equities.)
Why it’s different
Top-only bands (no heavy background shading) so price action stays readable.
Asset-agnostic: works on any symbol/candlestick.
Adaptive top placement: hugs the top of the visible price area without distorting autoscale.
Session labels appear once at each session start, right on the strip (optional).
Inputs
Timezone: choose your clock (default Australia/Melbourne).
Show weekends: on for crypto, off for stocks.
Intraday-only: hide the overlay on 1D+ if you prefer.
Session windows: edit HHMM-HHMM for Asia / UK / US.
Colors & thickness: tweak gap from top, band thickness, and label size.
Tips
If the strip feels a touch low/high on your layout, nudge Gap below chart top or Band thickness.
To reduce small shifts when new extremes print, increase Recent range length (bars).
Use cases
Quickly spot which session drove a move.
Align entries/exits to cash session volatility (e.g., NYSE open).
Compare behavior across assets with a unified session view.
Notes
Times reflect equity session focus in AEDT by default; adjust to your needs.
For FX-style windows, just edit the session inputs.
Credits
Built from community feedback for a clean, professional session overlay.
Smartalgo gn1Smart Algo gives you clear entry & exit signals using advanced price action logic. Built for traders who want consistency and speed.
Smart Algogn2 [ChartPrime]Smart Algo gives you clear entry & exit signals using advanced price action logic. Built for traders who want consistency and speed.
> The B symbols are the entry points
> Previous swing high/low is the SL
> Keep 1:2 OR 1:1.5 Risk-Reward
secret strategy [Smartalgo ]Smart Algo gives you clear entry & exit signals using advanced price action logic. Built for traders who want consistency and speed.
> The B symbols are the entry points
> Previous swing high/low is the SL
> Keep 1:2 OR 1:1.5 Risk-Reward
secret strategy [Smartalgo ]Tired of false breakouts and random indicators?
Smart Algo gives you clear entry & exit signals using advanced price action logic. Built for traders who want consistency and speed.
> The B symbols are the entry points
> Previous swing high/low is the SL
> Keep 1:2 OR 1:1.5 Risk-Reward
SwingArm High Pressure V6.7.3SwingArm High Pressure V6.7.3 - User Guide
Overview
SwingArm High Pressure is a multi-timeframe trading indicator designed to identify high-probability entry zones and profit targets. This indicator works best when combined with the standard SwingArm indicator to display 8-hour and higher timeframes for complete market analysis.
Key Features
1. Multi-Timeframe Analysis
Chart Timeframe (CT): Your primary entry timeframe
Higher Timeframe 1 (HTF1): Secondary confirmation and targets
Higher Timeframe 2 (HTF2): Extended swing targets
2. Trading Type Selection
Choose between two preset configurations:
CT/15m/1H: For day trading and scalping
CT/2H/4H: For swing trading (recommended to pair with standard SwingArm for 8H+ timeframes)
3. Entry Zones
Optimal Entry Boxes (High-Pressure Zones)
BLUE boxes: Bullish optimal entry zones (high-pressure buying opportunity)
YELLOW boxes: Bearish optimal entry zones (high-pressure selling opportunity)
These represent the highest probability entries when price reaches these levels
Fresh SwingArm Zones
GREEN zones: Freshly created bullish swingarm areas
RED zones: Freshly created bearish swingarm areas
Deeper entries into zones (78.6%-88.6%) provide better risk/reward ratios
4. Fibonacci Levels
Each swingarm zone contains three Fibonacci retracement levels:
Fib. 61.8%: Early entry (consider waiting for deeper levels)
Fib. 78.6%: Good entry opportunity
Fib. 88.6%: Deep entry with excellent risk/reward
5. Zone Labels
The indicator automatically labels zones based on their function:
Internal Zones (shorter timeframes):
Display as "INTERNAL - Buy/Sell Zones"
May cycle multiple times before reaching targets
Best for scalping and quick trades
External Zones (higher timeframes):
Display as "EXTERNAL TARGET - Take Profit"
Primary profit-taking areas
Use for swing trade exits
Trading Strategy
Entry Setup
Wait for fresh zone creation (green/red zones appear)
Identify optimal entry boxes (blue/yellow high-pressure areas)
Enter at Fibonacci levels:
Best entries: 78.6%-88.6% (deeper is better)
Acceptable: 61.8% (but watch for deeper retracements)
Trade Management
Stop Loss: Place below swingarm low (long) or above swingarm high (short)
Targets: Use higher timeframe zones for profit objectives
Internal vs External: Internal zones may flip multiple times; external zones are swing targets
Timeframe Hierarchy
Lower timeframe zones = Entry areas
Higher timeframe zones = Target/profit areas
Example: Enter at 15M zones, target 2H/4H zones for exits
Alert System
Available Alerts
Fresh SwingArm Zone Alerts: Notifies when new green/red zones are created
Fib. 88.6% Break Alerts: Deepest entry level touched
Fib. 78.6% Break Alerts: Good entry level touched
Fib. 61.8% Break Alerts: Early entry level touched
Pressure ON / Optimal Alerts: High-pressure zones activated
Circle Alerts: Pressure signal confirmations
Probability Alerts: Set threshold for long/short probability notifications
Alert Messages Include:
Entry quality rating (DEEPEST, DEEP, GOOD, EARLY)
Current price level
Risk/reward guidance
Target zone information
Probability System
The indicator calculates buying and selling pressure across multiple timeframes:
Long Probability: Bullish pressure percentage
Short Probability: Bearish pressure percentage
Set custom thresholds (default 50%) to receive alerts only when probability exceeds your criteria
Customization Options
Visual Settings
RSI Candle Colors: Enable/disable and customize overbought (blue) and oversold (red) candle colors
Label Display: Toggle individual Fibonacci level labels (61.8%, 78.6%, 88.6%)
Label Colors: Customize colors for long and short labels
Label Size: Adjust label size (Tiny to Huge)
Swingarm Pressure Labels: Show/hide zone break labels
Table Display
Probability Status Table: Shows current pressure analysis
Swingarm Status: Displays current swingarm states across timeframes
Position & Size: Customize table location and text size
Statistics Table
Break Statistics: Track swingarm breaks over time
Performance Metrics: View historical break data per timeframe
Best Practices
Combine with Standard SwingArm: Use the regular SwingArm indicator to display 8-hour and higher timeframes for complete market structure
Respect Timeframe Hierarchy: Always enter on lower timeframes and target higher timeframes
Wait for Deep Entries: The 78.6% and 88.6% levels offer the best risk/reward ratios
Watch Internal Cycles: Shorter timeframe zones may reverse multiple times - don't expect straight-line moves to targets
Use Optimal Entry Boxes: Blue and yellow high-pressure zones provide the highest probability setups
Confirm with Multiple Timeframes: Look for alignment across all three selected timeframes for strongest signals
Notes
This indicator is optimized for 1m, 15m, 1H, 2H, and 4H timeframes
For best results, use in conjunction with proper risk management
Entry opportunities include both optimal entry boxes AND fresh swingarm zones
Deeper zone entries consistently provide better risk/reward ratios
Support
For questions or assistance, refer to the indicator settings tooltips or contact the developer through x.
Disclaimer:
This indicator is for educational purposes. Always practice proper risk management and never risk more than you can afford to lose.
secret strategy [Smartalgogn2 ]Tired of false breakouts and random indicators?
Smart Algo gives you clear entry & exit signals using advanced price action logic. Built for traders who want consistency and speed.
> The B symbols are the entry points
> Previous swing high/low is the SL
> Keep 1:2 OR 1:1.5 Risk-Reward
secret strategy [Smartalgogn2 ]Smart Algo gives you clear entry & exit signals using advanced price action logic. Built for traders who want consistency and speed.
4 Stages of StockThis script uses 40Weekly MA to baseline larges trends in the stock. This is based on Puru's idea of 4 Stage of Stock.
Stage 1 (Basing)
Stage 2 (Advancing)
Stage 3 (Topping)
Stage 4 (Declining)
This is best viewed and understood on weekly charts.
Micro Time Windows by Bryan RamirezRed = ICT xx:50 - xx:10 macro
Blue = xx:20 - xx:40 macro
Green = Bryan Ramirez Outliers
Tuesday, August 29, 2023, is when I figured out why xx:20 - xx:40, xx:11 - xx:19, and
xx:41 - xx:49 are agorithmic time windows. These time windows are called cron jobs, which command the algorithm to do a specific task, like go to liquidity or inefficiency, based on time.
On my Discord, I'll share more on how it was that I figured that out, but the first clue God gave me was ICT's comment, " The first 10 minutes of the hour and last 10 minutes of the hour are a macro."