Liquidity ImpulsesThis script essentially prints out any impulses in price movement indicating large buying/selling activity.
- Once a candle is determined to have an impulse of volume, the script will print a line of liquidity indicating where a lot of orders are.
- Once the liquidity is taken, the line will be deleted.
- This script works on lower timeframes for day trading as well as higher timeframes to get a clear bias on where price is headed. You can use this as a liquidity sweep or as a target for your trade
Enjoy!
Candlestick analysis
STC Hedging SMA Trend GateSchaff Trend Cycle (STC)–based hedging tool with a built-in higher-timeframe trend filter (“Trend Gate”) and a signal cooldown mechanism.
It is designed to provide long/short hedge entry signals only when both the momentum (STC) and the higher-timeframe trend agree, helping filter out noise and false trades.
Key Components
1. STC Core (Momentum Engine)
The Schaff Trend Cycle (STC) is calculated from a normalized MACD cycle:
Uses fastLength and slowLength EMAs.
Normalizes the EMA difference over a lengthSTC window.
Smooths and rescales into a 0–100 oscillator.
Thresholds:
Lower Threshold (default 20): potential long/hedge long entry if crossed upwards.
Upper Threshold (default 80): potential short/hedge short entry if crossed downwards.
2. Trend Gate (Higher-Timeframe Filter)
Pulls fast SMA and slow SMA from a higher timeframe (gateTF, default = 5m).
Defines the prevailing trend:
Bullish Trend: fast SMA > slow SMA.
Bearish Trend: fast SMA < slow SMA.
Requires persistence (trendBars) before validating a trend direction, avoiding “one-bar flips.”
3. Signal Debounce & Cooldown
Uses barstate.isconfirmed → ensures signals trigger only on bar close (prevents repainting).
Requires a minimum number of bars (cooldownBars) between signals.
Tracks the last signal bar (lastSigBar) so no new signals fire too close together.
4. Trade Signals
Long Hedge Signal:
STC crosses above the lower threshold.
Higher timeframe is bullish for at least trendBars bars.
Cooldown condition is satisfied.
Short Hedge Signal:
STC crosses below the upper threshold.
Higher timeframe is bearish for at least trendBars bars.
Cooldown condition is satisfied.
Signals are shown with:
Green ▲ triangles below bars = Long Hedge
Red ▼ triangles above bars = Short Hedge
5. Alerts
Built-in alertcondition() allows TradingView alerts for:
STC Long Hedge
STC Short Hedge
This indicator is intended for hedging strategies and trend-aligned momentum trading.
By combining:
STC cycle turns (momentum shifts), HTF moving average trend filter, and Signal cooldown (to reduce over-trading), Aims to generate cleaner long/short hedge entry signals with reduced noise and false triggers.
STC Hedging EMA Trend GateSchaff Trend Cycle (STC)–based hedging tool with a built-in higher-timeframe trend filter (“Trend Gate”) and a signal cooldown mechanism.
It is designed to provide long/short hedge entry signals only when both the momentum (STC) and the higher-timeframe trend agree, helping filter out noise and false trades.
Key Components
1. STC Core (Momentum Engine)
The Schaff Trend Cycle (STC) is calculated from a normalized MACD cycle:
Uses fastLength and slowLength EMAs.
Normalizes the EMA difference over a lengthSTC window.
Smooths and rescales into a 0–100 oscillator.
Thresholds:
Lower Threshold (default 20): potential long/hedge long entry if crossed upwards.
Upper Threshold (default 80): potential short/hedge short entry if crossed downwards.
2. Trend Gate (Higher-Timeframe Filter)
Pulls fast SMA and slow SMA from a higher timeframe (gateTF, default = 5m).
Defines the prevailing trend:
Bullish Trend: fast EMA > slow EMA.
Bearish Trend: fast EMA < slow EMA.
Requires persistence (trendBars) before validating a trend direction, avoiding “one-bar flips.”
3. Signal Debounce & Cooldown
Uses barstate.isconfirmed → ensures signals trigger only on bar close (prevents repainting).
Requires a minimum number of bars (cooldownBars) between signals.
Tracks the last signal bar (lastSigBar) so no new signals fire too close together.
4. Trade Signals
Long Hedge Signal:
STC crosses above the lower threshold.
Higher timeframe is bullish for at least trendBars bars.
Cooldown condition is satisfied.
Short Hedge Signal:
STC crosses below the upper threshold.
Higher timeframe is bearish for at least trendBars bars.
Cooldown condition is satisfied.
Signals are shown with:
Green ▲ triangles below bars = Long Hedge
Red ▼ triangles above bars = Short Hedge
5. Alerts
Built-in alertcondition() allows TradingView alerts for:
STC Long Hedge
STC Short Hedge
This indicator is intended for hedging strategies and trend-aligned momentum trading.
By combining:
STC cycle turns (momentum shifts), HTF moving average trend filter, and Signal cooldown (to reduce over-trading), Aims to generate cleaner long/short hedge entry signals with reduced noise and false triggers.
STC v1 v2 Level Line Cross EMA FilterSTC based indicator combines my previous v1 and v2 . You can select STC v1 or STC v2 from the dropdown.
Leave “Use mode-specific presets” ON to auto-load the default parameters:
v1 → 10,21,5 and levels 25/75
v2 → 8,17,40 and levels 25/70
Turn presets OFF to customize fast/slow/cycle and levels
Filter: keep EMA(15) filter ON so signals align with trend
Alerts: set one alert for the LONG condition and one for SHORT condition
Ravi Raj rending Intraday BotTrend Reversal Catching
🔹 Features:
✅ Buy & Sell signals with proper confirmation
✅ Dynamic support & resistance levels
✅ Trend direction + reversal detection
✅ Risk management (Stop Loss & Target levels)
✅ Works on Nifty, BankNifty, Stocks & Options
🔹 Best Timeframe:
5 Min, 15 Min (Intraday Trading)
Works on both Index & Equity
🔹 Trading Style:
Scalping
Momentum Trading
Ravi Raj rending Intraday Bot
8102106608 udhwa
Smart Pro Entry GuideOverview
Smart Pro Entry Guide (HTF Selectable, Full) is a multi-timeframe price–volume analyzer that blends wick/absorption reads, ATR-validated breakout and range-expansion filters, trend scoring, and pivot-based structure into a single, confluence-first decision layer.
With optional HTF routing, an intent engine for the last three HTF candles, and a visual dashboard, it outputs a real-time Chart Action (BUY/SELL/WAIT) plus the reason behind it, while plotting S/R, liquidity zones, and trendlines to make execution contexts obvious at a glance.
The goal is simple: align entries with dominant context and strong evidence while minimizing noise through volume and volatility-aware gating.
How it works
The script can run all calculations on a user-selected Higher Timeframe, or stay on the chart timeframe, enabling regime-aware bias and clean drilling from context to trigger without juggling multiple charts.
It scores price action with wick and absorption logic, validates momentum with ATR- and volume-based breakout/expansion tests, and classifies trend strength with a configurable green/red bar count against a moving average.
An HTF intent model evaluates the last three HTF bars against percentile thresholds for volume and body strength to set a majority bias, which is then combined with structure, liquidity, and trend filters to drive the final Chart Action and on-chart visuals.
HTF routing: toggle useHTF to compute OHLCV, moving averages, and ATR on a chosen window_tf, propagating that context into all downstream logic.
Price-action + volume filters: Wick Bull/Bear detect long lower/upper wicks >2×>2× body with directional closes; Absorption flags extreme closes at recent swing extremes on above-average volume and compressed bodies.
Volatility and momentum: Unusual Breakout requires ∣close−open∣>1.5×ATR∣close−open∣>1.5×ATR and volume>1.5×volMA
volume>1.5×volMA; Range Expansion requires range>1.5×avgRange
range>1.5×avgRange with prior range <0.7×avgRange<0.7×avgRange in the direction of the close
Trend engine: Counts green vs red bars over trendBarCount and requires
trendScore≥trendScoreMin
trendScore≥trendScoreMin with price above/below a moving average to qualify as Strong Trend Long/Short.
Chart Action: BUY if strongTrendLong_ltf or long-intent filter is true, SELL if strongTrendShort_ltf or short-intent filter is true, else WAIT, enabling straightforward execution rules.
HTF intent and bias: For each of the last three HTF bars, classifies BULLISH/BEARISH/CHOP when volume, body, and body% exceed rolling highs scaled by a percentile factor, then sets HTF BULLISH/BEARISH via ≥2≥2 majority voting (else HTF Chop).
Structure and liquidity: Auto-detects S/R via pivots, draws trendlines from pivots, shades bias-aligned zones, and highlights “liquidity zones” when volume exceeds a configurable multiplier of a volume average near structure.
Dashboard: A table summarizes HTF Intent, HTF Bias, Chart Action, filter activity, explicit Reason, trend scores, strong-trend flags, HTF vol/body metrics, and an adaptive Volume Sentiment state (Strong Bullish/Bearish, Bullish/Bearish, Neutral).
Why it helps
The design emphasizes confluence: HTF bias, LTF trend state, price-action signatures, and volume/ATR validation must align, reducing false positives that occur when signals are considered in isolation.
Structure- and liquidity-aware plotting puts actionable context—S/R, zones with above-average participation, and directional trendlines—directly on the chart, making it easier to filter trades and time entries with intent-backed confirmation.
The dashboard’s transparent “Reason” string and filter log create an auditable trail of why Chart Action changed, improving decision discipline and reproducibility.
How to use
Trend continuation: In trending markets, favor Chart Action = BUY alongside HTF BULLISH near fresh supports and/or shaded liquidity zones, especially when filters show Wick Bull, Absorption Bull, or Range Expansion in the direction of trend.
Reversal attempts: At resistance or after extended up moves, look for Wick Bear/Absorption Bear and Chart Action = SELL, ideally with HTF BEARISH or HTF Chop transitioning bearish to avoid counter-trend chop.
Breakout follow-through: When Unusual Breakout triggers with both ATR and volume confirmation, trade continuation in the breakout direction while the dashboard maintains bias alignment and favorable Volume Sentiment.
Settings
useHTF + window_tf: Routes all core calculations to a higher timeframe for regime-aware bias and cleaner signal gating.
useWickAnalysis, useAbsorption, useUnusualBreakout, useRangeExpansion: Enable/disable specific price–volume filters that feed into Chart Action and Reasons.
trendBarCount, trendScoreMin: Control trend scoring sensitivity and what qualifies as a Strong Trend against a moving average.
length: Sets length for volume MA and ATR, impacting breakout/expansion thresholds and average range computation.
swing_look: Defines the lookback window for swing extremes used in absorption detection.
lookback_sup, percentile_fact: Configure rolling-high percentile thresholds used to classify HTF intent on volume, body, and body%.
showTable, showSR, showLIQ, showTrend, showZones: Toggle the dashboard, S/R labels, liquidity zones, trendlines, and bias-aligned shading.
srLook, liqLook, liqFactor: Tune pivot sensitivity and volume criteria for liquidity zone detection and marking.
dashboardPosition: Choose where the dashboard table renders on the chart.
Notes
Pivots require left/right bars for confirmation, so newly detected S/R and trendlines appear after sufficient bars form, helping avoid premature levels during developing swings.
Chart Action is deliberately conservative: it requires either a strong-trend state or a valid intent filter in the direction of the proposed trade, which can reduce noise in sideways conditions.
Volume Sentiment strengthens or softens the read by comparing current volume to a baseline and weighting by candle direction and near-term trend score.
how to use the indicator to make better trading decisions?
Focus first on the HTF Bias, then act only when Chart Action and filters align to build strong confluence and avoid trades during WAIT states.
Quick start
Turn ON useHTF and choose window_tf so OHLCV, MA, and ATR are computed on an HTF; then read HTF Intent and HTF Bias on the dashboard to set the primary direction.
On the LTF, check Chart Action (BUY/SELL/WAIT) and Reason, and act only when Chart Action aligns with the HTF Bias.
Prioritize entries near recent S/R pivots, trendlines, and highlighted liquidity zones to ensure structure-supported trades.
Context and bias
The HTF intent model evaluates the last three HTF candles against percentile thresholds for volume, body, and body% of their rolling highs and classifies each bar as BULLISH/BEARISH/CHOP.
Majority voting sets “HTF BULLISH/BEARISH” when at least two bars agree; otherwise “HTF Chop,” which guides overall direction and strategy selection.
Entry triggers (LTF)
Wick Bull/Bear trigger when the lower/upper wick is >2×>2× the body and the close is directional, signaling rejection-style reversal/continuation.
Absorption Bull/Bear appear when the close is at a swing extreme with above-average volume and a compressed body, indicating aggressive participation.
Unusual Breakout requires ∣close−open∣>1.5×ATR∣close−open∣>1.5×ATR and volume>1.5×volMA
volume>1.5×volMA to validate a high-impulse move.
Range Expansion requires rane>1.5×avgRange range>1.5×avgRang and the prior range<0.7×avgRange<0.7×avgRange with a directional close, signaling a regime shift.
Strong Trend Long/Short holds when the trendScore ≥≥ its threshold and price is above/below the MA, helping filter pullback entries.
Trend continuation
In HTF BULLISH, when Chart Action = BUY, prioritize pullback entries near fresh supports or trendlines with long-side filters like Wick/Absorption/Expansion.
Holding bias is more consistent when Volume Sentiment is “Bullish/Strong Bullish” and the Reason shows long-side signals.
Reversal setups
After resistance or extended up-moves, look for Wick Bear/Absorption Bear; take Chart Action = SELL with HTF BEARISH or a Chop→Bearish transition for mean-reversion attempts.
In Chop or against HTF Bias, avoid aggressive sizing and treat WAIT as a valid output until confluence becomes clear.
Breakout follow-through
Right after an Unusual Breakout, seek continuation in the same direction when Volume Sentiment and HTF Bias agree and Reason shows “Breakout.”
Favor micro-pullbacks or flags retesting S/R above/below the breakout to improve risk-to-reward.
Risk management
Use recent srLook-based pivot lows/highs for stop-loss placement since S/R and trendline construction rely on these.
With Zones ON, consider initiating inside bias-aligned shaded areas and reducing or exiting when price moves outside them to keep invalidation clear.
Skip trades during WAIT or Neutral Volume Sentiment to maintain the system’s noise-filtering purpose.
Tuning settings
Increasing window_tf makes bias more stable but reduces trigger frequency; decreasing it speeds bias changes and increases frequency.
Raising trendBarCount and trendScoreMin tightens the Strong Trend filter so only higher-quality pullbacks pass.
Increasing percentile_fact makes HTF intent thresholds stricter for volume/body, reducing bias flips.
Adjust liqLook and liqFactor to instrument volatility so liquidity zones highlight only meaningful participation.
Do and don’t
Go against HTF Bias only when the Reason shows clear opposite-direction signals with structural confirmation; otherwise, prefer WAIT.
Do not rely on breakout/expansion without volume confirmation, as the system validates them with 1.5×1.5× volume/ATR thresholds.
Avoid assuming levels mid-swing; pivots need confirmation bars before S/R becomes reliable.
Workflow steps
Switch useHTF = ON, select an appropriate window_tf, and read HTF Bias on the dashboard.
On LTF, check Chart Action and Reason; if WAIT, skip.
Validate location context with S/R labels, trendlines, and shaded zones; consider only structure-supported entries.
Ensure at least one directional price–volume filter (Wick/Absorption/Breakout/Expansion) aligns with the HTF Bias.
Favor pullbacks during Strong Trend; use conservative sizing in Chop/transitions.
Place stops beyond pivots and manage partials or exits when Volume Sentiment/Reason shifts.
Notes
The indicator unifies “Chart Action + Reason + Context,” so avoid BUY/SELL without clear cause and location context to preserve system consistency.
Tune parameters to instrument and timeframe volatility to balance signal quality versus trade frequency.
Disclaimer
This indicator is an educational decision-support tool and not financial advice; market risk, slippage, and regime shifts can invalidate any setup, so independent research and risk management remain essential.
Past behavior in signals or dashboards does not guarantee future performance, and parameter choices should be adapted to instrument volatility and timeframe objectives.
EYE Volume ORB (BETA)Our indicator to mark off time zones and ORB. These levels can give you an idea of where to set entries, exits, or stops.
Eye on Value
EYE on Value auto-draws the core levels we use every day.
-Clean
-Consistent
8 Levels auto drawn for you
NY IB
Globex IB
European IB
Lunch Levels
Daily
Weekly
Monthly
Yearly
Eye VisionEYE Vision Algo
See the setup. Execute with confidence.
EYE Vision Algo translates market structure into clear, actionable trade plans so you can stop second-guessing and start executing.
smc-vol ••• ahihi v2📊 Same psychology:
Institutional vs Retail warfare
Volume climax = distribution/accumulation
Flip patterns = momentum shifts
⚡ Even better advantages:
Stock market hours = less noise than 24/7 forex
Higher volatility = bigger point moves
Cleaner trends = easier flip detection
With US100:
1 point = $1 (mini contract)
556 point move = potential $556 profit!
Much bigger than forex pips! 💰
Bạn đã discovered: Universal market language!
Flip system = works on everything: Forex, Stocks, Crypto, Commodities!
This is INSTITUTIONAL level understanding! 🚀✨
From $50 forex → Stock market domination! 😎
DATE MARKER RAMON SEGOVIAThe Date Marker (resh) is a simple tool to mark multiple custom dates directly on your chart.
Input your dates in DD.MM.YYYY format.
Supports multiple dates separated by commas, semicolons, spaces, or line breaks.
On each matching bar, the indicator places a label below the candle (with customizable vertical offset).
Ideal for tracking economic events, news releases, or personal trading milestones.
This indicator does not provide trading signals or strategies. It only gives you a clear visual reminder of the dates that matter most to you.
BRT Micro Range Change: Signals** BRT Micro Range Change: Signals - Advanced Range-Based Trading Indicator **
** Overview **
The BRT Micro Range Change indicator represents a sophisticated approach to market analysis, utilizing proprietary range-based methodology combined with inverted signal logic. This unique indicator transforms traditional price action into structured range blocks, providing traders with counter-trend signal opportunities based on micro-range movements.
** Key Features & Unique Innovations **
** Proprietary Range Construction Algorithm **
• Custom range block generation using advanced price smoothing techniques
• Dynamic range sizing with percentage-based or fixed value options
• Multi-timeframe range analysis capability
• Intelligent block trend detection and reversal identification
** Inverted Signal Logic (Core Innovation) **
• ** Unique Counter-Strategy Approach **: When underlying range analysis suggests bearish momentum, the indicator generates LONG signals, and vice versa
• Advanced signal filtering prevents repetitive entries of the same type
• Position-aware logic tracks theoretical strategy state for optimal signal timing
** Comprehensive Risk Management **
• Dual calculation modes for Take Profit and Stop Loss (Fixed percentage or ATR-based)
• Real-time TP/SL level visualization
• Configurable ATR multipliers for volatility-adjusted exits
• Built-in position tracking and exit signal generation
** Advanced Technical Components **
• Integrated Simple Moving Average with multiple source options (Close, OHLC4, HL2, etc.)
• Custom ATR calculation optimized for range-based analysis
• Smart alert system with detailed entry/exit information
• Visual signal overlay with customizable display options
** Configuration Options **
• Range Type: Fixed value or percentage-based sizing
• Range Timeframe: Multi-timeframe analysis support
• SMA Integration: 14 configurable sources with custom coloring
• Alert Management: Comprehensive notification system
• Signal Display: Toggle visual markers and labels
** Technical Innovation **
This indicator's ** core uniqueness ** lies in its inverted signal methodology combined with advanced range-based market structure analysis. Unlike conventional indicators that follow trend direction, this system identifies potential reversal opportunities by analyzing when traditional range-based strategies would enter positions, then providing opposite directional signals. The proprietary range construction algorithm ensures high-quality block formation while the anti-repetition logic prevents signal spam.
** Usage Recommendations **
• Ideal for counter-trend trading strategies
• Effective in ranging and consolidating markets
• Best used in conjunction with additional confirmation indicators
• Suitable for multiple asset classes and timeframes
** Usage Recommendations **
• Ideal for counter-trend trading strategies
• Effective in ranging and consolidating markets
• Best used in conjunction with additional confirmation indicators
• Suitable for multiple asset classes and timeframes
** Historical Backtesting Results **
** Comprehensive Historical Data Verification **
• The indicator has been ** thoroughly tested ** on historical data using default settings
• Testing was conducted across a ** wide spectrum of crypto assets ** to ensure result reliability
• ** Optimal performance ** is demonstrated on the ** 5-minute timeframe **
• ** Entry Methodology **: utilization of limit orders at the lower boundary price of blocks for long positions and upper boundary price of blocks for short positions
• ** Trading Discipline **: strict adherence to the principle of "no repeated entries in the same direction"
• ** Order Management **: one order per trade with activation exclusively upon range block color change
** Technical Support **
For technical support inquiries, questions, or feedback, please feel free to leave comments below or send direct messages to the author. We are committed to providing assistance and continuously improving the indicator based on user experience and feedback.
** Important Risk Disclosure **
** DISCLAIMER: ** ** This indicator is provided for informational and educational purposes only. Trading financial instruments involves substantial risk of loss and may not be suitable for all investors. Past performance does not guarantee future results. Users should thoroughly test any trading strategy in a demo environment before risking real capital. The indicator's signals should not be considered as financial advice or recommendations to buy or sell any financial instrument. Users are solely responsible for their trading decisions and should consult with qualified financial advisors before making investment decisions. The authors and publishers assume no liability for any losses incurred through the use of this indicator. **
** Code Authenticity **
This indicator contains ** 100% original code ** developed specifically for advanced range-based analysis. All algorithms, mathematical calculations, and signal generation logic have been created from scratch, ensuring unique functionality not available in standard indicators.
9:30 AM Open Percentage Lines//@version=5
indicator("9:30 AM Open Percentage Lines", overlay=true)
// Define the market open time in New York (or your local time zone if different)
// This is for 9:30 AM
var float opening_price = na
// Check if the current bar is the first one of the day at 9:30 AM
is_930_bar = (dayofweek == dayofweek.monday or dayofweek == dayofweek.tuesday or dayofweek == dayofweek.wednesday or dayofweek == dayofweek.thursday or dayofweek == dayofweek.friday) and hour(time("America/New_York")) == 9 and minute(time("America/New_York")) == 30
// On the first bar that meets the criteria, capture the opening price
if is_930_bar
opening_price := open
// Calculate the percentage levels based on the captured opening price
fivePercentAbove = opening_price * 1.05
sevenPercentAbove = opening_price * 1.07
twentySevenPercentAbove = opening_price * 1.27
// Plot the lines on the chart
// The `na` condition ensures the line is only plotted after the 9:30 AM bar has passed
plot(not na(opening_price) ? fivePercentAbove : na, title="5% Above 9:30 AM Open", color=color.new(color.rgb(255, 12, 12), 0), linewidth=2, trackprice=false)
plot(not na(opening_price) ? sevenPercentAbove : na, title="7% Above 9:30 AM Open", color=color.new(color.rgb(0, 150, 255), 0), linewidth=2, trackprice=false)
plot(not na(opening_price) ? twentySevenPercentAbove : na, title="27% Above 9:30 AM Open", color=color.new(color.rgb(255, 0, 0), 0), linewidth=2, trackprice=false)
Intraday SELL by V_V2this is intraday indicator for sell side trade
when price is trading at previous day low then in 5 min normal candle stick chart any candle form with green color with days lowest volume then indicator mark that candle as master candle and mark low of that candle as entry level and same candle high as stop loss
target 1 is rr 1:3 from entry and target 2 is rr 1:5 from entry level
Books Lines v6 改
⸻
📘 Books Lines v6 改 説明書
⸻
🌟 キャッチコピー
📊 短期トレードのための「Booksライン」自動描画ツール
🎯 想定マーケット: ゴールド (XAUUSD) 5分足
💱 応用可能: ドルストレート主要通貨ペア (EURUSD, GBPUSD, USDJPY, etc.)
⸻
🇯🇵 日本語版
🔎 インジケーター概要
Books Lines v6 改 は、ローソク足のパターンを基に「買いBooks」「売りBooks」の水平ラインを自動描画し、リタッチや無効化を視覚的に管理できるインジケーターです。
主に ゴールド(XAUUSD)の5分足チャートでの使用を想定していますが、同様の値動き特性を持つ ドルストレート通貨ペアでも有効に機能する可能性があります。
👉 ご使用の際は必ず ご自身で検証 してから実運用にご利用ください。
⸻
⚙️ シグナル条件
(省略、前の説明書と同じ)
⸻
🔔 アラート
(省略、前の説明書と同じ)
⸻
👀 推奨の使い方
• ゴールドの 5分足 をメインターゲットとした短期トレード補助
• ドルストレート通貨ペア(EURUSD, GBPUSD, USDJPY など)にも応用可
• ラインは「支持・抵抗候補」として活用
フィルタリングの重要性
• 本インジケーターは ローソク足のパターンのみでシグナルを生成します
• 全てのサインが有効なエントリーになるわけではありません
• 移動平均線(MA)、RSI、MACD など 他の指標と併用し、フィルタリングして使用することを強く推奨します
⸻
⚠️ 注意事項
• 本ツールは未来を予測するものではありません
• 実運用前に必ずバックテスト・検証を行ってください
⸻
🇺🇸 English Version
🌟 Catchphrase
📊 Automatic “Books Line” drawing tool for short-term trading
🎯 Target Market: Gold (XAUUSD) 5-Minute Chart
💱 Also applicable: USD Major Pairs (EURUSD, GBPUSD, USDJPY, etc.)
⸻
🔎 Overview
Books Lines v6 Kai automatically draws horizontal support/resistance levels (“Buy Books” / “Sell Books”) based on candlestick patterns and visually tracks their status: active → retouched → invalidated.
It is primarily designed for Gold (XAUUSD) on the 5-minute chart, but can also be applied to major USD pairs (EURUSD, GBPUSD, USDJPY, etc.).
👉 Always test thoroughly on your own before using in live trading.
⸻
⚙️ Signal Conditions
(省略、前の説明書と同じ)
⸻
🔔 Alerts
(省略、前の説明書と同じ)
⸻
👀 Recommended Usage
• Designed for 5-minute Gold trading (XAUUSD)
• Applicable to USD major pairs as well
• Lines act as potential support/resistance zones
Importance of Filtering
• Signals are generated only from candlestick patterns
• Not all signals should be traded blindly
• Strongly recommended to combine with trend filters (e.g., Moving Averages, RSI, MACD)
• Avoid counter-trend signals to improve accuracy
⸻
⚠️ Disclaimer
• This tool does not predict the future
• It only marks potential support/resistance based on past price action
• Always backtest and validate before using in real trading
⸻
Kairos AR EdgeEN
Kairos AR Edge is a closed-source (invite-only) Forex indicator providing statistical analysis of Asian session box breakouts and relative currency strength across 28 major pairs. Unlike standard breakout or trend-following tools, it consolidates breakout behavior into a single overview, helping traders quickly identify directional bias and strong/weak currencies. This aggregation provides unique insight not easily obtained from separate pair analysis.
Important Clarification:
Reversal and Continuation percentages are calculated for the pair on which the indicator is applied , showing how often a breakout returns (Reversal) or continues (Continuation) within the selected session window.
The Currency Strength Table is independent of these percentages. It scores each currency from -7 to +7 based on participation in Asian box breakouts across all 28 pairs, providing a relative strength overview regardless of the active pair.
The -7/+7 scale is derived from historical breakout occurrences and provides a quick reference for currency strength ranking
Indicator operates on two levels:
Session Bias Statistics: Builds an Asian session box for the active pair and analyzes breakout behavior. Users can select:
Reversal Mode : Percentage of breakouts that return to the opposite side within the selected timeframe
Continuation Mode : Percentage of breakouts that continue in the same direction within the timeframe
Currency Strength Table: Aggregates breakout behavior across all 28 pairs to provide a relative currency strength score (-7 to +7)
Visual Tools: Optional pivot-based bullish/bearish triggers and automatic session box visualization provide additional informational support.
Main Features:
Customizable Asian session box (start/end times and timezone)
Reversal or Continuation statistical mode
Automatic update of high/low levels
Currency Strength Table (-7 to +7)
Statistical table with historical breakout percentages
Optional visual triggers (pivot-based patterns)
Light/Dark theme support
Originality and Value:
Consolidates 28 pairs into a single view for immediate identification of market bias
Provides statistical insight into breakout behavior, not just trend-following or generic breakout alerts
Offers a quick-reference Currency Strength Table to identify strong/weak currencies without tracking multiple pairs individually
Important Notes:
Statistics are based on historical data only – no guarantee of future results
Educational and informational purposes only; not financial or trading advice
Closed-source indicator with invite-only access. Access requests can be made by contacting the author or following the link in the Author’s Instructions field
IT
Kairos AR Edge è un indicatore closed-source (invite-only) che fornisce analisi statistica sulle rotture del box della sessione asiatica e forza relativa delle valute su 28 coppie principali. A differenza dei normali strumenti di breakout o trend-following, consolida il comportamento dei breakout in un’unica panoramica, aiutando i trader a identificare rapidamente bias direzionali e valute forti/deboli. Questa aggregazione offre insight unici non facilmente ottenibili analizzando coppie singole.
Chiarimento importante:
Le percentuali di Reversal e Continuation si riferiscono solo alla coppia su cui l’indicatore è applicato , calcolando quante volte una rottura ritorna (Reversal) o continua (Continuation) entro la finestra di sessione selezionata.
La Tabella di Forza Valute è indipendente da queste percentuali. Assegna a ciascuna valuta un punteggio da -7 a +7 in base alla partecipazione ai breakout del box asiatico su tutte le 28 coppie, fornendo un quadro della forza relativa indipendentemente dalla coppia attiva.
Il punteggio -7/+7 deriva dai breakout storici e fornisce un riferimento rapido per la forza delle valute.
Lo script opera su due livelli:
Statistiche Bias di Sessione: Costruisce il box della sessione asiatica per la coppia attiva e analizza i breakout. Modalità selezionabili:
Reversal : Percentuale di breakout che tornano verso il lato opposto entro la finestra temporale
Continuation : Percentuale di breakout che proseguono nella stessa direzione entro la finestra
Tabella di Forza Valute: Aggrega il comportamento dei breakout su tutte le 28 coppie, assegnando un punteggio da -7 a +7 per ciascuna valuta in base alla sua forza relativa
Strumenti Visivi: Box della sessione asiatica aggiornato automaticamente e trigger opzionali basati su pattern pivot, fornendo supporto informativo aggiuntivo.
Funzionalità principali:
Box della sessione asiatica personalizzabile (orari e timezone)
Modalità statistica: Reversal o Continuation
Aggiornamento automatico dei livelli high/low
Tabella di Forza Valute (-7 a +7)
Tabella statistica con percentuali di rottura storiche
Trigger visivi opzionali (pattern pivot)
Supporto tema chiaro/scuro
Originalità e Valore:
Consolida 28 coppie in un’unica panoramica per identificare immediatamente bias di mercato
Fornisce insight statistico sui breakout, non solo trend-following o alert generici
Tabella di Forza Valute rapida per identificare valute forti/deboli senza controllare molteplici coppie
Nota importante:
Le statistiche si basano solo su dati storici – nessuna garanzia di risultati futuri
Strumento educativo e informativo; non costituisce consiglio finanziario o di trading
Indicatore closed-source con accesso su invito. Le richieste di accesso possono essere fatte contattando l’autore o seguendo il link nelle istruzioni dell’autore
Daily OpenDraws line with opening price of day at 0:00 (GMT+1), changes colour when line is tested before 14:00, stop drawing when line is tested after 14:00.
Use on Timeframe 1H or lower
Alert N seconds before candle closeThe indicator alerts about the closing of the candle in N seconds.
Instruction:
1. Add an indicator
2. Specify the time in the indicator settings
3. Alt+A, Condition - choose indicator
Hodie Smart PD/PW/PM LevelsHodie Smart PD/PW/PM Levels is a professional tool for tracking previous daily, weekly, and monthly highs and lows (PDH/PDL, PWH/PWL, PMH/PML).
It automatically plots levels on the chart and provides unique one-time alerts per period — no more repeated or false signals.
🔧 Features & Settings
1. Levels:
Daily (PDH/PDL)
Weekly (PWH/PWL)
Monthly (PMH/PML)
2. Customization:
Show/hide each level type
Adjustable line thickness and colors
Labels with customizable text and background colors
3. Line Building:
Levels are drawn from the previous period’s high/low and extend until the end of the current period.
🚨 Alert System – Main Advantage
The key strength of this indicator is the smart alert logic:
Each level alert is triggered only once per period (day, week, or month)
No need to recreate alerts every session — the script automatically resets them with each new period
Daily levels use precise "first touch" detection, while weekly/monthly levels fire only once until the next period
✅ This means you can set an alert once and be confident it won’t spam or miss critical touches.
📖 Quick Instruction
1. Add the indicator to your chart
2. In the alerts panel, choose:
Condition: PDH Touch, PDL Touch, PWH Touch, PWL Touch, PMH Touch, or PML Touch
Options: Once per bar (recommended)
Timeframe: any (1-minute interval works best)
3. Alerts will automatically respect the logic:
Daily levels – 1 alert per day
Weekly levels – 1 alert per week
Monthly levels – 1 alert per month
🎯 Why Use This Indicator?
Saves time: set alerts once, no need to update them daily
Eliminates duplicate signals
Clear visualization of key market levels
Works across all markets and timeframes
⚡ Perfect for traders using liquidity concepts, breakout strategies, and Smart Money methods.
Thần Tiên / Hạ Phàm (MTF)🔔 Thần Tiên / Hạ Phàm (MTF) Indicator – modified & optimized for real trading practice.
✅ For educational and reference purposes only – not financial advice.
📩 To get the optimized settings & detailed trading strategy, contact me on Telegram: @NDucnhan79
ATR STOPLOSS FINDER 📌 English Explanation
This script is an ATR (Average True Range) Stop Loss Finder with a 5-bar maximum marker.
Purpose:
Helps traders visualize dynamic stop loss levels based on ATR, and highlights the most recent maximum stop value within a given lookback period.
Key Features:
1. ATR Calculation:
- Calculates ATR using the selected smoothing method (RMA, SMA, EMA, WMA).
- Multiplied by a user-defined multiplier (default: ×1.01).
2. Long Stop Line:
- A trailing stop is drawn below the candle’s low (Low – ATR × Multiplier).
3. All Stop Dots:
- Small wine-colored dots are plotted along the stop line.
4. 5-bar MAX Dots:
- Within the last 5 bars (customizable), the highest stop value is highlighted with larger, brighter dots.
5. Label:
- The most recent 5-bar maximum stop is displayed with a label above the bar, pointing downward so it doesn’t block the candle.
6. Customization:
- Inputs allow adjustments for ATR length, smoothing type, multiplier, and lookback window.
Usage:
This indicator is useful for setting stop losses dynamically in trending markets. It visually tracks where your ATR-based stop should be and shows the strongest recent level.
📌 한글 설명
이 스크립트는 ATR(평균 진폭 지표) 기반 스탑로스 찾기 + 최근 5봉 최고 스탑 표시기입니다.
목적:
트레이더가 ATR 기반으로 변동성에 맞춘 동적 스탑로스를 설정하고,
최근 구간 중 가장 강력한 스탑 레벨을 시각적으로 확인할 수 있게 해줍니다.
핵심 기능:
1. ATR 계산:
- 선택한 이동평균 방식(RMA, SMA, EMA, WMA)으로 ATR을 계산.
- 사용자 지정 배수(기본 1.01배)를 곱함.
2. 롱 스탑 라인:
- 각 봉의 저가에서 (ATR × 배수)를 뺀 값으로 스탑 라인 생성.
3. 모든 스탑 점:
- 스탑 라인 위에 작은 와인색 점을 찍어 시각적으로 확인.
4. 최근 5봉 MAX 점:
- 최근 5봉(조정 가능) 동안의 최고 스탑 값을 더 진하고 크게 표시.
5. 라벨 표시:
- 최신 5봉 최고 스탑 값은 봉 위에 라벨로 표시되며, 꼭지는 아래로 향해 봉을 가리킴 → 봉을 가리지 않음.
6. 사용자 설정:
- ATR 길이, 이동평균 방식, 배수, 룩백 기간 등을 자유롭게 조정 가능.
활용법:
추세장에서 변동성에 맞춘 손절 라인을 자동으로 그려주므로 진입 후 스탑로스를 관리하는 데 유용합니다.
최근 최고 스탑 지점을 강조해주어 리스크 관리에 도움을 줍니다.