Metatron Lines (Highs & Lows Geometry)Metatron Lines
Hey TradingView community! 👋
I wanted to share something I've been working on that might help you see market structure from a different angle. This indicator connects pivot highs and lows using geometric patterns, creating what I call "Metatron Lines."
What it does (simply put):
- Finds significant highs and lows on your chart
- Draws lines connecting these points to reveal hidden geometric relationships
- Shows you the underlying structure that price tends to respect
Why I built this:
I noticed that markets often move in patterns that aren't immediately obvious. Sometimes the most important levels aren't the obvious support and resistance lines, but the intersections and angles created by connecting multiple pivot points. This tool helps visualize those relationships.
How it might help you:
- Pattern Recognition : Spot geometric formations that traditional analysis might miss
- Support/Resistance : See where multiple geometric lines converge to create strong levels
- Market Structure : Better understand how price flows and where it might find obstacles
- Confluence Areas : Identify zones where multiple geometric elements align
A few honest thoughts:
This isn't a magic bullet or a guaranteed profit maker (nothing is!). It's simply another lens through which to view price action. Some traders find geometric analysis helpful, others prefer different approaches - and that's perfectly fine.
I've tried to make it customizable so you can adjust it to fit your trading style and timeframe. The default settings work well for most instruments, but feel free to experiment.
Settings you can adjust:
- Pivot detection sensitivity
- Number of connection points
- Line colors and styles
- Which connections to show (highs, lows, or both)
I hope some of you find this useful! I'm always learning from this community, so if you have suggestions for improvements or different ways to use it, I'd love to hear them.
Trade safe and trust your process! 📈
---
This indicator is provided as-is for educational and analysis purposes. Please practice proper risk management and never risk more than you can afford to lose.
Candlestick analysis
Pi AIPi AI 15分鐘K線圖交易
1st設定10分鐘
2st設定15分鐘
MA source設定指數移動
Use ADX and DMI 打勾取消
可以搭配布林帶使用
交易建議一定要設定
止盈設定25%
止損設定9%
Pi AI 15-minute candlestick chart trading
1st set to 10 minutes
2nd set to 15 minutes
MA source set to exponential movement
Use ADX and DMI check to cancel
Can be used with Bollinger Bands
Trading suggestions must be set
Take profit set to 25%
Stop loss set to 9%
Range Box (Manual Bar Index)Here’s a clear and public-facing description of your **Range Box with Manual Bar Index** tool for TradingView, written for traders of all experience levels:
---
### 📦 Range Box (with Manual Bar Selection)
**Description:**
The **Range Box with Manual Bar Index** is a visual tool designed for traders who want to **analyze historical price action** with precision. Rather than relying on live, real-time data only, this version allows you to **manually select any past bar** on your chart to display detailed range metrics for that specific candle.
---
### 🔍 Features:
* **Manual Bar Selection:** Input the bar index (distance from the most recent candle) to inspect.
* **Range Metrics Displayed:**
* **Range:** High - Low of the selected bar
* **Average Range:** Calculated over a customizable lookback period
* **ATR Multiples:** Shows 1.5× and 2× ATR values for volatility comparison
* **Customizable Positioning:** Text box can be offset on the X (bars) and Y (price) axis for visibility
* **Color-Coded Alerts:** Highlights if the range exceeds normal behavior based on ATR multipliers
---
### 🛠 Use Cases:
* Identify **unusual volatility** in prior bars
* Study historical **breakout ranges** or compression candles
* Train your eye to spot **institutional-sized bars** versus average price action
* Prep screenshots for analysis, reports, or educational posts
---
### 📌 How to Use:
1. Add the script to your chart
2. Set the **"Bar Index"** to the number of bars back you want to analyze (e.g., `0` = current, `1` = one bar ago)
3. The script will draw a **box around the candle**, and display key range info nearby
---
Would you like a copy-and-paste version of this for TradingView's Public Library description or script header?
LUCY Multi-Timeframe Bias Checker//@version=5
indicator("LUCY Multi-Timeframe Bias Checker", overlay=true)
// === INPUTS === //
emaShort = input.int(8, title="Short EMA")
emaLong = input.int(34, title="Long EMA")
// === CURRENT TIMEFRAME === //
emaShort_curr = ta.ema(close, emaShort)
emaLong_curr = ta.ema(close, emaLong)
bias_curr = emaShort_curr > emaLong_curr ? "Bullish" : "Bearish"
// === HIGHER TIMEFRAMES === //
emaShort_5m = request.security(syminfo.tickerid, "5", ta.ema(close, emaShort))
emaLong_5m = request.security(syminfo.tickerid, "5", ta.ema(close, emaLong))
bias_5m = emaShort_5m > emaLong_5m ? "Bullish" : "Bearish"
emaShort_15m = request.security(syminfo.tickerid, "15", ta.ema(close, emaShort))
emaLong_15m = request.security(syminfo.tickerid, "15", ta.ema(close, emaLong))
bias_15m = emaShort_15m > emaLong_15m ? "Bullish" : "Bearish"
// === PANEL DISPLAY === //
var table biasTable = table.new(position.top_right, 2, 4, border_width=1)
if bar_index % 5 == 0
table.cell(biasTable, 0, 0, "Timeframe", bgcolor=color.black, text_color=color.white)
table.cell(biasTable, 1, 0, "Bias", bgcolor=color.black, text_color=color.white)
table.cell(biasTable, 0, 1, "1-Min", bgcolor=color.gray)
table.cell(biasTable, 1, 1, bias_curr, bgcolor=bias_curr == "Bullish" ? color.green : color.red, text_color=color.white)
table.cell(biasTable, 0, 2, "5-Min", bgcolor=color.gray)
table.cell(biasTable, 1, 2, bias_5m, bgcolor=bias_5m == "Bullish" ? color.green : color.red, text_color=color.white)
table.cell(biasTable, 0, 3, "15-Min", bgcolor=color.gray)
table.cell(biasTable, 1, 3, bias_15m, bgcolor=bias_15m == "Bullish" ? color.green : color.red, text_color=color.white)
LUCY Trend Analysis - MA, EMA, MACDBULL and BEAR CHRONICLES BY LUCIFER is a precision-crafted trend analysis tool that visually narrates the ongoing battle between bulls and bears using a fusion of classic indicators:
🔍 Core Logic:
This script detects trend direction by combining:
8 EMA vs 34 EMA – momentum crossover.
50 MA & 200 MA – broader trend context.
MACD Line vs Signal Line – momentum confirmation.
✅ Trend Conditions:
🟢 Bullish Trend:
8 EMA > 34 EMA
Price > 50 MA & 200 MA
MACD Line > Signal Line
🔴 Bearish Trend:
8 EMA < 34 EMA
Price < 50 MA & 200 MA
MACD Line < Signal Line
⚪ Sideways: When neither condition is fully met.
🎨 Visuals:
Trend labels: "Bullish", "Bearish", "Sideways"
Color-coded moving averages:
8 EMA (orange), 34 EMA (blue)
50 MA (green), 200 MA (red)
Background shading for clear visual cue:
Light green = Bullish
Light red = Bearish
🔔 Built-in Alerts:
Get notified instantly when a bullish, bearish, or sideways condition is triggered.
⚙️ Best For:
Swing Traders
Trend Followers
Strategy Builders are looking for multi-confirmation setups
🔥 Join the Chronicles. Ride with the bulls, run from the bears, or wait out the chaos — all with Lucifer's guidance.
Customizable Range Box📦 Customizable Range Box (with Dynamic Chart Placement)
Description:
The Customizable Range Box is a versatile tool for visualizing candle range dynamics directly on the chart, now positioned at the top of the visible price area for better readability and reduced clutter.
🔍 Features:
📊 Real-Time Range Analysis:
Displays the current candle’s range
Compares to the average range over a set lookback period
Shows ATR, 1.5× ATR, and 2× ATR thresholds for volatility context
🎯 Dynamic Chart-Top Label Positioning:
Automatically floats the label above the chart’s visible price range
Keeps the label unobstructed regardless of zoom or bar size
🎨 Customizable Appearance:
Toggle label position: Top, Middle, or Bottom of candle (if desired)
Choose left/right label alignment
Set label text size: Small → Huge
Customize text color and background box color
🛠️ Ideal Use Cases:
Spotting volatility spikes or compressed bars
Comparing candles to historical range behavior
Identifying bars likely to trigger breakouts or traps
Enhancing discretionary entries with quantified context
Breakout Zones with Candle Color and Background Breakout Zones with Candle Color and Background
Version: 1.0
Script Type: Overlay
Tags: support and resistance, breakout zones, candle coloring, trend detection, visual indicator, price action
📘 Overview
This indicator highlights key breakout zones using dynamic support and resistance levels, adding clear background shading and candle coloring to help traders visually track breakout and consolidation behavior.
Whether you're trading ranges, breakouts, or just want clearer price context, this tool simplifies decision-making by showing exactly where price is in relation to recent market structure.
🔍 Features
📏 Auto Support & Resistance
Based on a user-defined lookback period to dynamically track key S/R levels.
🧱 Customizable Zone Padding
Adds a buffer above and below the calculated S/R levels to define a breakout "zone."
🌈 Visual Highlights
Green Background: Bullish breakout above resistance
Red Background: Bearish breakdown below support
Yellow Candles: Price is inside the defined S/R range (indecision or buildup)
📈 Clean Chart Levels
Plots resistance and support lines for clear visual references
🧠 How to Use It
Identify Consolidation: Yellow candles signal the price is inside the zone—watch for potential buildup.
Breakout Alerts: When the background turns green or red, a breakout or breakdown is underway.
Confirm with Volume or Trend Tools: Use this with volume spikes, moving averages, or MACD for confirmation.
🛠️ Settings
Lookback Bars: Number of bars to calculate support and resistance.
Zone Padding% %: Adds buffer to make breakout zones more realistic.
⚠️ Disclaimer
This tool is for educational and analytical purposes. Breakouts may lead to false signals without proper confirmation. Always use risk management and do your own research before trading.
Stop Loss Only - Full WidthThis minimalist Pine Script indicator is designed to visually plot stop loss levels directly on the chart, extending fully across the screen for maximum clarity. It is ideal for traders focused on disciplined risk management without the clutter of entry signals or profit targets.
🔧 Core Features:
Stop Loss Only Focus: Displays only the stop loss level—no entries or take profits.
Full Width Lines: Uses extend=both to draw horizontal stop loss lines that span the entire chart width.
Auto Detection of Entry Conditions (for simulation/demo purposes):
Long Entry: Triggered when the current close is greater than the previous close.
Short Entry: Triggered when the current close is less than the previous close.
Adjustable Padding: Customizable stop loss buffer (padding) in percent from the entry price.
The default is 0.5% below for long trades, 0.5% above for short trades.
Dynamic Line Update: The stop loss line updates on new qualifying signals and removes the old one for a clean look.
🖥️ Visuals:
Red Line for Long Trade Stop Loss.
Orange Line for Short Trade Stop Loss.
Clean, unobtrusive design suitable for use with other indicators or price action strategies.🔮 BULL and BEAR CHRONICLES
by Lucifer
Version: 1.0
Script Type: Overlay
Tags: bullish, bearish, trend detection, price action, market cycles, Lucifer, visual signals
📖 Introduction
BULL and BEAR CHRONICLES by Lucifer is not just another indicator—it’s a visual narrative of market power struggles between buyers and sellers. This script aims to chronicle key turning points and trend biases, helping traders align with the dominant market force: the bull or the bear.
⚔️ Core Concept
Markets move in cycles, but often leave subtle clues before shifting direction. This tool is designed to visually capture these transitions, whether temporary momentum shifts or full trend reversals.
🧠 How It Works
Depending on your implementation (please confirm or share your Pine Script logic), here's a placeholder version:
🟢 Bull Signal: Detected when price action confirms upward momentum or breaks above key levels.
🔴 Bear Signal: Triggered on downward pressure or breakdowns below support zones.
💡 Visual Cues: May include colored backgrounds, labels, or markers to chronicle bullish and bearish phases.
(Note: Please provide the script logic or signals you'd like to describe specifically if you'd like this tailored.)
🧰 Customization Options
Modify sensitivity to price swings
Integrate with EMAs, MACD, or Volume for layered signals
Optional: Add alert conditions for significant trend transitions
🧾 Usage Tips
Use on higher timeframes (4H, Daily) for clearer market structure analysis
Combine with support/resistance or breakout strategies
Ideal for swing traders and trend followers
⚠️ Disclaimer
This script is for educational and informational purposes only. Always use proper risk management and do your own research before trading. Lucifer (the author) is not responsible for financial decisions made based on this indicator.
Shark Candles Indicator | TCMaster 📌 Description:
The Shark Candles Indicator is a price-action and volume-based tool designed to detect high-impact candles — known as "Shark Candles" — that suggest potential institutional activity or sudden volatility spikes.
It identifies candles on a higher timeframe (HTF) that exhibit:
Unusually high volume,
A strong body relative to the candle’s wicks,
A large price range compared to recent history.
Once such a candle is detected, the "Shark Zone" is created and drawn as a high-probability price area where future reactions (support or resistance) may occur. This zone remains active for a set number of bars or until another Shark Candle is detected.
⚙️ How It Works:
Shark Candle Detection Criteria:
Volume Spike: Volume is greater than the highest volume of the previous N bars.
Large Body: The candle's body is significantly larger than its combined wicks.
Range Expansion: The candle’s range exceeds the average range over the past N bars.
Shark Zone Formation:
The high and low of the Shark Candle are used to define the zone.
This zone remains until a new Shark Candle appears or the configured reset period expires.
The zone is shaded in teal, providing a visual cue for potential trading interest.
Shark Icon Label:
When a Shark Candle is detected, a 🦈 icon is displayed above the candle for easy spotting.
🔧 User Inputs:
Analysis Timeframe: Choose the higher timeframe used for detecting Shark Candles (default: 15 minutes).
Volume Spike Lookback: Number of candles to compare volume against (default: 20).
Body/Wick Ratio: Minimum ratio between the candle body and total wick size (default: 1.5).
Range Multiplier vs Avg Range: Threshold multiplier to qualify a candle's size compared to the recent average range (default: 1.5).
Reset Shark Zone After N Bars: Maximum number of bars the zone remains active without a new Shark Candle (default: 100).
Show Shark Zone: Toggle zone display on/off.
📈 Visual Elements:
Shark Zone:
Upper boundary (green line)
Lower boundary (red line)
Teal shaded background between zone boundaries
🦈 Label above each Shark Candle for quick visual recognition
🛠️ Usage Tips:
Use Shark Zones as dynamic support/resistance areas.
Combine with volume profile, breakout strategies, or candlestick patterns.
Useful in all markets including stocks, crypto, and forex.
Best suited for scalpers and swing traders looking for institutional footprints.
⚠️ Disclaimer:
This indicator is for educational and informational purposes only. It does not constitute financial advice or a guarantee of future performance. Always do your own research and apply proper risk management.
RSI Confluence Indicator MTF | TCMaster📌 Description:
The RSI Confluence Indicator MTF is a multi-timeframe momentum analysis tool designed to identify strong overbought and oversold conditions across multiple timeframes using the Relative Strength Index (RSI). This indicator helps traders detect high-probability reversal zones by highlighting when RSI values align across 3 customizable timeframes.
By confirming RSI signals from multiple perspectives, the indicator aims to improve signal reliability and reduce false entries, especially in fast-moving markets.
⚙️ How It Works:
RSI Calculations are applied to three separate user-defined timeframes.
A Buy Signal is triggered when RSI is below the oversold level (default 30) on all selected timeframes.
A Sell Signal is triggered when RSI is above the overbought level (default 70) on all selected timeframes.
When a signal is detected, a colored background appears on the chart (green for buy, red for sell), making it easy to visualize confluence zones.
🔧 Inputs:
RSI Length: Period for RSI calculation (default: 14).
Overbought Level: Upper threshold for RSI (default: 70).
Oversold Level: Lower threshold for RSI (default: 30).
Timeframe 1: First timeframe for RSI (default: 5 minutes).
Timeframe 2: Second timeframe for RSI (default: 15 minutes).
Timeframe 3: Third timeframe for RSI (default: 30 minutes).
📈 Visuals:
Plots RSI values for each timeframe in distinct colors (green, orange, red).
Displays horizontal lines at the overbought and oversold levels for quick reference.
Background color changes based on signal confluence:
🟩 Green: Buy signal (all RSIs below oversold)
🟥 Red: Sell signal (all RSIs above overbought)
🛠️ Usage Tips:
Combine with price action or support/resistance zones to refine entries.
Use shorter timeframes for scalping and intraday strategies.
Use higher timeframes for swing or positional trades.
⚠️ Disclaimer:
This tool is intended for educational and informational purposes only. Trading involves risk, and past performance does not guarantee future results. Always use proper risk management.
Price Action Patterns: Engulfing + Pin Bar📘 Description:
This script highlights powerful price action candlestick patterns to help traders make informed decisions without using indicators.
It detects:
✅ Bullish Engulfing: A strong reversal pattern indicating buyers have taken control.
✅ Bearish Engulfing: A potential signal of bearish momentum after bullish candles.
✅ Pin Bars:
Hammer (Bullish Pin Bar): Long lower wick signals rejection of lower prices.
Shooting Star (Bearish Pin Bar): Long upper wick shows rejection of higher prices.
📈 How to Use It:
Look for these patterns near support/resistance zones or trendlines
Combine with your strategy (SMA, VWAP, volume, etc.)
Use confirmation like volume spike or next candle direction
🎯 Visual Markers:
🟢 Bullish Engulfing → “Bull Engulf” label below candle
🔴 Bearish Engulfing → “Bear Engulf” label above candle
🔵 Bullish Pin Bar (Hammer) → Blue triangle below
🟠 Bearish Pin Bar (Shooting Star) → Orange triangle above
SMA 200 close
The simple moving average is used to forecast demand. Therefore, demand data from previous periods can be used to estimate the next period using the simple moving average. We'll see how this is done below.
Time-CheckThis indicator highlights important time-based zones on the chart based on the Berlin time zone:
✅ Impulse Zones (Green Background): At every full hour (minute == 0), the market often shows strong directional movement. These periods are shaded in translucent green.
🔁 Reversal Zones (Orange Background): At 15, 30, and 45 minutes past each hour, price reversals are more likely. These are marked with translucent orange backgrounds.
SMA 50 closeThe simple moving average is used to forecast demand. Therefore, demand data from previous periods can be used to estimate the next period using the simple moving average. We'll see how this is done below.
Gold Scalping Indicator MTF | TCMaster🧠 Overview:
The Scalping Gold Indicator is a multi-condition entry signal tool designed for scalping, especially effective on gold (XAUUSD) and other volatile instruments. It identifies high-probability reversal points based on a combination of:
Keltner Channel touches
RSI reversal detection
Classic candlestick reversal patterns
Volume spike confirmation
This confluence-based approach aims to help traders capture short-term reversals and scalping opportunities with improved accuracy.
🔍 Core Logic:
✅ Buy Signal triggers when:
Price touches or drops below the Keltner Channel lower band
RSI (< 30) starts to reverse upward
A bullish candlestick pattern forms (e.g., Bullish Engulfing, Morning Star, Hammer)
Volume spikes above the highest volume of the last N bars
❌ Sell Signal triggers when:
Price touches or exceeds the Keltner Channel upper band
RSI (> 70) starts to drop downward
A bearish candlestick pattern forms (e.g., Bearish Engulfing, Evening Star, Hanging Man)
Volume spikes above the highest volume of the last N bars
📈 Recommended Timeframes:
Best suited for lower timeframes (e.g. 1m, 5m, 15m)
Automatically adapts internal settings based on chart timeframe
🛠️ How to Use:
Add the indicator to your chart
Use the green triangle for potential buy entries
Use the red triangle for potential sell entries
Combine with your stop-loss/take-profit strategy (e.g., recent swing high/low, or fixed pips)
Optional: Combine with trend filters (e.g., moving averages, higher timeframe bias) for added confirmation
🔔 Pro Tip:
To enhance signal reliability, look for setups where all conditions align within a few candles, especially during periods of volatility (e.g., news releases, session opens).
📜 Disclaimer (for community compliance):
This script is for educational and informational purposes only. It is not financial advice. Always do your own research and use proper risk management.
Overlapping FVG - [Fandesoft Trading Academy]🧠 Overview
This script plots Higher Timeframe Fair Value Gaps (FVGs) with full visibility and precise placement on lower timeframe charts. Each timeframe (30s–15m) has its own independent toggle, custom label, and box styling, giving traders unmatched control and clarity across multiple market structures.
----------------------------------------------
🎯 What It Does
✅ Identifies Fair Value Gaps using a 3-candle logic (candle 1 high vs candle 3 low, and vice versa).
✅ Plots HTF FVG boxes accurately aligned in LTF charts for clearer intraday decision making.
✅ Custom timeframes: 30s to 15m — individually toggleable.
✅ Set custom labels per timeframe for easier reference.
✅ Full visual customization:
Border color
Bullish/Bearish box opacity
Label font size and color
----------------------------------------------
✨ Why It’s Unique
🔁 Multi-timeframe plotting from as low as 30 seconds to 15 minutes — all at once.
🖼️ Boxes plotted with fixed pixel-perfect width even on lower timeframes.
🎨 All visual aspects are fully configurable from the UI: labels, colors, borders.
🧩 Modular input system: you can turn off individual timeframes without code edits.
🧠 Smart barstate.isconfirmed usage ensures no repainting and stable historical plotting.
----------------------------------------------
⚙️ How It Works
The script requests data for each selected timeframe using request.security.
For every confirmed HTF bar:
It checks for an FVG based on simple imbalance logic:
Bullish FVG: low >= high
Bearish FVG: low >= high
If a valid gap exists:
A box is drawn using box.new() between candle 1 and candle 3 with matching label and style.
Timeframe toggles ensure efficient performance (below the request.security limit of 40).
----------------------------------------------
📈 Use Cases
Scalpers & Intraday Traders: Use 30s–15m HTF levels for precise microstructure guidance.
ICT Traders: Visualize displacement and inefficiency zones aligned with higher timeframe context.
FVG Stacking: Add this layer on top of FVG confluences.
----------------------------------------------
🔐 This script is invite-only. Contact the author for access.
📩 Perfect for serious traders, algorithmic strategists looking to visualize multi-timeframe imbalances efficiently.
6 gün önce
Sürüm Notları
🧠 Overview
This script plots Higher Timeframe Fair Value Gaps (FVGs) with full visibility and precise placement on lower timeframe charts. Each timeframe (30s–15m) has its own independent toggle, custom label, and box styling, giving traders unmatched control and clarity across multiple market structures.
----------------------------------------------
🎯 What It Does
✅ Identifies Fair Value Gaps using a 3-candle logic (candle 1 high vs candle 3 low, and vice versa).
✅ Plots HTF FVG boxes accurately aligned in LTF charts for clearer intraday decision making.
✅ Custom timeframes: 30s to 15m — individually toggleable.
✅ Set custom labels per timeframe for easier reference.
✅ Full visual customization:
Border color
Bullish/Bearish box opacity
Label font size and color
----------------------------------------------
✨ Why It’s Unique
🔁 Multi-timeframe plotting from as low as 30 seconds to 15 minutes — all at once.
🖼️ Boxes plotted with fixed pixel-perfect width even on lower timeframes.
🎨 All visual aspects are fully configurable from the UI: labels, colors, borders.
🧩 Modular input system: you can turn off individual timeframes without code edits.
🧠 Smart barstate.isconfirmed usage ensures no repainting and stable historical plotting.
----------------------------------------------
⚙️ How It Works
The script requests data for each selected timeframe using request.security.
For every confirmed HTF bar:
It checks for an FVG based on simple imbalance logic:
Bullish FVG: low >= high
Bearish FVG: low >= high
If a valid gap exists:
A box is drawn using box.new() between candle 1 and candle 3 with matching label and style.
Timeframe toggles ensure efficient performance (below the request.security limit of 40).
----------------------------------------------
📈 Use Cases
Scalpers & Intraday Traders: Use 30s–15m HTF levels for precise microstructure guidance.
ICT Traders: Visualize displacement and inefficiency zones aligned with higher timeframe context.
FVG Stacking: Add this layer on top of FVG confluences.
----------------------------------------------
🔐 This script is invite-only. Contact the author for access.
📩 Perfect for serious traders, algorithmic strategists looking to visualize multi-timeframe imbalances efficiently.
Sakura | Silver BulletTelegram: t.me
💠 Sakura | Silver Bullet is a powerful tool built for traders using Smart Money Concepts (SMC) and the Inner Circle Trader (ICT) methodology.
🕒 It automatically identifies the three key Silver Bullet sessions (New York time):
03:00–04:00 AM — London Killzone
10:00–11:00 AM — New York AM session
02:00–03:00 PM — New York PM session
📦 During these sessions, the indicator detects and visualizes Fair Value Gaps (FVG):
Highlights bullish and bearish FVGs clearly
Supports advanced filtering modes: All FVG, Directional, Strict, Super-Strict
Optional zone extension (stretch active FVGs dynamically)
📈 Additionally, the indicator:
Detects MSS (Market Structure Shifts) and current trend direction
Automatically plots potential support/resistance levels using recent swing highs/lows
Works across multiple asset classes: indices, forex, futures, crypto
⚠️ Recommended timeframe: 15 minutes or lower (M15 and below)
Mera Mera - Ying Yang & Inside, OutsideMera Mera
It is a structure that traps the previous candle formed in the same direction.
When the structure is in the Buy direction, a blue dot is formed below it, when it is in the Sell direction, a red dot is formed above it.
Sell Mera Mera, Buy Mera Mera alerts are available.
Ying Yang
It is a structure that traps the next candle formed in the same process.
When the structure is in Buy transactions, a blue triangle is formed below it, when it is in Sell transactions, a red triangle is formed below it.
Ying Yang Sell, Ying Yang Buy alerts are available.
The calculation of inner bar and outer bar values is different.
After this formation, the candle fractal formations are followed and the transaction is searched.
The necessary visuals are in x
- Sorry if I have any mistakes
x.com
Copyright © 2025 @SimbiyotikTrader ;)
RI BBBDESCRIPTION:
RI BBB This is a price expansion volatility metric - it tracks sudden increases in intrabar movement, often signaling breakouts or high-momentum conditions . It features risk management based on ATR , with support for trailing take-profit and stop-loss levels, and includes an option to override with fixed TP/SL percentages for tighter control.
KEY DIFFERENTIATORS:
- Additionally to the ATR-based trailing TP/SL you can override it with the fixed percentage based TP/SL.
BENEFIT:
- Enhanced Risk Control with Directional Fixed TP/SL Overrides
CREDITS:
This strategy is based on the original work by – “IU BBB(Big Body Bar) Strategy”. Adapted and extended with fixed TP/SL logic.
Auto BOS + CHoCH (Fixed Version)🔹 1. Automatically detects:
BOS (Break of Structure): A continuation of trend
CHoCH (Change of Character): A potential trend reversal
🔹 2. Plots lines and labels:
🔰 Green lines for BOS
🔴 Red lines for CHoCH
Labels appear directly on the chart at the price level where the event occurs
🔹 3. Sets up alerts:
You get notified when either a BOS or CHoCH is detected
🔍 How It Works Internally
🔹 1. Swing Structure Detection
It looks for:
A Swing High: Highest high in a certain number of candles (default: 5)
A Swing Low: Lowest low in a certain number of candles
This mimics how Smart Money traders identify structural turning points.
pinescript
Copy
Edit
isSwingHigh = high == ta.highest(high, length * 2 + 1)
isSwingLow = low == ta.lowest(low, length * 2 + 1)
🔹 2. BOS Logic
If a new candle closes above the last swing high → BOS Up
If it closes below the last swing low → BOS Down
This confirms trend continuation.
🔹 3. CHoCH Logic
If the market makes a lower low after a bullish trend → CHoCH Down
If the market makes a higher high after a bearish trend → CHoCH Up
This suggests a trend reversal or start of a deeper retracement.
🔹 4. Visual Markers
When one of these events is detected, the script draws:
Event Line Label
BOS ↑ Green Line “BOS ↑”
BOS ↓ Green Line “BOS ↓”
CHoCH ↑ Red Line “CHoCH ↑”
CHoCH ↓ Red Line “CHoCH ↓”
You can toggle line and label visibility in the script settings.
🔹 5. Alerts
The script includes alertcondition() logic, so you can create alerts:
For any BOS (up/down)
For any CHoCH (up/down)
Just go to the TradingView alert menu, and choose your condition.
📊 Use Cases in Trading
Goal How This Script Helps
Confirm trend Use BOS to confirm continuation of direction
Spot reversals early Use CHoCH to detect when the market shifts character
Entry/exit confirmation Trade after CHoCH → OB → FVG confluence
Build trade bias Detect structure shift on higher timeframes
✅ Best Practices
Use on 5m, 15m, 1H depending on your style
Combine with:
Order Blocks
Fair Value Gaps
Liquidity sweeps
Higher timeframe CHoCH = more reliable
Wait for candle close past the level for confirmation
Line at Custom Price📌 Script Title: Line at Custom Price
📝 Description:
Draw a clean and customizable horizontal line at any price level you define.
This simple but effective indicator is perfect for marking psychological levels, round numbers (e.g., 100k BTC), support/resistance zones, or target areas. Use it to visually track key price levels without cluttering your chart.
⸻
🔧 Features:
• 🔹 Customizable input for any price level (default: 103,000)
• 🔹 Bold, dashed red line overlay for maximum visibility
• 🔹 Works on all timeframes and assets
• 🔹 Ideal for marking breakout zones, profit targets, or alert areas
⸻
💡 Usage Ideas:
• Set a key resistance level like 103000 on BTC
• Track liquidation zones or Fibonacci targets
• Combine with other indicators like Moving Averages or VWAP