Auto S/R 1H - Stable Simplethat is a script to find out the support and resistance as trendlines for stocks in one hour timeframe for swing trading.
Candlestick analysis
Sri - Custom Timeframe Candle / Heikin AshiSri - Custom Timeframe Candle / Heikin Ashi (Week & Day) + Label
Short Title: Sri - Smart Candles
Pine Script Version: 5
Overlay: Yes
Description:
The Sri - Smart Candles indicator allows traders to visualize historical and current daily and weekly candles on a single chart in a compact and customizable format. You can choose between Normal candles or Heikin Ashi candles for better trend visualization. The script displays previous 4 candles, the last candle, and the live candle with horizontal offset positioning to avoid overlapping the chart. Additionally, the indicator includes customizable labels for days or week numbers, helping traders quickly analyze patterns and trends.
This indicator is ideal for traders who want to see higher timeframe candle patterns on lower timeframe charts (like 5-min, 15-min, or 1-hour charts) without switching timeframes.
Key Features:
Custom Candle Types: Normal or Heikin Ashi.
Daily & Weekly Candle Blocks: View previous 4 + last + live candles.
Custom Colors: Bull, bear, and wick colors configurable.
Candle Positioning: Horizontal offsets, thickness, and gaps configurable.
Labels: Day numbers or week numbers displayed at Top, Bottom, or Absolute level.
Multi-Timeframe Visualization: See daily and weekly candles on lower timeframe charts.
Advantages:
✅ Helps visualize higher timeframe trends on lower timeframe charts.
✅ Easy to identify bullish and bearish candle patterns.
✅ Customizable for personal visual preference (colors, size, offsets).
✅ Labels allow quick recognition of days/weeks without cluttering the chart.
✅ Works on small timeframes (1-min, 5-min, 15-min) for intraday analysis.
Pros:
Clean and intuitive display of daily/weekly candles.
Can combine Normal and Heikin Ashi visualizations.
Helps confirm trend direction before taking trades.
Non-intrusive overlay: does not interfere with main chart candles.
Cons:
Static candle representation; does not replace real-time trading candles.
May be slightly heavy on chart performance if too many candles are drawn.
Horizontal offsets require manual adjustment for crowded charts.
How to Use on Small Timeframes:
Apply the indicator on a small timeframe chart (e.g., 5-min, 15-min).
Select Candle Type: Normal or Heikin Ashi.
Adjust Daily and Weekly offsets to prevent overlap with your main chart.
Choose colors for bullish, bearish candles, and wicks.
Use Label Position to show day/week numbers on top, bottom, or a fixed level.
Analyze the previous 4 + last + live candles for trend direction and potential entry/exit zones.
Tip: Combine this with other indicators (like RSI, MACD, or volume) on small timeframes for better intraday trading accuracy.
High Minus LowThis indicator is a simple yet powerful tool for technical analysis. It measures the range of each candlestick by calculating the difference between its high and low, providing a direct visualization of market volatility.
Key Features:
Volatility at a Glance: The plot's height in the separate panel directly corresponds to the candle's trading range, allowing you to easily spot periods of high or low volatility.
Customizable Color: Easily change the line color to match your chart's theme and personal preferences.
Actionable Insights: Use this indicator to confirm periods of market consolidation before a breakout or to gauge the strength of a trend based on the expansion of candle ranges.
LUCEO Monday Range V3LUCEO Monday Range 지표는 매주 월요일의 고점(Monday High), 저점(Monday Low), 균형값(Equilibrium)을 자동으로 표시해 주는 도구입니다.
ICT, 런던 브레이크아웃 등 월요일 범위를 기준으로 삼는 전략에 적합하며, 과거 데이터를 통해 이전 여러 주 월요일 범위를 시각화할 수 있습니다.
기능 요약:
월요일 고점(MH), 저점(ML), 균형가(EQ) 자동 표시
최대 52주까지 과거 월요일 범위 표시 가능
각 레벨 터치 시 알림 기능 지원
라벨/라인 색상, 스타일, 크기 사용자 지정 가능
주간/월간 차트에서는 자동으로 표시 비활성화
활용 예시:
월요일 고점을 상향 돌파하는 돌파 전략 분석
주간 유동성 중심 레벨인 EQ를 기준으로 방향성 판단
주요 반전 구간 탐지에 사용
---------------------------------------------------------------------------------------------------------
Monday Range (Lines) indicator automatically displays each Monday’s High (MH), Low (ML), and Equilibrium (EQ) levels on the chart.
It is useful for ICT-based setups, London breakout strategies, or any system that relies on weekly liquidity levels. The indicator supports visualization of up to 52 past Mondays.
Key Features:
Automatic plotting of Monday High, Low, and Equilibrium
Displays Monday ranges from multiple past weeks
Real-time alerts when price touches MH, ML, or EQ
Customizable line and label styles, colors, and sizes
Automatically disables display on weekly and monthly charts
Use Cases:
Validate London session breakout with Monday High breakout
Use EQ as a liquidity balance reference
Identify key reversal zones using weekly range extremes
ORB + Strat + Ripster Cloud DashboardDashboard so I can see better using the methods in the description
Arena TP Manager//@version=5
indicator("Arena TP Manager", overlay=true, max_labels_count=500)
// === INPUTS ===
entryPrice = input.float(0.0, "Entry Price", step=0.1)
stopLossPerc = input.float(5.0, "Stop Loss %", step=0.1)
tp1Perc = input.float(10.0, "TP1 %", step=0.1)
tp2Perc = input.float(20.0, "TP2 %", step=0.1)
tp3Perc = input.float(30.0, "TP3 %", step=0.1)
// === CALCULATIONS ===
stopLoss = entryPrice * (1 - stopLossPerc/100)
tp1 = entryPrice * (1 + tp1Perc/100)
tp2 = entryPrice * (1 + tp2Perc/100)
tp3 = entryPrice * (1 + tp3Perc/100)
// === PLOTTING ===
plot(entryPrice > 0 ? entryPrice : na, title="Entry", color=color.yellow, linewidth=2, style=plot.style_linebr)
plot(entryPrice > 0 ? stopLoss : na, title="Stop Loss", color=color.red, linewidth=2, style=plot.style_linebr)
plot(entryPrice > 0 ? tp1 : na, title="TP1", color=color.green, linewidth=2, style=plot.style_linebr)
plot(entryPrice > 0 ? tp2 : na, title="TP2", color=color.green, linewidth=2, style=plot.style_linebr)
plot(entryPrice > 0 ? tp3 : na, title="TP3", color=color.green, linewidth=2, style=plot.style_linebr)
// === LABELS ===
if (entryPrice > 0)
label.new(bar_index, entryPrice, "ENTRY: " + str.tostring(entryPrice), style=label.style_label_up, color=color.yellow, textcolor=color.black)
label.new(bar_index, stopLoss, "SL: " + str.tostring(stopLoss), style=label.style_label_down, color=color.red, textcolor=color.white)
label.new(bar_index, tp1, "TP1: " + str.tostring(tp1), style=label.style_label_up, color=color.green, textcolor=color.white)
label.new(bar_index, tp2, "TP2: " + str.tostring(tp2), style=label.style_label_up, color=color.green, textcolor=color.white)
label.new(bar_index, tp3, "TP3: " + str.tostring(tp3), style=label.style_label_up, color=color.green, textcolor=color.white)
Freedom MA移動平均線(MA)をマルチタイムに3本同時表示できるインジケーターです
3本とも時間足、MAの種類(SMA or EMA)を選択できます
また、パーフェクトオーダー&傾き一致を“両方or片方だけ”で設定可能です
Xのアカウントはこちら→@keito_trader
This indicator lets you display 3 Moving Averages (MA) simultaneously across multiple timeframes.
For each MA, you can freely choose the timeframe and type (SMA or EMA).
Additionally, you can set conditions for Perfect Order & Slope Alignment, either both together or individually.
Check out my X account → @keito_trader
Ham | Reversal Wick @ Trend End v6
“This indicator is a precise tool for identifying market reversal signals. It works across all timeframes, with 5-minute and 15-minute charts recommended for scalping.”
Intraday Scalping Trading System with AlertsThis is a unique script in the way it signals and alert on Volume Imbalances and VWAP based out on ATR. Many professional traders consider Volume Imbalance as a great indicator to identify stock movement.
I didn't find any indicator or all these option together so created one for us.
1. Fully controllable with toggle buttons.
2. Choose you best Trading directional signals with filters as per your sentiments -
2. EMA crossings
- EMA crossings + VWAP confirmation
- EMA crossings + SuperTrend Confirmation
3. Highest and Lowest volumes visually appeared
4. OHLCs Daily, Weekly and Monthly line options
5. First Candle Range - you can choose First candle range and it's time frame (default IST 9:15 but you can customize in pinescript as per your preferred Time Zone or just hide with toggle button.
Super Candle Indicator (Mark Alex Tucker)Going to be free for a limited time. I would like to know what everyone thinks of this. A candle indicator where the settings can be changed to find the right fit for the timeframe or the symbol you are trading. Please post any success you found with this.
Aggressive Phase + Daily Buy Visual Screener — v6Aggressive Phase + Daily Buy Visual Screener — v6 for bullish, neutral and bearish zone identification
TF + Ticker (vahab)Fixed Timeframe Display with Custom Colors & Size
This indicator displays the current chart timeframe in the bottom-right corner with clear formatting. Features include:
Automatic conversion of minute-based timeframes to hours (e.g., 60 → 1H, 240 → 4H).
Distinguishes seconds, minutes, hours, and daily/weekly/monthly timeframes.
Fully customizable colors for each type of timeframe.
Adjustable font size for readability.
Simple, stable, and lightweight overlay.
Perfect for traders who want an easy-to-read timeframe display without cluttering the chart.
MONETRA• “Ensures trades follow precise stop-loss, entry, and take-profit rules.”
• “Helps traders stick to predefined stop, entry, and partial profit targets with accuracy.”
Candlestick Entry SystemCandlestick Entry System
Green: (dark green)
– Strong and growing trend, bullish momentum.
– This is the most favorable scenario for long trading.
Red:
– Strong trend but downward momentum.
– Possible correction within an uptrend or the start of weakness.
Blue:
– Weak or sideways trend but upward momentum.
– Typically a rebound or recovery without clear trend strength.
Yellow:
– Weak trend and bearish momentum.
– Market in a range or bearish consolidation.
ICT First Presented FVG - Multi-SessionsFirst presented fvg in all sessions, all timeframes
Haven't fixed the volume imbalance feature yet, if you know how to let me know!
Merek Equal Highs and LowsEQH – Equal Highs Indicator
Description:
The EQH indicator detects Equal Highs on the chart. This occurs when price reaches the same high level two or more times without breaking it decisively.
Interpretation:
Liquidity zone: Equal highs are often seen as areas where liquidity (stop-loss clusters) is located.
Breakout potential: A break above this level often signals that liquidity is being taken before either a reversal or continuation of the trend.
Market structure: EQH highlights resistance areas that can serve as key decision points for traders.
Use cases:
Identifying potential stop-hunt zones
Spotting resistance levels
Anticipating liquidity grabs before reversals or trend continuations
EQL – Equal Lows Indicator
Description:
The EQL indicator detects Equal Lows on the chart. This occurs when price reaches the same low level two or more times without breaking lower.
Interpretation:
Liquidity zone: Equal lows are areas where liquidity (sell-side stops) tends to accumulate.
Breakout potential: A move below this level often indicates liquidity being swept before a possible reversal or continuation.
Market structure: EQL highlights support areas that can be critical for trade decisions.
Use cases:
Identifying sell-side liquidity zones
Spotting support levels
Recognizing possible stop-hunts before reversals or trend continuations
Indicador – Market In + TP +0.52% / SL -0.84% (USD) NEWindicator that is very comprehensive and detailed, working in real time for 1-, 2-, and 5-minute charts, marking on the chart and writing (Buy here) when it’s time to enter and (Sell here) when it’s time to exit the trade, always considering $0.02 above the entry price.
indicador no trading view de forma bem ampla e detalhada em tempo real para graficos de 1 / 2 e 5 mins apontando no grafico e escrevendo (Comprar aqui) quando for o momento de entrada e (Vender aqui) quando for o momento de sair da operação, sempre considerando 0,02 centavos acima do preço de entrada
Thiru TimeCyclesThiru TimeCycles Indicator: Overview and Features
Based on the provided Pine Script code (version 6), the "Thiru TimeCycles" indicator is a comprehensive, customizable tool designed for intraday traders, particularly those following Smart Money Concepts (SMC), ICT (Inner Circle Trader) methodologies, and time-based cycle analysis. It overlays session-based boxes, lines, and labels on charts to highlight key trading windows, ranges, and structural levels. The indicator is timezone-aware (default GMT-4, e.g., New York time) and focuses on killzones (high-volatility sessions), Zeussy-inspired 90-minute macro cycles, and 30-minute sub-cycles. It's optimized for timeframes below 4H, with automatic hiding on higher timeframes like 1D, 1W, 1M, or 1Y.
This indicator is ideal for forex, indices (e.g., Nasdaq futures like MNQ1!), stocks, and commodities, helping traders identify order flow, liquidity zones, and potential reversals within structured time cycles. It's built by Thiru Trades and includes educational elements like range tables and watermarks for a professional setup.
Core Purpose
Time Cycle Visualization: Breaks the trading day into repeatable cycles (e.g., 30-min, 90-min, and larger sessions) to anticipate market behavior, such as accumulation, manipulation, and distribution (AMD) phases.
Session Highlighting: Draws boxes and lines for major sessions (Asia, London, NY AM/PM, Lunch, Power Hour) to focus on high-probability "killzones."
Range and Pivot Analysis: Tracks highs/lows, midpoints, and ranges for each cycle/session, with optional alerts for breaks.
Customization Focus: Extensive inputs for colors, transparency, labels, and limits, making it adaptable for scalping, day trading, or swing setups.
Performance: Limits drawings to prevent chart clutter (e.g., max 500 boxes/lines/labels), with cutoff times to stop extensions (e.g., at 15:00).
Key Features
Here's a breakdown of the indicator's main components and functionalities, grouped by category:
Killzone Sessions (Standard Trading Windows):
Sessions Included: Asia (18:00-02:31), London (02:30-07:01), NY AM (07:00-11:31), Lunch (12:00-13:01), NY PM (11:30-16:01), Power Hour (15:00-16:01).
Visualization: Semi-transparent boxes (95% transparency default) with optional text labels (e.g., "London", "NY AM").
Pivots and Midpoints: Optional high/low pivot lines (solid style, extend until mitigated or cutoff), midpoints (dotted), and labels (e.g., "LO.H" for London High).
Alerts: Break alerts for pivots (e.g., "Broke London High").
Range Table: Optional table showing current and average ranges (over 5 sessions) for each killzone, positioned at top-right (customizable size/position).
Zeussy 90-Minute Macro Time Cycles:
Inspired By: Zeussy's time cycle theory (from X/Twitter), dividing sessions into 90-min phases starting at 02:30 NY time.
Cycles Included:
London: A (02:30-04:01, blue), M (04:00-05:31, red), D (05:30-07:01, green).
NY AM: A (07:00-08:31, blue), M (08:30-10:01, red), D (10:00-11:31, green).
NY PM/Lunch: A (11:30-13:01, blue), M (13:00-14:31, red), D (14:30-16:01, green).
Visualization: Boxes (90% transparency) with optional small labels ("London A", etc.) at the top of each box.
Extensions: High/low lines extend until broken or cutoff; optional equilibrium (EQ) levels.
Benefits: Helps identify AMD phases within larger sessions; focus on NY AM/PM for best results (Asia/London for global traders).
Zeussy 30-Minute Sub-Cycles:
Sub-Division: Further breaks 90-min cycles into 30-min segments (e.g., London A: A1 02:30-03:01, A2 03:00-03:31, A3 03:30-04:01).
All Sub-Cycles: 18 total (3 per macro cycle across London A/M/D, NY AM A/M/D, NY PM A/M/D).
Visualization: Optional boxes (90% transparency, hidden text by default) with small labels (e.g., "A1", "M1") at the bottom.
Customization: Separate show/hide toggle and label size (default "Small"); can divide further into 10-min if needed via presets.
Use Case: For finer granularity in scalping; shows order flow within macros (e.g., support at previous low after break).
Day Range Divider:
Vertical Separators: Dotted lines (custom color/width/style) at midnight (00:00) for each trading day (Mon-Fri only).
Day Labels: Monday-Friday labels (e.g., "Monday" with letter-spacing) positioned at the top of the chart (0.1% above high, updated dynamically).
Limits: Up to 5 days (customizable); hides on timeframes >=4H (1D, 1W, 1M, 1Y) to avoid clutter.
Offset: Labels above day-high by ticks (default 20); no weekend labels.
Fix Applied: Labels now consistently at top (using high * 1.001 for y-position); removed middle adjustments.
Day/Week/Month (DWM) Levels:
Opens, Highs/Lows, Separators: Lines for daily/weekly/monthly opens (dotted), previous highs/lows (solid), and vertical separators.
Unlimited Mode: Optional to show all history (otherwise limited by max_days).
Alerts: For high/low breaks (e.g., "Hit PDH").
Labels: Optional "D.O", "PWH" (previous week high), etc., with right-side extension.
Opening Prices and Vertical Timestamps:
Custom Opens: Up to 8 user-defined session opens (e.g., DC Open 18:00, 00:00, 09:30) with horizontal lines (dotted).
Vertical Lines: Up to 4 timestamps (e.g., 17:00, 08:00) with extend-both.
Unlimited: Optional to ignore drawing limits.
Range and Statistics Table:
Display: Top-right table (custom position/size) showing current range, average range (over 5 sessions), and min days stored for all enabled killzones/cycles.
Color-Coded: Rows highlight active sessions (e.g., Asia row in purple if active).
Toggle: Show/hide averages; updates on last bar.
Watermark and UI Enhancements:
Custom Watermark: Title ("ㄒ卄丨尺ㄩ"), subtitle ("PATIENCE | COURAGE | WISDOM"), symbol info (ticker + timeframe + date), positioned top-center/bottom-left.
Customization: Colors, sizes (tiny to huge), alignment (left/center/right), transparency.
Settings Groups: Organized into Settings, Killzones, Zeussy 90Min, Zeussy 30Min, Day Range Divider, Watermark, Pivots, Range, DWM, Opens, Vertical.
Performance and Limits:
Timeframe Limit: Hides drawings on >=240min (4H); Day Range hides on >=4H.
Drawing Limits: Max 1-5 days per type (boxes, lines, labels); auto-deletes old ones.
Cutoff: Optional stop at 15:00-15:01 for pivots/opens.
Alerts: Pivot breaks, high/low hits; freq once per bar.
Transparency: Separate for boxes (90-95%) and text (20-75%).
FVG TrackerThis indicator automatically detects and tracks Fair Value Gaps (FVGs) on your chart, helping you quickly spot imbalances in price action.
Key Features:
📍 Identifies FVGs larger than 3 contracts
📐 Draws each valid FVG as a rectangle directly on the chart
⏳ Removes FVGs once they are fully filled
🔟 Keeps track of only the 10 most recent FVGs for clarity
⚡ Lightweight and optimized for real-time charting
This tool is ideal for traders who use FVGs as part of Smart Money Concepts (SMC) or imbalance-based strategies. By visually highlighting only meaningful gaps and clearing them once filled, it ensures a clean and actionable charting experience.
No Wick Candle HighlighterHighlights current timeframe bullish candles without a wick low or bearish candles without a wick high.
HEIKIN ASHI - MyOkaneAquiDemonstrates hekin ashi to smooth the chart, removing market noise and showing trend line.