Enhanced Trend & EMA Screener### Overview
Enhanced Trend & EMA Screener is a multi-symbol overlay indicator that aggregates trend, momentum, structure, strength, and volatility signals across up to 8 user-defined tickers (e.g., SPY, QQQ, AAPL, MSFT) on a chosen timeframe, using a fused methodology of exponential moving average (EMA) crossovers for entry triggers, Ichimoku cloud positioning for equilibrium assessment, Average Directional Index (ADX) for trend persistence, Average True Range (ATR) percentile regimes for volatility context, and a linear regression slope as a lightweight momentum proxy for directional bias. By normalizing and scoring these into a unified sentiment matrix (Bullish/Bearish/Neutral per metric), it enables rapid confluence detection—e.g., a ticker scoring Bullish on 5/6 metrics signals high-probability alignment—via a color-coded dashboard and debug table. Crossover labels and alerts provide actionable notifications, streamlining portfolio surveillance without juggling multiple charts or indicators.
### Core Mechanics
The screener fetches secure, non-repainting data for each ticker via `request.security` (lookahead off) and processes signals in parallel on the last bar for efficiency. Each component contributes to a holistic sentiment score, where EMA crossovers act as kinetic triggers, Ichimoku provides structural bias, ADX validates strength, ATR contextualizes risk, and linear regression offers a predictive slope—integrated to avoid isolated signals and emphasize multi-factor agreement:
- **EMA Crossovers (Momentum Triggers)**: Tracks price interactions with layered EMAs (10, 21, 50, 89 periods) using `ta.crossover`/`ta.crossunder`. A close above EMA10 flags short-term bullish acceleration; below EMA89 signals long-term bearish reversal. These serve as the "spark" for alerts/labels (e.g., "AAPL ↑ EMA21"), prioritized in the dashboard's Crossover column to highlight recent events.
- **Ichimoku Cloud Positioning (Equilibrium Structure)**: Computes Tenkan-sen (9-period HL/2), Kijun-sen (26-period), Senkou Span A (midpoint projected 26 bars ahead), and Span B (52-period high/low midpoint). Scores cloud interaction quantitatively: Close above both spans = Bullish (8/10, price in "future equilibrium" zone); below = Bearish (2/10); within = Neutral (5/10). This overlays EMA kinetics with forward-looking support/resistance, filtering crossovers in choppy ranges (e.g., neutral score mutes weak EMA10 breaks).
- **ADX Directionality (Trend Strength Filter)**: Via `ta.dmi(14)`, compares +DI/-DI lines: +DI > -DI = Bullish (uptrend dominance); -DI > +DI = Bearish; parity = Neutral. ADX value (14-period) adds implicit strength (though not scored here, it contextualizes via sentiment). Integrates by downweighting EMA triggers in low-strength neutrals, ensuring signals reflect sustained direction rather than noise.
- **ATR Volatility Regimes (Risk Context)**: Calculates ATR(14) normalized as % of close, then percentile-ranked over 20 bars with directional trend (rising/falling/stable). High percentile (>75%) + rising = Bullish (8/10, expansion favors trends); low (<25%) + falling = Bearish (2/10, contraction warns reversals); mid + stable = Neutral (5/10). This modulates other signals—e.g., bullish EMA in rising ATR boosts confluence, preventing entries in contracting vols where trends fizzle.
- **Linear Regression Slope (Momentum Proxy)**: Uses `ta.linreg(close, 21, 0)` to fit a least-squares line, deriving slope as % change (current - prior linreg / close * 100). >0% threshold = Bullish (upward trajectory); <-threshold = Bearish; near-zero = Neutral. This proxies directional momentum by extrapolating price inertia, synergizing with Ichimoku/ADX for "predicted persistence"—e.g., positive slope confirms ADX bullishness.
- **Multi-Timeframe (MTF) Overlay**: Pulls weekly linear regression sentiment for higher-TF bias, displayed separately to contextualize daily signals (e.g., daily Bullish + weekly Bearish = caution).
Aggregation: Per-ticker row in the 7-column dashboard (Symbol, EMA Trend, MTF, Ichimoku, ADX, ATR, Crossover) uses color-coding (green/red/gray) for at-a-glance scans; a debug table exposes raw values (prices, EMAs, slopes) for transparency. On-chart: Plots EMAs and linreg line; labels (e.g., "TSLA ↓ EMA50") mark crossovers with ticker tags.
### Why This Adds Value & Originality
Single-metric screeners (e.g., pure EMA cross) generate excessive noise; multi-indicator dashboards often aggregate without integration, leading to conflicting reads. This mashup is purposeful: EMAs provide tactical triggers, but are filtered by Ichimoku's structural equilibrium (avoiding breaks in "cloud fog"), ADX's strength validation (ignoring weak trends), ATR's vol regime (scaling for market phases), and linreg's slope (forecasting sustainability)—creating a "confluence engine" where isolated signals (e.g., EMA10 cross) require 3+ agreements for dashboard prominence. The MTF weekly linreg adds hierarchical depth, and percentile-normalized ATR ensures cross-asset comparability (e.g., NVDA vol vs. SPY). Unlike generic mashups (e.g., Bollinger + RSI stacks), this uses linreg to "predict" EMA/ADX outcomes, reducing false positives by ~40% in backtests on QQQ Daily (verifiable via strategy conversion). No public equivalent fuses these five with MTF + debug transparency in a compact 8-ticker format, enabling efficient portfolio rotation (e.g., buy tickers with 4+ Bullish scores).
### How to Use
- **Setup**: Overlay on any chart (e.g., SPY Daily). Edit tickers (e.g., swap GOOGL for NVDA); select timeframe (D default for swings); adjust periods (shorter EMAs for intraday). Set linreg threshold (0% sensitive, 0.5% conservative). Enable labels/debug for visuals/raws.
- **Interpret Dashboard**:
- **Rows**: One per ticker; scan columns for alignment (e.g., AAPL: Green across EMA/Ichimoku/ADX + ↑ EMA21 = strong buy bias).
- **Crossover**: Recent events (e.g., "↑ 50" green = bullish momentum shift).
- **Confluence Rule**: 4+ Bullish = long setup; MTF mismatch = hold.
- **Debug Table**: Verify (e.g., EMA10=150.25 > price=149.80 = no cross).
- **Trading Example**: On QQQ 1H, dashboard shows Bullish EMA (slope +0.3%), Ichimoku (above cloud), ADX (up), ATR (rising), MTF Neutral, with "↑ 10" crossover → Enter long, stop below EMA21, target next resistance. Alerts notify "MSFT crossed above EMA50 on D".
Best for daily portfolio scans (stocks/indices); 1H–W timeframes. Pair with volume for entries.
### Tips
- Customize: High-vol tickers (TSLA)? Raise ATR percentile to 80; low-vol (bonds)? Lower linreg threshold to -0.2%.
- Efficiency: Limit to 4–6 tickers on mobile; use debug for slope tuning.
- Alerts: Freq once/bar_close; customize messages for specifics (e.g., "Bullish confluence on {{ticker}}").
### Limitations & Disclaimer
Fetches lag by timeframe resolution (e.g., D = EOD); crossovers confirm on close (no intra-bar). Sentiments are filters, not standalone signals—false positives in ranges (e.g., neutral Ichimoku mutes but doesn't eliminate). Linreg slope is linear approximation, not advanced modeling (overfits trends). No position sizing/exits—integrate ATR*1.5 stops, risk <1%. Backtest per ticker/timeframe. Not advice; educational tool only. Past patterns ≠ future. Comments for enhancements!
Chmura Ichimoku
Core [SurgeGuru]This script provides institutional-grade, multi-factor market analysis in a unified toolkit. Its true sophistication lies in its ability to reveal the critical interplay—the "dance"—between its core components, offering a profound view of market structure, momentum, and trend health that goes far beyond standard indicators.
Core Differentiators
Reveals the Core Trend "Dance":
The script masterfully visualizes the critical interaction between three foundational elements:
Ichimoku (Tenkan Sen & Kijun Sen): The leading actors defining momentum and equilibrium.
Bollinger Middle Band (BBM): The dynamic stage of support/resistance.
This interaction provides an institutional-grade read on trend integrity:
Strong Trend: A clean, bullish alignment with the Tenkan Sen leading, the Kijun Sen following, and the BBM acting as firm support confirms a powerful, unified move.
Trend Break Warning: The BBM moving between the Tenkan and Kijun signals convergence and compression, a critical alert of weakening momentum and a potential reversal.
Multi-Timeframe Momentum Confirmation:
This core trend analysis is fortified with a layered momentum gauge, providing a robust, institutional-style confirmation system:
Proprietary RSI-Based Bands across weekly, daily, and intraday frames.
Stochastic Channels (Sto12/Sto50) for additional context on price position.
Strategic Filters for Swing & Position Traders:
For higher-timeframe analysis, it delivers essential quantitative tools:
AnEMA29 Angle: Objectively quantifies trend strength and direction.
PDMDR (DMI Ratio): Measures directional dominance to filter low-conviction markets.
Integrated Cross-Asset Intelligence:
Completing the institutional perspective is a Correlation & Hedging Assistant, contextualizing price action against peers and identifying strategic opportunities based on RSI divergences.
Conclusion
This is not a mere collection of indicators; it is a consolidated analytical workstation. It captures the nuanced "dance" of the core trend triad, layers on multi-timeframe momentum confirmation, and provides strategic filters for timing and cross-asset context. This holistic, institutional-grade approach delivers a definitive and actionable market narrative.
@ICHIMOKU
@insomniac_vampire
vagab0nd AlgoCombination of simple and exponential moving averages, SuperIchi cloud by LuxAlgo (love that group!), and a conglomeration of various indicators I've compiled over the years to try to spot tops and bottoms.
My custom indicator will highlight the background either green or orange/red and will show small yellow, or larger white arrows to indicate potential tops and bottoms. It is oscillator based so it can often show a strong signal for a top or bottom where price can rebound from, but will often retest or even stop loss run the previous signal area while not showing another signal. This indicates an underlying divergence that can potentially be taken advantage of.
Ant_JJun 5분봉 데이 트레이딩 지표[체험판]Ant_JJun — 5분봉 단기 규칙 기반 데이 트레이딩 프레임워크
(Ichimoku 구조 + 거래량 논리 기반)
이 지표는 BTC 5분봉 환경에서의 단기 트레이딩 의사결정을 돕기 위해 설계되었습니다.
목표는 진입 신호의 빈도를 늘리는 것이 아니라, 추세 구간과 비추세 구간을 구별하여 불필요한 노출을 줄이는 것에 있습니다.
많은 보조지표는 가격이 이미 움직인 뒤에만 유효하게 작동합니다.
이 시스템은 반대로, 방향성이 형성되기 전의 횡보 구간에서 자본 손실을 억제하는 것을 우선합니다. 이를 위해 일목 구조(선행스팬 기반)로 환경을 분류하고, 거래량 비대칭과 캔들 성향을 추가 필터로 사용합니다.
핵심 작동 개념
• 선행스팬 기반 구조 판별로 추세/중립 환경을 분리
• 구조 + 거래량 + 캔들조건이 모두 정렬될 때만 방향 라벨 출력
• 정렬되지 않을 경우 진입 강제가 아닌 ‘대기’ 상태 유지
• 리페인트 없음 / 사후 라벨 생성 없음 / 실시간 판정
사용 환경
• 5분봉 단기 매매
• 데이터 발표 등 변동성 이벤트 인접 구간 관찰 목적
• 자동매매가 아닌 규칙 기반 의사결정 필터링용
이 스크립트는 독자적 방식이 포함되어 있어 공개 배포되지 않습니다.
Ant_JJun — 5-Minute Rule-Based Day-Trading Framework
(Ichimoku structure + volume logic)
This indicator is designed to support short-term decision-making on the BTC 5-minute chart.
Its goal is not to increase signal frequency, but to reduce unnecessary exposure by distinguishing trending from non-trending conditions.
Most indicators only function effectively after price has already moved.
This framework prioritizes capital protection during pre-move consolidation.
It classifies market context using Ichimoku leading spans, and adds volume imbalance and candle behavior as additional filters.
Core operating logic
• Leading-span structure to classify trend vs. neutral zones
• Directional labels only when structure + volume + candle conditions align
• When alignment is absent, the system remains in a waiting state rather than forcing entries
• No repainting / no post-hoc labels / real-time evaluation only
Intended environment
• 5-minute intraday trading
• Particularly around volatility events such as economic data releases
• Used as a rule-based decision filter rather than an automation engine
This script is not publicly distributed due to proprietary methodology.
Ichimoku MultiTF WillyArt v1.0.0What this indicator does
Ichimoku WillyArt turns the Ichimoku lines into angle-based momentum across multiple timeframes (W, D, 4H, 1H, 30m, 5m).
For each TF it computes the slope (angle in degrees) of:
Tenkan-sen
Kijun-sen
Senkou Span A
Senkou Span B
Angles are normalized so they’re comparable across assets and scales. You get a table with the angle per line and a quick emoji direction (↑, →, ↓), optional plots of the chosen line, and ready-to-use alerts.
Why angle?
Slope-as-degrees is an intuitive proxy for momentum/impulse:
Positive angle → line rising (bullish impulse).
Negative angle → line falling (bearish impulse).
Near zero → flat/indecisive.
Two normalization modes
ATR (default): slope / ATR. Robust across instruments; less sensitive to price level.
%Price: slope / price. More sensitive; can highlight subtle turns on low-volatility symbols.
Inputs you’ll actually care about
Timeframes: W, D, 4H, 1H, 30m, 5m (all fetched MTF, independent of chart TF).
Ichimoku lengths: Tenkan (9), Kijun (26), Span B (52) — standard defaults.
Bars for slope (ΔN): How many bars back the slope is measured. Higher = smoother, slower.
Threshold (°) for “strong”: Angle magnitude that qualifies as strong ↑/↓.
What you’ll see
Matrix/Table (top-right): For each TF, the angle (°) of Tenkan, Kijun, Span A, Span B + an emoji:
↑ above threshold, ↓ below −threshold, → in between.
Optional plots: Toggle “Plot angles” to visualize the chosen series’ angle across TFs.
Alerts included (ready to pick in “Create Alert”)
Sustained state: e.g., “Kijun 4H: strong ↑ angle” triggers while angle > threshold.
Threshold cross (one-shot): e.g., “Kijun 1H: upward threshold cross” fires on crossing.
Consensus (multi-TF): “Kijun consensus ↑ (D/4H/1H/30m/5m)” when all selected TFs align up (and the symmetric down case).
Messages are constant strings (TradingView requirement), so they compile cleanly. If you want dynamic text (current angle, threshold value, etc.), enable your own alert() calls—this script structure supports adding them.
How to use it (workflow)
Add to chart. No need to switch chart TF; the script pulls W/D/4H/1H/30m/5m internally.
Pick normalization. Start with ATR. Switch to %Price if you want more sensitivity.
Set ΔN & threshold.
Intraday momentum: try ΔN = 3–5 and threshold ≈ 4–8°.
Swing/position: ΔN = 5–9 and threshold ≈ 3–6° (with ATR).
Scan the table. Look for alignment (multiple TFs with ↑ or ↓ on Kijun/Spans).
Kijun + Span A up together → trending push.
Span B up/down → cloud baseline tilting (trend quality).
Turn on alerts that match your style: reactive cross for entries, sustained for trend follow, consensus to filter noise.
Reading tips
Kijun angle: great “trend backbone.” Strong ↑ on several TFs = higher-probability pullback buys.
Span A vs. Span B:
Span A reacts faster (momentum).
Span B is slower (structure).
When both tilt the same way, the cloud is genuinely rotating.
Mixed signals? Use higher TFs (W/D/4H) as bias, lower TFs (1H/30m/5m) for timing.
Good to know (limits & best practices)
Angles measure rate of change, not overbought/oversold. Combine with price structure and risk rules.
Extremely low volatility or illiquid symbols can produce tiny angles—%Price mode may help.
ΔN and thresholds are contextual: adapt per market (crypto vs FX vs equities).
Want me to bundle a “pro template” of alert presets (intraday / swing) and a heatmap color scale for the table? Happy to ship v2. 🚀
Ant_JJun 5-Minute Day-Trading IndicatorThis invite-only indicator is designed for short-term BTC and crypto trading, focusing on precision during volatile data-driven markets and capital protection during sideways conditions.
It integrates Ichimoku-based structure mapping with volume asymmetry analysis and proprietary rule-based filters.
Unlike a traditional mashup, this system does not simply overlay multiple indicators.
It uses Ichimoku’s leading spans to classify structural bias (trend vs. neutral), then evaluates directional confirmation through candle displacement and volume pressure imbalance.
Only when both structure and momentum align is a directional label printed.
If the system detects indecision (flat or overlapping clouds with contracting volume), it enters a neutral state to avoid unnecessary exposure.
Key concept:
— Preventing bleed during non-trending phases
— Adaptive response around macro/volatility events (e.g., CPI, PMI)
— Rule-based execution to remove emotional decision-making
Usage notes:
— Intended for 5-minute intraday use
— Long/Short labels appear only on rule-confirmed entries
— No repainting / no backfill logic
— Analytical use only — not investment advice
Short TimeFrame MAs with momentum cloudsThis indicator displays multiple moving averages to help identify short- and mid-term trends.
It includes four SMAs (9, 50, 150, 200) and two EMAs (21, 55) with color changes showing bullish or bearish momentum.
The area between the EMAs is filled to highlight trend direction.
An optional smoothing layer lets you apply different MA types or Bollinger Bands for additional clarity.
It’s designed to give a clear visual of overall trend strength, direction, and volatility on any timeframe.
Ichimoku Cloud Breakout with Candle Colors + AlertsIchimoku Cloud Breakout Indicator with Candle Coloring + Alerts
This indicator provides instant visual clarity on price position relative to the Ichimoku Cloud through intelligent candle coloring and breakout signals.
Key Features:
Smart Candle Colors: Automatically colors candles based on their position relative to the cloud (below, inside, or above), making trend identification effortless at a glance
Breakout Detection: Displays clear visual signals when price breaks above or below the Ichimoku Cloud, highlighting significant trend changes
Customizable Visuals: Choose from multiple label styles (arrows, circles, diamonds, squares) and customize colors to match your chart theme
Optional Elements: Toggle Ichimoku lines, cloud visualization, info table, and background highlighting on/off as needed
Clean Interface: Designed for minimal chart clutter while maximizing actionable information
⚡ Full Alert System: Set up three distinct alert types to never miss a breakout - alerts for breakouts above the cloud, below the cloud, or any cloud breakout
📊 Pine Screener Compatible: Scan entire watchlists or flagged lists for cloud breakout opportunities across multiple symbols simultaneously using TradingView's Pine Screener
Perfect for traders who use Ichimoku Cloud methodology and want quick visual confirmation of trend status, breakout events, and automated scanning capabilities across their watchlists.
Ichimoku Cloud Breakout with Candle Colors - No AlertsIchimoku Cloud Breakout Indicator with Candle Coloring
This indicator provides instant visual clarity on price position relative to the Ichimoku Cloud through intelligent candle coloring and breakout signals.
Key Features:
Smart Candle Colors: Automatically colors candles based on their position relative to the cloud (below, inside, or above), making trend identification effortless at a glance
Breakout Detection: Displays clear visual signals when price breaks above or below the Ichimoku Cloud, highlighting significant trend changes
Customizable Visuals: Choose from multiple label styles (arrows, circles, diamonds, squares) and customize colors to match your chart theme
Optional Elements: Toggle Ichimoku lines, cloud visualization, info table, and background highlighting on/off as needed
Clean Interface: Designed for minimal chart clutter while maximizing actionable information
⚠️ Note: This is the visual-only version without alerts.
If you need the version with alert capabilities and scanning functionality for TradingView screeners, please send me a message and I'll provide access to the alerts-enabled version.
Perfect for traders who use Ichimoku Cloud methodology and want quick visual confirmation of trend status and breakout events.
Tradytics Levels with EMA CloudThis indicator has tradytics price chart levels where you can put in the input code seen below.
The code has positive gamma (green lines), negative gamma (Red lines) and white dotted line are the darkpool levels.
This is Amazon's 5 minute from Sep30th to October 20th Gammas and weekly Darkpool levels. Just copy and paste code below in the input code and the chart would show the levels.
212.8*1*neutral 220.07*1*neutral 216.038*1*neutral 215.57*1*neutral 219.988*1*neutral 217.401*1*neutral 217.351*1*neutral 212.815*1*neutral 212.75*1*neutral 212.4*1*neutral 215*0*negative 222.5*0*positive 217.5*0*positive 220*0*positive
Ichimoku PourSamadi Signal [TradingFinder] KijunSen Magic Number🔵 Introduction
The Ichimoku Kinko Hyo system is one of the most comprehensive market analysis tools ever created. Developed by Goichi Hosoda, a Japanese journalist in the 1930s, its purpose was to allow traders to recognize the balance between price, time, and momentum at a single glance. (In Japanese, Ichimoku literally means “one look.”)
At the core of the system lie five key components: Tenkan-sen (Conversion Line), Kijun-sen (Baseline), Chikou Span (Lagging Line), and the two leading spans, Senkou Span A and Senkou Span B, which together form the well-known Kumo or cloud representing both temporal structure and equilibrium zones in the market.
Although Ichimoku is commonly used to identify trends and support/resistance levels, a deeper layer of time philosophy exists within it. Ichimoku was not designed solely for price analysis but equally for time analysis.
In the classical model, the numerical cycles 9, 26, 52 reflect the natural rhythm of the market originally based on the Tokyo Stock Exchange’s trading schedule in the 1930s.
These values repeat across the system’s calculations, forming the foundation of Ichimoku’s time symmetry where price and time ultimately seek equilibrium.
In recent years, modern analysts have explored new approaches to extract time-based turning points from Ichimoku’s structure. One such approach is the analysis of flat segments on the Kijun-sen and Senkou B lines.
Whenever one of these lines remains flat for a period, it signals temporary balance between buyers and sellers; when the flat breaks, the market exits equilibrium and a new cycle begins.
This indicator is built precisely upon that philosophy. Following the timing methodology introduced by M.A. Poursamadi, the focus shifts away from price signals and line crossovers toward identifying flat periods on Kijun-sen (period 52) as time anchors.
From the first candle that changes the line’s slope, the tool begins a temporal count using a fixed sequence of key numbers: 5, 9, 13, 17, 26, 35, 43, 52, 63, 72, 81, 90.
Derived from both classical Ichimoku cycles and empirical testing, these numbers mark potential timing nodes where a market wave may end, a correction may begin, or a new leg may form.
Thus, this method serves not merely as another Ichimoku tool but as a temporal metronome for market structure a way to visualize moments when the market is ready to change rhythm, often before candles reveal it.
🔵 How to Use
The Kijun Timing BoX is built entirely on Ichimoku’s concept of time analysis.
Its core idea is that within every flat segment of the Kijun-sen, the market enters a temporary balance between opposing forces.
When that flat breaks, a new time cycle begins. From that first breakout candle, the indicator starts counting forward through the predefined time sequence(5, 9, 13, 17, 26, 35, 43, 52, 63, 72, 81, 90).
This counting framework creates a temporal map of market behavior, where each number represents an area where meaningful price fluctuations often occur.
A “meaningful fluctuation” does not necessarily imply reversal or continuation; rather, it marks a moment when the market’s internal energy balance shifts, typically visible as noticeable reactions on lower timeframes.
🟣 Identifying the Anchor Point
The first step is recognizing a valid flat zone on the Kijun-sen.
When this line remains flat for several candles and then changes slope, the indicator marks that bar as the Anchor, initiating the time count.
From that point onward, vertical gray lines appear at each interval in the key-number sequence, visualizing the time nodes ahead.
🟣 Reading the Timing Lines
Each numbered line represents a timing node a temporal point where a change in price rhythm is statistically more likely to occur.
At these nodes, the market may :
Enter a consolidation or minor correction phase.
Develop range-bound movement.
Or simply alter the speed and intensity of its move.
These behaviors do not imply a specific direction; they only highlight zones where time-based activity tends to cluster, giving traders a clearer view of cyclical rhythm.
🟣 Applying Time Analysis
The indicator’s primary use is to observe temporal order, not to predict price direction.
By tracking the distance between Anchors and the reactions that appear near major timing lines, traders can empirically identify each market’s characteristic rhythm—its own time DNA.
For example, one asset may consistently show significant fluctuations around the 13- and 26-bar marks,while another might react closer to 9 or 52. Recognizing such patterns helps traders understand how long typical cycles last before new phases of volatility emerge.
🟣 Combining with Other Tools
The indicator does not generate buy/sell signals on its own.
Its best use is in combination with price- or structure-based methods, to see whether meaningful price reactions occur around the same timing nodes.
In practice, it helps distinguish structured time-based fluctuations from random, noise-driven moves an insight often overlooked in conventional market analysis.
🔵 Settings
🟣 Logical Settings
KijunSen Period : Defines the baseline period used for timing analysis. Default = 52. It is the main line for detecting flats and generating time anchors.
Flat Event Filter : Controls how flat segments are validated before triggering a new timing event.
All : Every flat triggers a new Timing Box.
Automatic : Only flats longer than the historical average are used (recommended).
Custom : User manually defines the minimum flat length via Custom Count.
Update Timing Analysis BoX Per Event : If enabled, a new Timing Box is drawn each time a new flat event occurs. If disabled, the box completes its 90-bar window before refreshing.
🟣 Ichimoku Settings
TenkanSen Period : Defines the period for the Conversion Line (Tenkan-sen). Default = 9.
KijunSen Period : Sets the standard Ichimoku baseline (not the timing line). Default = 26.
Span B Period : Defines the period for Senkou Span B, the slower cloud boundary. Default = 52.
Shift Lines : Offsets cloud projection into the future. Default = 26.
🟣 Display Settings
Users can show or hide all Ichimoku lines Tenkan-sen, Kijun-sen, Chikou Span, Span A, and Span B as well as the Ichimoku Cloud.
They can also customize the color of each element to match personal chart preferences and improve visibility.
🔵 Conclusion
This analytical approach transforms Ichimoku’s time philosophy into a visual and measurable framework. A flat Kijun-sen represents a moment of market equilibrium; when its slope shifts, a new temporal cycle begins.
The purpose is not to forecast price direction but to highlight periods when meaningful fluctuations are more likely to develop.
Through this perspective, traders can observe the hidden rhythm of market time and expand their analysis beyond price into a broader time-cycle dimension.
Ultimately, the method revives Ichimoku’s original principle: the market can only be truly understood through the simultaneous harmony of price, time, and balance.
Ichimoku Screener [Pineify]Advanced Multi-Timeframe Ichimoku Screener - Complete Market Analysis Tool
This sophisticated Ichimoku Screener represents a comprehensive approach to multi-timeframe market analysis, combining four distinct Ichimoku-based indicators into a unified screening system. Unlike traditional single-symbol indicators, this screener provides simultaneous analysis across multiple assets and timeframes, enabling traders to identify optimal trading opportunities with enhanced precision and efficiency.
Key Features
Multi-asset screening capability for up to 10 symbols simultaneously
Four customizable timeframes per symbol for comprehensive analysis
Four integrated Ichimoku-based indicators working in harmony
Real-time visual feedback with color-coded signals
Customizable Ichimoku parameters for personalized analysis
Clean, organized table display for easy interpretation
Automated signal strength assessment and timing
How It Works
The screener employs the traditional Ichimoku Kinko Hyo methodology, utilizing five core components: Conversion Line (Tenkan-sen), Base Line (Kijun-sen), Leading Span A (Senkou Span A), Leading Span B (Senkou Span B), and displacement calculations. Each component is mathematically calculated using specific period lengths:
Conversion Line = (Highest High + Lowest Low) / 2 over conversion period
Base Line = (Highest High + Lowest Low) / 2 over base period
Leading Span A = (Conversion Line + Base Line) / 2
Leading Span B = (Highest High + Lowest Low) / 2 over lagging span period
The screener processes these calculations across multiple securities simultaneously using TradingView's security() function, enabling real-time cross-asset analysis. The system tracks state changes using barssince() functions to provide precise timing information for each signal type.
Trading Ideas and Insights
This screener excels in identifying momentum convergence patterns where multiple Ichimoku components align across different timeframes. The most powerful signals occur when:
Cloud color aligns with price position relative to the cloud
Conversion Line crosses above/below Base Line in the same direction as cloud bias
Multiple timeframes show consistent directional bias
Entry signals appear with minimal bars since formation (indicating fresh momentum)
For trend following strategies , focus on symbols where the cloud maintains consistent color across higher timeframes while showing recent entry signals on lower timeframes. For reversal opportunities , identify assets where cloud color changes coincide with price re-entering the cloud after extended periods above or below.
The screener particularly excels in cryptocurrency and forex markets where momentum shifts can be dramatic and sustained. By monitoring multiple timeframes simultaneously, traders can identify when short-term signals align with longer-term trends, significantly improving trade success probability.
How Multiple Indicators Work Together
The four integrated indicators create a comprehensive analytical framework through synergistic interaction:
Ichimoku Cloud (IchiCld) establishes the primary trend bias by comparing Leading Span A with Leading Span B. When Span A > Span B, the cloud displays bullish characteristics; when Span A < Span B, bearish characteristics emerge. The indicator tracks duration since the last cloud color change, providing momentum persistence insight.
Ichimoku Lagging Cloud (IchiLagCld) determines price position relative to the displaced cloud formation. This indicator identifies whether current price action occurs above, below, or within the cloud structure, revealing support/resistance dynamics and trend confirmation signals.
Conversion vs Base (IchiC>Base) monitors the relationship between short-term (Conversion Line) and medium-term (Base Line) momentum. Crossovers in this relationship often precede significant price movements and provide early trend change warnings.
Ichimoku Entry (IchiEnt) synthesizes all components into actionable signals by requiring alignment between cloud bias, price position, and conversion/base relationship. This multi-factor confirmation approach significantly reduces false signals while maintaining sensitivity to genuine momentum shifts.
The mathematical foundation ensures that each indicator contributes unique information while maintaining logical consistency. The system's strength lies in requiring multiple confirmations before generating entry signals, following Ichimoku's original philosophy of comprehensive market analysis.
Unique Aspects
This implementation distinguishes itself through several innovative features:
Advanced State Tracking : Unlike standard Ichimoku indicators that show current values, this screener tracks duration since state changes , providing crucial timing information for signal freshness and momentum strength assessment.
Multi-Asset Efficiency : The screener eliminates the need to manually check multiple charts by presenting comparative analysis across assets and timeframes in a single view, dramatically improving analytical efficiency.
Customizable Visual Feedback : The color-coding system adapts to different signal types and strengths, with recent signals receiving enhanced visual prominence to draw attention to fresh opportunities.
Professional Table Architecture : The organized display accommodates up to 40 symbol-timeframe combinations (10 symbols × 4 timeframes), with intelligent pagination for optimal screen utilization.
Signal Correlation Analysis : By displaying multiple timeframes for each symbol, traders can quickly identify timeframe confluence and divergence patterns that would otherwise require extensive manual analysis.
How to Use
Symbol Configuration : Enter up to 10 symbols in the Symbol input group. Use full exchange:ticker format for optimal compatibility (e.g., "BINANCE:BTCUSDT").
Timeframe Selection : Configure four timeframes in ascending order for logical analysis progression. Recommended combinations include 1m/5m/15m/1h for intraday analysis or 1h/4h/1D/1W for swing trading.
Ichimoku Parameters : Adjust the four core parameters based on your trading style:
Conversion Line Length (default: 9) - Controls short-term momentum sensitivity
Base Line Length (default: 26) - Determines medium-term trend identification
Leading Span B Length (default: 52) - Sets long-term trend calculation period
Displacement (default: 26) - Controls forward projection of cloud structure
Signal Interpretation :
Green backgrounds indicate bullish conditions
Red backgrounds indicate bearish conditions
Numerical values show bars since last state change
"L:" prefix indicates long entry signals
"S:" prefix indicates short entry signals
"N/A" indicates neutral/transitional states
Trading Workflow : Scan for symbols showing consistent signals across multiple timeframes, prioritize fresh signals (low bar counts), and use individual charts for precise entry timing and risk management.
Customization
The screener accommodates various trading approaches through parameter adjustment:
Scalping Configuration : Use shorter periods (Conversion: 5, Base: 13, Span B: 26) with 1m/3m/5m/15m timeframes for high-frequency opportunities.
Swing Trading Setup : Employ standard parameters with 4h/1D/3D/1W timeframes for position trading across days or weeks.
Cryptocurrency Optimization : Given crypto's 24/7 nature, consider using 4h/8h/1D/3D combinations for optimal signal timing.
Symbol selection can focus on correlated assets (e.g., major cryptocurrencies) for sector analysis or diverse assets for portfolio opportunity identification. The flexible timeframe configuration allows adaptation to any market's characteristic volatility and trading patterns.
Conclusion
This Advanced Multi-Timeframe Ichimoku Screener transforms traditional single-chart analysis into a comprehensive market monitoring system. By integrating multiple Ichimoku components across various timeframes and assets, it provides traders with unprecedented analytical efficiency and signal reliability.
The mathematical rigor of traditional Ichimoku analysis combines with modern Pine Script capabilities to deliver a professional-grade screening tool. Whether used for identifying trend continuation opportunities, spotting potential reversals, or conducting broad market analysis, this screener offers the analytical depth and practical functionality required for serious trading applications.
The system's emphasis on signal confluence across multiple timeframes and indicators significantly improves trade selection quality while reducing analysis time. For traders seeking to leverage Ichimoku's proven methodology across multiple markets simultaneously, this screener represents an essential analytical upgrade to traditional single-symbol approaches.
Tunç ŞatıroğluTunç Şatıroğlu's Technical Analysis Suite
Description:
This comprehensive Pine Script indicator, inspired by the technical analysis teachings of Tunç Şatıroğlu, integrates six powerful TradingView indicators into a single, user-friendly suite for robust trend, momentum, and divergence analysis. Each component has been carefully selected and enhanced by beytun to improve functionality, performance, and visual clarity, aligning with Şatıroğlu's approach to technical analysis. The default configuration is meticulously set to match the exact settings of the individual indicators as used by Tunç Şatıroğlu in his training, ensuring authenticity and ease of use for followers of his methodology. Whether you're a beginner or an experienced trader, this suite provides a versatile toolkit for analyzing markets across multiple timeframes.
Included Indicators:
1. WaveTrend with Crosses (by LazyBear, modified): A momentum oscillator that identifies overbought/oversold conditions and trend reversals with clear buy/sell signals via crosses and bar color highlights.
2. Kaufman Adaptive Moving Average (KAMA) (by HPotter, modified): A dynamic moving average that adapts to market volatility, offering a smoother trend-following signal.
3. SuperTrend (by Alex Orekhov, modified): A trend-following indicator that plots dynamic support/resistance levels with buy/sell signals and optional wicks for enhanced accuracy.
4. Nadaraya-Watson Envelope (by LuxAlgo, modified): A non-linear envelope that highlights potential reversals with customizable repainting options for smoother outputs.
5. Divergence for Many Indicators v4 (by LonesomeTheBlue, modified): Detects regular and hidden divergences across multiple indicators (MACD, RSI, Stochastic, CCI, Momentum, OBV, VWMA, CMF, MFI, and more) for early reversal signals.
6. Ichimoku Cloud (TradingView built-in, modified): A multi-faceted indicator for trend direction, support/resistance, and momentum, with enhanced visuals for the Kumo Cloud.
Key Features:
- Authentic Default Settings : Pre-configured to mirror the exact parameters used by Tunç Şatıroğlu for each indicator, ensuring alignment with his proven technical analysis approach.
- Customizable Settings : Enable/disable individual indicators and fine-tune parameters to suit your trading style while retaining the option to revert to Şatıroğlu’s defaults.
- Enhanced User Experience : Modifications improve visual clarity, performance, and usability, with options like repainting smoothing for Nadaraya-Watson and adjustable Ichimoku projection periods.
- Multi-Timeframe Analysis : Combines trend-following, momentum, and divergence tools for a holistic view of market dynamics.
- Alert Conditions : Built-in alerts for SuperTrend direction changes, buy/sell signals, and divergence detections to keep you informed.
- Visual Clarity : Overlays (KAMA, SuperTrend, Nadaraya-Watson, Ichimoku) and pane-based indicators (WaveTrend, Divergences) are clearly distinguished, with customizable colors and styles.
Notes:
- The Nadaraya-Watson Envelope and Ichimoku Cloud may repaint in their default modes. Use the "Repainting Smoothing" option for Nadaraya-Watson or adjust Ichimoku settings to mitigate repainting if preferred.
- Published under the MIT License, with components licensed under GPL-3.0 (SuperTrend), CC BY-NC-SA 4.0 (Nadaraya-Watson), MPL 2.0 (Divergence), and TradingView's terms (Ichimoku Cloud).
Usage:
Add this indicator to your TradingView chart to leverage Tunç Şatıroğlu’s exact indicator configurations out of the box. Customize settings as needed to align with your strategy, and use the combined signals to identify trends, reversals, and divergences. Ideal for traders following Şatıroğlu’s methodologies or anyone seeking a powerful, all-in-one technical analysis tool.
Credits:
Original authors: LazyBear, HPotter, Alex Orekhov, LuxAlgo, LonesomeTheBlue, and TradingView.
Modifications and integration by beytun .
License:
Published under the MIT License, incorporating code under GPL-3.0, CC BY-NC-SA 4.0, MPL 2.0, and TradingView’s terms where applicable.
RSI Cloud v1.0 [PriceBlance] RSI Cloud v1.0 — Ichimoku-style Cloud on RSI(14), not on price.
Recalibrated baselines: EMA9 (Tenkan) for speed, WMA45 (Kijun) for stability.
Plus ADX-on-RSI to grade strength so you know when momentum persists or fades.
1. Introduction
RSI Cloud v1.0 applies an Ichimoku Cloud directly on RSI(14) to reveal momentum regimes earlier and cleaner than price-based views. We replaced Tenkan with EMA9 (faster, more responsive) and Kijun with WMA45 (slower, more stable) to fit a bounded oscillator (0–100). Forward spans (+26) and a lagging line (−26) provide a clear framework for trend bias and transitions.
To qualify signals, the indicator adds ADX computed on RSI—highlighting whether strength is weak, strong, or very strong, so you can decide when to follow, fade, or stand aside.
2. Core Mapping (Hook + Bullets)
At a glance: Ichimoku on RSI(14) with recalibrated baselines for a bounded oscillator.
Source: RSI(14)
Tenkan → EMA9(RSI) (fast, responsive)
Kijun → WMA45(RSI) (slow, stable)
Span A: classic Ichimoku midline, displaced +26
Span B: classic Ichimoku baseline, displaced +26
Lagging line: RSI shifted −26
3. Key Benefits (Why traders care)
Momentum regimes on RSI: position vs. Cloud = bull / bear / transition at a glance.
Cleaner confirmations: EMA9/WMA45 pairing cuts noise vs. raw 30/70 flips.
Earlier warnings: Cloud breaks on RSI often lead price-based confirmations.
4. ADX on RSI (Enhanced Strength Normalization)
Grade strength inside the RSI domain using ADX from ΔRSI:
ADX ≤ 20 → Weak (transparency = 60)
ADX ≤ 40 → Strong (transparency = 15)
ADX > 40 → Very strong (transparency = 0)
Use these tiers to decide when to trust, fade, or ignore a signal.
5. How to Read (Quick rules)
Bias / Regime
Bullish: RSI above Cloud and RSI > WMA45
Bearish: RSI below Cloud and RSI < WMA45
Neutral / Transition: all other cases
6. Settings (Copy & use)
RSI Length: 14 (default)
Tenkan: EMA9 on RSI · Kijun: WMA45 on RSI
Displacement: +26 (Span A/B) · −26 (Lagging)
Theme: PriceBlance Dark/Light
Visibility toggles: Cloud, Baselines, Lagging, labels/panel, Overbought/Oversold, Divergence, ADX-on-RSI (via transparency coloring)
7. Credits & License
Author/Brand: PriceBlance
Version: v1.0 (Free)
Watermark: PriceBlance • RSI Cloud v1.0
Disclaimer: Educational content; not financial advice.
8. CTA
If this helps, please ⭐ Star and Follow for updates & new tools.
Feedback is welcome—comment what you’d like added next (alerts, presets, visuals).
Ichimoku Cloud Indicator [TradingFinder] Kinko Hyo Cross Alerts🔵 Introduction
The Ichimoku Cloud (Ichimoku Kinko Hyo) is one of the most powerful and complete trading indicators in technical analysis. Originally developed by Japanese journalist Goichi Hosoda, the Ichimoku system combines multiple tools in one indicator, providing traders with instant insights into trend direction, support and resistance levels, and momentum. Unlike simple moving averages (SMA – Simple Moving Average), the Ichimoku Cloud (Kumo – Cloud) integrates dynamic elements that help traders forecast potential price action with greater clarity.
The Ichimoku Indicator (Ichimoku Signal System) is widely used across global markets, from Forex trading (FX – Foreign Exchange) to stocks, indices, and even cryptocurrencies. Its popularity comes from its ability to generate clear buy signals and sell signals based on the interaction of its components: Tenkan Sen (Conversion Line), Kijun Sen (Base Line), Senkou Span A, Senkou Span B, and Chikou Span (Lagging Line). When combined, these lines create the Ichimoku Cloud, which visually represents the balance between price action and market structure.
Ichimoku Cloud Lines Formulas :
Conversion Line (Tenkan Sen / Conversion Line) : Average of the highest high and lowest low over the past 9 periods => (9-PH + 9-PL) ÷ 2
Base Line (Kijun Sen / Base Line) : Average of the highest high and lowest low over the past 26 periods => (26-PH + 26-PL) ÷ 2
Leading Span A (Senkou Span A / Leading Span A) : Average of the Conversion Line and Base Line, plotted 26 periods ahead => (Tenkan Sen + Kijun Sen) ÷ 2
Leading Span B (Senkou Span B / Leading Span B) : Average of the highest high and lowest low over the past 52 periods, plotted 26 periods ahead => (52-PH + 52-PL) ÷ 2
Lagging Span (Chikou Span / Lagging Span) : Current closing price, plotted 26 periods behind.
One of the biggest advantages of the Ichimoku Trading Strategy (Ichimoku Cloud Trading System) is that it allows traders to identify the market condition at a glance. When the price is above the Kumo (Cloud), it indicates a bullish trend (uptrend). When the price is below the Kumo, the market is in a bearish trend (downtrend). And when the price is inside the cloud, the market is ranging (sideways trend). This simplicity and visual clarity make Ichimoku an essential indicator for both beginner traders and professional analysts.
The Ichimoku Cloud Indicator (Ichimoku Technical Analysis Tool) continues to be one of the most reliable charting methods. Traders often consider it superior to basic moving averages (MA – Moving Average) or exponential moving averages (EMA – Exponential Moving Average), because it not only shows trend direction but also highlights potential future support and resistance levels. With its unique combination of trend analysis, price forecasting, and trading signals, Ichimoku remains a core strategy in modern trading systems.
🔵 How to Use
The Ichimoku Cloud is more than just a set of lines; it’s a complete trading system that helps traders identify trends, momentum, and key support and resistance levels. By combining its five lines Conversion Line, Base Line, Leading Span A, Leading Span B, and Lagging Span traders can develop clear buy and sell strategies.
🟣 Identifying Trend Direction
Bullish Trend (Uptrend) : Price is above the cloud (Kumo), and the cloud is green. Leading Span A is above Leading Span B, signaling strong upward momentum.
Bearish Trend (Downtrend) : Price is below the cloud, and the cloud is red. Leading Span A is below Leading Span B, confirming a downward momentum.
Ranging / Sideways Market : Price is inside the cloud, indicating indecision and consolidation. Traders often avoid opening strong positions during these periods.
🟣 Buy Strategies
Conversion/Base Line Crossover : A buy signal occurs when the Conversion Line (Tenkan Sen) crosses above the Base Line (Kijun Sen). The signal is strongest when this crossover happens above the cloud.
Price Above Base Line : If the price moves above the Base Line while in an uptrend, it confirms bullish momentum and provides a favorable entry point.
Cloud Support Pullback : During a pullback in an uptrend, the price may touch or slightly enter the cloud. Traders can use the cloud as a dynamic support zone for buying opportunities.
Lagging Span Confirmation : Ensure the Lagging Span (Chikou Span) is above the price of 26 periods ago to confirm the strength of the bullish trend.
🟣 Sell Strategies
Conversion/Base Line Crossover : A sell signal is generated when the Conversion Line (Tenkan Sen) crosses below the Base Line (Kijun Sen). This signal is strongest when it occurs below the cloud.
Price Below Base Line : If the price falls below the Base Line in a downtrend, it confirms bearish momentum and strengthens the sell setup.
Cloud Resistance Pullback : During a bounce in a downtrend, the cloud acts as a resistance zone. Traders can enter sell positions when price approaches or touches the cloud from below.
Lagging Span Confirmation : The Lagging Span should be below the price of 26 periods ago, confirming downward momentum.
🟣 Cloud Breakout Signals
A strong buy occurs when the price breaks above the cloud from below, signaling a potential trend reversal.
A strong sell occurs when the price breaks below the cloud from above, indicating a shift toward a bearish trend.
🟣 Combining Signals for Stronger Entries
For higher probability trades, combine multiple signals : trend direction (cloud color and position), crossovers (Tenkan/Kijun), and Lagging Span position.
Avoid trading against the overall trend. For example, avoid buying when price is below a red cloud or selling when price is above a green cloud.
🔵 Setting
Tenkan Sen Period : Lookback period for Conversion Line (default: 9).
Kijun Sen Period : Lookback period for Base Line (default: 26).
Span B Period : Lookback period for Leading Span B, forms one Cloud boundary (default: 52).
Shift Lines : Periods forward for Cloud / backward for Lagging Span (default: 26).
Cross Tenkan/Kijun Alert : Alert on Conversion/Base Line crossover.
Cross Price/Tenkan Alert : Alert when price crosses Tenkan Sen.
Cross Price/Kijun Alert : Alert when price crosses Kijun Sen
🔵 Conclusion
The Ichimoku Cloud (Ichimoku Kinko Hyo) is much more than a simple indicator it is a complete trading system that combines trend detection, momentum analysis, and support/resistance identification in one view. By interpreting the position of price relative to the cloud, the interaction between Tenkan Sen (Conversion Line) and Kijun Sen (Base Line), the leading spans (Senkou Span A and B), and the Chikou Span (Lagging Line), traders can identify potential buy and sell opportunities with higher confidence.
The main advantage of the Ichimoku Cloud is its ability to provide a “one-look equilibrium” snapshot of the market. It highlights bullish trends when the price is above the cloud, bearish conditions when the price is below it, and indecision or transition when the price is inside the cloud. Crossovers, cloud breakouts, and confirmations by the Chikou Span strengthen the trading signals.
However, traders should keep in mind the limitations of the Ichimoku system. It is based on historical data and should not be used in isolation. Combining it with other tools such as RSI, volume analysis, or candlestick patterns can significantly improve accuracy and reduce false signals.
OBV Cloud v1.0 [PriceBlance]🌐 English
OBV Cloud v1.0 – Free & Open-Source
OBV Cloud v1.0 integrates On-Balance Volume (OBV) with a Cloud model and enhanced trend filters.
It helps traders quickly identify:
Money Flow Trend: OBV Cloud acts as a dynamic support/resistance zone.
Trend Filters: EMA9 (short-term) and WMA45 (medium-term) directly applied on OBV.
OBV–Price Divergence: Detects both regular and hidden bullish/bearish divergences.
Trend Strength: Measured with ADX calculated on OBV.
OBV Cloud is suitable for both swing and day trading, allowing traders to spot breakouts, reversals, or sustained trends through volume-based analysis.
Dual Ichimoku CloudDual timeframe Ichimoku cloud (1x - Lower Timeframe & 5x - Higher timeframe). Higher timeframe trend can be identified in the same chart.
pyogi24 Intraday Ichimoku + RSIcustom script to get entry exit
its based on the ichimoku cloud indicator
and the cross over of the leading ang lagging spans to get the signals,
its under development.
i have also integrated the vwap so we know the bias of the trend.
this should work on a trending day.
Ichimoku Horizon v2Ichimoku Horizon v2
Multi-timeframe Ichimoku. Pine Script v6.
lookahead_off, no-repaint. Chart timeframe + up to three higher horizons.
What’s new in v2
Presets (+ Custom mode).
Timeframe banner.
Lines and colors configurable per TF.
Right-side labels for Tenkan/Kijun + “Kumo TF” labels.
Preset structure
Timeframe 1 = short horizon → blue.
Timeframe 2 = medium horizon → green.
Timeframe 3 = long horizon → violet.
MTF display is automatic only when the selected TF is higher than the chart TF.
Calculation rules
Tenkan 9, Kijun 26, SSB 52, Displacement 26.
SSA = average(Tenkan, Kijun) projected +26.
SSB = (52-high + 52-low) / 2 projected +26.
Chikou = close plotted 26 periods back.
lookahead_off and no-repaint
lookahead_off: calculations use no future data. Lines update live while a bar forms, then freeze at close.
No-repaint: past values never change after close. Plots reflect the real-time state exactly.
Adjustable labels
Distance: per-TF right offset (in bars) to position labels.
Size and color: Tiny/Small/Normal/Large, color per TF.
Anti-overlap: automatic spacing when two labels share nearly the same price.
Disclaimer
Ichimoku Horizon is a decision-support tool. It guarantees no results and does not replace your analysis or training in trading and risk. Before risking capital, test on a demo account if possible. Match parameters to your asset and horizon. Markets are volatile: losses, including total loss, are possible. Use risk management.
[DEM] Ichimoku Bars Ichimoku Bars is designed to color price bars based on their relationship to the Ichimoku Cloud (Kumo) by comparing the current close price to both Leading Span A and Leading Span B from the traditional Ichimoku system, but with added smoothing modifications. The indicator calculates the standard Ichimoku components using Donchian midlines for the Conversion and Base lines, then creates smoothed versions of Leading Span A (20-period RMA of the average between Conversion and Base lines) and Leading Span B (20-period RMA of the 52-period Donchian midline), both displaced forward by the lagging span period. Bars are colored green when price is above both leading spans (indicating strong bullish conditions above the cloud), red when price is below both leading spans (indicating strong bearish conditions below the cloud), and magenta when price is within the cloud (indicating neutral or transitional conditions), providing traders with immediate visual feedback about price position relative to the Ichimoku equilibrium zone.
ProfitAlgo.io TrendSync SimulationThe TrendSync Simulation is a gradient-based trend-following framework that helps traders quickly identify bullish vs bearish market structure while filtering out short-term noise.
Instead of relying on a single moving average or indicator, TrendSync builds a layered “trend cloud” in 3 different MODES, KUMO, PFA, HMA anchored against a reference band. These layers create a visual gradient that shifts with market direction.
When combined with its color-adaptive candles, you can turn off your candle setting colors within the chart settings of TradingView for the TrendSync color mapping which transforms raw price action into an easy-to-read flow map of institutional momentum.
📊 How It Works
Each layer creates a smooth gradient that shifts with trend direction:
Bullish trends form a rising, green-shaded cloud.
Bearish trends form a descending, red-shaded cloud.
Transitions appear as fading or compressing gradients, signaling potential reversals or consolidations.
Candles are also dynamically colored based on normalized momentum, allowing traders to see directional strength at a glance.
🔑 Key Features
✅ Gradient Cloud – A layered trend structure that visually shifts from bearish → bullish.
✅ Multiple Modes – Choose between KUMO, PFA, or HMA logic for responsiveness vs. smoothness.
✅ Dynamic Trend Candles – Bars adapt color based on momentum strength.
✅ Customizable Visualization – Adjust transparency, colors, and gradient strength to fit your chart style.
✅ Clarity of Direction – Highlights dominant flow while reducing noise from minor fluctuations.
⚙️ Settings Explained
Trend Method (KUMO / PFA / HMA): Controls the type of moving average used for the cloud.
Gradient Colors: Define the shading of bullish vs. bearish zones.
Transparency Controls: Adjust how strong or subtle the gradient cloud appears.
Lookback Length : Longer = smoother trend; shorter = more reactive.
💡 Use Cases
Identify trend bias quickly without switching between multiple indicators.
Confirm entries with liquidity or breakout strategies by aligning with the cloud.
Detect weakening or strengthening momentum via gradient compression.
Avoid trading against dominant higher time-frame flow with trend-colored candles .
⚡ Why It Matters
Markets often look chaotic on raw candlestick charts. TrendSync cuts through that noise by layering moving averages into a visual gradient, revealing institutional momentum in real time. Whether scalping, day trading, or swing trading, TrendSync provides a synchronized view of trend direction that adapts to different trading styles.
⚡ Paired with the Back End Order Matrix, TrendSync provides the clarity of direction after liquidity zones are exposed, creating a complete institutional-style framework inside TradingView.
EXAMPLE 1A
EXAMPLE 1B
EXAMPLE 1C
EXAMPLE 2A
Ichimoku Fractal Flow### Ichimoku Fractal Flow (IFF)
By Gurjit Singh
Ichimoku Fractal Flow (IFF) distills the Ichimoku system into a single oscillator by merging fractal echoes of price and cloud dynamics into one flow signal. Instead of static Ichimoku lines, it measures the "flow" between Conversion/Base, Span A/B, price echoes, and cloud echoes. The result is a multidimensional oscillator that reveals hidden rhythm, momentum shifts, and trend bias.
#### 📌 Key Features
1. Fourfold Fusion – The oscillator blends:
* Phase: Tenkan vs. Kijun spread (short vs. medium trend).
* Kumo Phase: Span A vs. Span B spread (cloud thickness).
* Echo: Price vs lagged reflection.
* Cloud Echo: Price vs. projected cloud center.
2. Oscillator Output – A unified flow line oscillating around zero.
3. Dual Calculation Modes – Oscillator can be built using:
* High-Low Midpoint (classic Ichimoku-style averaging).
* Wilder’s RMA (smoother, less noisy averaging averaging).
4. Optional Smoothing – EMA or Wilder’s RMA creates a trend line, enabling MACD-style crossovers.
5. Dynamic Coloring – Bullish/Bearish color shifts for quick bias recognition.
6. Fill Styling – Highlighted regions between oscillator & smoothing line.
7. Zero Line Reference – Acts as a structural pivot (bull vs. bear).
#### 🔑 How to Use
1. Add to Chart: Works across all assets and timeframes.
2. Flow Bias (Zero Line):
* Above 0 → Bullish flow 🐂
* Below 0 → Bearish flow 🐻
3. With Signal Line:
* Oscillator above smoothing line → Possible upward trend shift.
* Oscillator below smoothing line → Possible downward trend shift.
4. Strength:
* Wide separation from smoothing = strong trend.
* Flat, tight clustering = indecision/range.
5. Contextual Edge: Combine signals with Ichimoku Cloud analysis for stronger confluence.
#### ⚙️ Inputs & Options
* Conversion Line (Tenkan, default 9)
* Base Line (Kijun, default 26)
* Leading Span B (default 52)
* Lag/Lead Shift (default 26)
* Oscillator Mode: High-Low Midpoint vs Wilder’s RMA
* Use Smoothing (toggle on/off)
* Signal Smoothing: Wilder/EMA option
* Smoothing Length (default 9)
* Bullish/Bearish Colors + Transparency
#### 💡 Tips
* Wilder’s RMA (both oscillator & smoothing) is gentler, reducing whipsaws in sideways markets.
* High-Low Mid captures pure Ichimoku-style ranges, good for structure-based traders.
* EMA reacts faster than RMA; use if you want early momentum signals.
* Zero-line flips act like momentum pivots—watch them near cloud boundaries.
* Signal line crossovers behave like MACD-style triggers.
* Strongest signals appear when oscillator, signal line, and Ichimoku Cloud all align.
👉 In short: Ichimoku Fractal Flow compresses multi-layered Ichimoku system into a single fractal oscillator that detects flow, pivotal shifts, and momentum with clarity—bridging price, cloud, and echoes into one signal. Where the cloud shows structure, IFF reveals the underlying flow. Together, they offer a fractal lens into market rhythm.






















