HRC TrendicatorDotted Line of HRC Trendicator used to track trend and slope trend.... trade long above, and short below
Penunjuk dan strategi
Canadian Elections & PM TimelineThis script displays major Canadian federal election years along with the names and party affiliations of elected Prime Ministers, directly on your price chart. It provides a quick visual reference for key political events that may have had market impact, helping traders correlate price movements with changes in leadership.
Multi-Timeframe EMAs with PivotThis is a well-designed multi-timeframe EMA indicator with pivot points for TradingView. Here's a detailed analysis:
Core Components
Multi-Timeframe EMAs
Tracks 5, 20, and 48-period EMAs across 4 timeframes (1m, 5m, 15m, 1h)
Uses request.security() to fetch higher timeframe data accurately
Each EMA is toggleable via input settings
Pivot Point System
Calculates classic pivot point: (Prev High + Prev Low + Prev Close)/3
Flexible timeframe selection (default: Daily)
Displays as a yellow line with labeled value
Visual Design
Color-coded EMAs for easy identification
Clean plotting with na values for disabled EMAs
Dynamic pivot line that auto-centers on last bar
Weekly Levels Prep (Smart Weekly Candle)This script draws key weekly levels based on the most recent completed weekly candle (Monday–Friday). It automatically calculates and plots:
✅ Weekly High & Low
✅ Midpoint (50% level)
✅ Extension levels above and below
All levels are dynamically updated every new week and are visually marked with clean color-coded horizontal lines. Price values are shown near the price axis for clear visibility across all timeframes.
Great for:
Weekly preparation
Swing trading setups
Mean reversion and range breakouts
🔄 Works on all timeframes
🔍 Lightweight and non-intrusive
Built by a trader, for traders. 💼📈
Trend Indicator with ArrowsTrend Indicator with arrows is a NoBrainer indicator to see the trend clearly.
UpTrend is defined as a candle closing above previous high. I
DownTrend is defined as a candle closing below previous low
A consolidation is defined as a candle closing inside previous candle high low.
UpTrend - Indicated with a green arrow below the candle with the current indicator.
DownTrend - ndicated with a red arrow above the candle with the current indicator.
So How to use this Indicator?
Identify zones of consolidation where the indicator doesn't show any arrows. Upon shift from consolidation to UpTrend or DownTrend take a entry. This is one way.
Second and most useful way is wait for Support or resistant hit.
If it's a support. Upon support hit wait for Consolidation, DownTrend and then UpTrend/(Consolidation again with uptrend) for long entry.
If its a resistance. Upon resistance hit wait for Consolidation, Uptrend and then DownTrend/(Consolidation again with DownTrend) for short Entry.
MA Crossover Buy/Sell Signals//@version=5
indicator("MA Crossover Buy/Sell Signals", overlay=true)
// Input for moving average lengths
fastLength = input.int(9, title="Fast MA Length", minval=1)
slowLength = input.int(21, title="Slow MA Length", minval=1)
// Calculate moving averages
fastMA = ta.sma(close, fastLength)
slowMA = ta.sma(close, slowLength)
// Define buy and sell conditions
buySignal = ta.crossover(fastMA, slowMA)
sellSignal = ta.crossunder(fastMA, slowMA)
// Plot moving averages on the chart
plot(fastMA, color=color.blue, title="Fast MA")
plot(slowMA, color=color.red, title="Slow MA")
// Plot buy and sell signals
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
Vertical Lines Between Two Dates with BackgroundHere You can choose a range between any dates,
.
.
.
.
.
SMC Structures and FVGThe provided Pine Script code is an indicator for trading platforms, specifically designed to identify and visualize key trading concepts such as Fair Value Gaps (FVG) and market structures. Here is a detailed description of its functionality:
### Overall Purpose
This indicator aims to assist traders in analyzing market dynamics by highlighting important price levels and areas of interest. It combines the identification of FVGs and market structures to provide a comprehensive view of the market.
### Key Features and Functionalities
#### 1. Input Parameters
- **Fair Value Gap (FVG) Settings**:
- `isFvgToShow`: A boolean input to determine whether to display FVGs on the chart.
- `bullishFvgColor` and `bearishFvgColor`: Define the colors for bullish and bearish FVGs respectively.
- `mitigatedFvgColor`: Specifies the color for mitigated FVGs.
- `fvgHistoryNbr`: Determines the number of FVGs to display on the chart (default set to 10).
- `isMitigatedFvgToReduce`: A boolean input to decide whether to reduce the size of mitigated FVGs.
- **Market Structure Settings**:
- `isStructBodyCandleBreak`: A boolean input to indicate whether to consider the candle body for structure breaks.
- `isCurrentStructToShow`: A boolean input to control the display of the current market structure.
- `bullishBosColor` and `bearishBosColor`: Set the colors for bullish and bearish Break of Structure (BOS) lines (both set to green).
- `bosLineStyleOption` and `bosLineWidth`: Define the style and width (set to 2) of BOS lines.
- `bullishChochColor` and `bearishChochColor`: Determine the colors for bullish and bearish Change of Character (CHoCH) lines.
- `chochLineStyleOption` and `chochLineWidth`: Specify the style and width (set to 2) of CHoCH lines.
- `currentStructColor`, `currentStructLineStyleOption`, and `currentStructLineWidth`: Set the color, style, and width (set to 2) of the current market structure lines.
- `structHistoryNbr`: Defines the number of structure breaks to display on the chart.
#### 2. Fair Value Gap (FVG) Detection and Visualization
- **FVG Identification**:
- The code identifies bullish FVGs when the high of the third - previous bar is less than the low of the previous bar (`isBullishFVG`).
- Bearish FVGs are identified when the low of the third - previous bar is greater than the high of the previous bar (`isBearishFVG`).
- **FVG Drawing**:
- For each identified FVG, a box is drawn on the chart with the appropriate color based on its bullish or bearish nature.
- Labels are added to the FVG boxes.
- The code also handles the removal of FVGs that have been mitigated (i.e., when the price crosses the FVG range).
- Mitigated FVGs are colored differently, and an alert can be triggered when an FVG is mitigated.
#### 3. Market Structure Analysis
- **Structure Identification**:
- The code identifies the highest and lowest price levels within a lookback period (default 10 bars).
- It tracks the start index of the current high and low structures.
- Structure breaks are detected based on whether the price crosses the previous high or low structure levels, considering the candle body if `isStructBodyCandleBreak` is set to true.
- **Line Drawing**:
- When a structure break occurs, either a BOS or CHoCH line is drawn on the chart depending on the market direction.
- The lines are drawn with the specified color, style, and width.
- Labels are added to the lines to indicate whether they are BOS or CHoCH lines.
- The current market structure is also displayed on the chart with the defined color, style, and width.
#### 4. Alerts
- **Alert Conditions**:
- Alerts are set for BOS and CHoCH events. When a BOS or CHoCH occurs, an alert is triggered with the corresponding title and message.
In summary, this indicator provides traders with a visual representation of FVGs and market structures, along with alerts for key events, helping them to make more informed trading decisions.
AlphaFlow: Oscillator Panelv2AlphaFlow: Oscillator Panel v2 – CryptoFace-Inspired Multi-Oscillator with Smart Signal Labels
This script is a tribute to the legendary CryptoFace and inspired by the visual power of Market Cipher. AlphaFlow expands on that concept with customization options, real-time confluence detection, and intelligent wave labeling for entries and exits.
Designed for discretionary trading, AlphaFlow offers a fully modular oscillator panel built from WaveTrend, RSI, VWAP-MACD, BBWP, Hybrid Money Flow, and HTF OBV Bias.
🎨 Visual Customization (Style Tab)
You can style this indicator to match your preferred look:
💠 Set WT fill area to blue @ 32% to get that Market Cipher vibe
💰 Set Hybrid Money Flow to Area style @ 80% opacity for clearer flow visualization
🔵 Change crosses to circles on WaveTrend turns for a cleaner chart
Everything is visible, togglable, and stylable via the Style tab.
🛠️ Inputs Panel (How to Tune It)
The Inputs tab gives you full control over:
WaveTrend lengths and OB/OS levels
RSI thresholds
BBWP squeeze lookbacks
MFI & CMF money flow weighting
Higher Timeframe (HTF) setting
✅ Suggestion: Try these timeframe combos for high-confidence MTF setups:
LTF (chart) HTF suggestion
1m or 3m 15m – 30m
5m 1h
15m 4h
1h 1D
4h 1D / 1W
🧠 v2 Features – Signal Labels: A / T / 👀
These new chart labels give you clear signals within structure:
🅰️ A = Anchor
A possible bottom/top forming, deep oversold/overbought WT1 pivot.
🟢 T = Trigger
Momentum confirmation after Anchor — your potential entry zone.
👀 Snake Eyes
Two Anchors forming within proximity — high-probability reversal signal.
These fire in real-time, based on wave structure — not repainting.
⚡ Multi-Timeframe Confluence Table
A real-time panel shows aligned conditions across:
WT1 crossovers (LTF & HTF)
RSI > 50 on both frames
VWAP MACD strength
OBV HTF bias (rising/falling)
When all are aligned ➜ “⚡ Fire Confirmed” shows up in the panel = high probability setup
🔐 License & Originality
Open Source | Pine Script™ v5
No repainting | No lookahead bias
Built from scratch to echo the visual experience of CryptoFace's Market Cipher, while using public indicators and original logic
This script is for educational, discretionary, and strategic use only — no auto buy/sell logic.
What Makes This Script Unique
AlphaFlow is not just a mashup of indicators — it’s a purpose-built multi-oscillator framework designed around real-world discretionary flow trading.
While inspired by Market Cipher’s visual principles, AlphaFlow introduces:
✅ Wave sequence signal labeling (Anchor / Trigger / Snake Eyes) to visually track pivot-confirmation momentum patterns in real time — this is not available in Market Cipher or standard indicators
✅ A Hybrid Money Flow Engine combining MFI + CMF into a single normalized flow stream
✅ Real-time Multi-Timeframe Confluence Matrix, showing alignment across WT, RSI, VWAP-MACD, and OBV HTF bias
✅ Full visual customization and minimalist styling options (color-coded WT fills, hybrid flow areas, and cleaner circles)
In addition to data — AlphaFlow gives you structure.
You don’t just see what’s happening — you understand the sequence behind the move.
Green Candle with Volume > Last 5 DaysIt shows the candle with High volume compared to previous 5 days
MACD Histogram ROC with PVT FilterBelow is a detailed description of the "MACD Histogram ROC with PVT Filter" indicator based on the Pine Script v6 version, which uses the built-in `ta.pvt` function. This description assumes the latest code I provided with a single timeframe (chart-native) and the PVT filter.
---
### Indicator Description: MACD Histogram ROC with PVT Filter
The "MACD Histogram ROC with PVT Filter" is a technical analysis indicator designed for TradingView (Pine Script v6) that combines the Moving Average Convergence Divergence (MACD) Histogram, its Rate of Change (ROC), and the Price Volume Trend (PVT) to identify bullish momentum with volume confirmation. Instead of plotting lines or values directly on the chart, it uses a customizable background color (default light green) to highlight periods where specific bullish conditions are met, providing a clean and visually intuitive signal for traders.
#### How It Works
The indicator evaluates three key conditions based on the chart’s native timeframe:
1. **MACD Histogram**:
- Calculated as the difference between the MACD Line (fast EMA minus slow EMA) and the Signal Line (EMA of the MACD Line).
- A positive Histogram (above zero) indicates bullish momentum.
2. **Histogram Rate of Change (ROC)**:
- Measures the change in the MACD Histogram from the previous bar.
- A positive ROC (increasing Histogram) suggests accelerating bullish strength.
3. **Price Volume Trend (PVT) with EMA Filter**:
- PVT tracks the cumulative relationship between price changes and volume, acting as a volume-weighted momentum indicator.
- An Exponential Moving Average (EMA) is applied to the PVT (default period of 9), and the indicator checks if the PVT is above this EMA, confirming that volume supports the price trend.
When all three conditions are true—MACD Histogram > 0, Histogram ROC > 0, and PVT > PVT EMA—the chart background is highlighted with the user-defined color, signaling a potential bullish opportunity.
#### Key Features
- **Single Timeframe**: Operates on the chart’s current timeframe (e.g., 1-minute, 5-minute, daily), ensuring alignment with your viewing resolution.
- **Customizable Price Input**: Allows selection of the price type (e.g., close, open, high, low, hl2, hlc3, ohlc4) for MACD and PVT calculations.
- **Adjustable MACD Parameters**: Users can modify the fast EMA, slow EMA, and signal EMA periods (default 12, 26, 9).
- **Configurable PVT EMA**: The EMA period applied to PVT is adjustable (default 9).
- **Background Highlight**: A single, customizable background color (default light green with 90% transparency) indicates when all conditions are met, keeping the chart uncluttered.
#### Purpose
This indicator is designed for traders seeking to confirm bullish price movements with both momentum (MACD Histogram and ROC) and volume (PVT) support. The background highlight simplifies decision-making by visually marking periods of strong bullish alignment without overwhelming the chart with additional lines or plots.
---
### How to Use
1. **Adding the Indicator**:
- Open TradingView and access the Pine Editor (bottom of the chart window).
- Copy and paste the indicator code into the editor.
- Click “Add to Chart” to apply it to your current chart.
2. **Customizing Settings**:
- After adding the indicator, click its name in the chart’s indicator list and select “Settings” (gear icon).
- Adjust the following inputs:
- **Fast EMA Length**: Set the period for the fast EMA in the MACD (default 12).
- **Slow EMA Length**: Set the period for the slow EMA in the MACD (default 26).
- **Signal EMA Length**: Set the period for the signal line EMA (default 9).
- **Price Type**: Choose the price input for calculations (options: "close" , "open", "high", "low", "hl2", "hlc3", "ohlc4").
- **PVT EMA Period**: Define the EMA period for the PVT filter (default 9).
- **Background Color**: Select the highlight color and transparency (default light green, `#90EE90`, 90% transparency).
3. **Interpreting the Indicator**:
- **Green Background**: Appears when:
- The MACD Histogram is positive (bullish momentum).
- The Histogram ROC is positive (increasing momentum).
- The PVT is above its EMA (volume supports the trend).
- **No Highlight**: Indicates one or more conditions are not met, suggesting weaker or non-bullish conditions.
- Use the green highlight as a signal to consider bullish setups, such as entries or confirmation of an uptrend, depending on your trading strategy.
4. **Application**:
- Works on any timeframe (e.g., 1-minute for scalping, daily for swing trading) since it uses the chart’s native resolution.
- Combine with other indicators (e.g., support/resistance, RSI) or price action for a more robust trading system.
- Adjust the PVT EMA period to fine-tune sensitivity: a shorter period (e.g., 5) reacts faster, while a longer period (e.g., 20) smooths the filter.
---
### Notes
- **Timeframe**: The indicator reflects the chart’s current timeframe. Change your chart’s resolution (e.g., from 5-minute to 15-minute) to analyze different timeframes.
- **Transparency**: The default 90% transparency allows price action to remain visible beneath the highlight. Lower it (e.g., to 50%) for a more solid color if preferred.
- **Limitations**: This is a bullish-only signal. It won’t highlight bearish conditions (e.g., Histogram < 0). Let me know if you’d like to add bearish highlights!
This indicator is a powerful tool for traders who value momentum and volume confirmation in a minimalist format. Let me know if you’d like to tweak it further or add more features!
MOPS Indicator - Master of ProfitsWhat this Script Does
1. Quick Buy (QB)
Conditions:
MACD crossover
RSI < 50
Trend is up (EMA50 > EMA200)
➡️ Places a label below the bar:
"QB Entry: xxx SL: xxx | TP: xxx | R:R"
2. Quick Sell (QS)
Conditions:
MACD crossunder
RSI > 50
Trend is down (EMA50 < EMA200)
➡️ Label appears above the bar.
3. Close Quick Buy (QBC)
When the previous candle had QB and now a MACD crossunder happens.
➡️ Label "QBC" above bar to close long.
4. Close Quick Sell (QSC)
Previous candle had QS and now MACD crossover.
➡️ Label "QSC" below bar to close short.
5. Bull Buy (BullB)
When price crosses above middle Bollinger Band + MACD cross + price between BB Middle & Upper + MACD above zero.
➡️ Entry label below bar.
6. Bear Sell (BearS)
Opposite logic to BullB, label above bar.
7. Close BullB / Close BearS
Opposite exit signals using price movement and MACD.
8. Swing Buy / Swing Sell
When price breaks Fibonacci retracement levels with trend confirmation.
EMA Crossover 9/21 📈 **EMA Crossover Signal Line**
Created by **Ahmet AKSOY (tugeday)**
This indicator visualizes the crossover between two EMAs using a single dynamic-colored line.
✅ **How it works:**
- The script calculates two EMAs: a short-period EMA and a long-period EMA.
- Only the **short EMA line** is displayed on the chart.
- When the short EMA **crosses above** the long EMA (bullish crossover), the line color turns **green**.
- When the short EMA **crosses below** the long EMA (bearish crossover), the line color turns **red**.
- The line color remains based on the last crossover signal.
🎛️ **Customizable Inputs:**
- Short EMA period (default: 9)
- Long EMA period (default: 21)
All EMA periods can be adjusted from the settings panel, allowing traders to fine-tune the indicator to match their strategy.
Simple, clean, and effective.
Developed by **Ahmet AKSOY (tugeday)** — enjoy and trade smart!
RSI with EMA and WMA on RSI
> "This is an indicator that combines EMA and WMA on the RSI.
> It highlights the strength of price waves as well as support and resistance zones."
Highlight London Session (12:30 to 3:30 IST)The very first Pine Script code was designed to highlight the London trading session, specifically from 12:30 PM to 3:30 PM IST, which corresponds to 7:00 AM to 10:00 AM in UTC. During this window, the script monitored the highest and lowest prices reached and, once the session ended, it automatically plotted horizontal lines at those high and low levels. These lines stayed on the chart to provide a clear visual reference of the London session range, making it easier for traders to spot key areas of support and resistance. This is especially useful for identifying potential breakouts, liquidity grabs, or retests later in the day. The script didn’t include any visual boxes or background highlights—just clean, simple lines that marked the session's price boundaries for strategic analysis.
Impulse Candle with Volume & Std AnalysisImpulse Candle with Volume & Std Analysis
This indicator highlights “impulse” candles on your chart by combining price action and volume analysis to gauge the strength of market moves.
How It Works:
Impulse Candle Detection:
The indicator measures the candle’s body size and compares it to the Average True Range (ATR). When a candle’s body exceeds a user-defined multiple of the ATR (the “Impulse Factor”), it is flagged as an impulse candle.
Volume Analysis:
For each impulse candle, the indicator calculates the expected volume (Impulse Factor × average volume) and compares the actual volume against this expected value. It uses the standard deviation of volume over a specified period to classify the move’s volume as:
Extreme Low: More than 2 standard deviations below the expected volume
Low: Between 1 and 2 standard deviations below expected
Normal: Within 1 standard deviation of expected volume
High: Between 1 and 2 standard deviations above expected
Extreme High: More than 2 standard deviations above expected
Visual Cues:
The impulse candles are color-coded based on the volume classification.
A text-only label (with customizable text color) appears just above each impulse candle, indicating its volume category. The label has no background, ensuring a clean, unobtrusive look.
Customization:
Users can adjust parameters such as the Impulse Factor, ATR length, and volume averaging period to tailor the indicator to their trading style.
This tool is perfect for traders who want a quick visual representation of both significant price moves and the corresponding volume strength behind those moves.
Highlight London Session (12:30 to 3:30 IST)The very first Pine Script code was designed to highlight the London trading session, specifically from 12:30 PM to 3:30 PM IST, which corresponds to 7:00 AM to 10:00 AM in UTC. During this window, the script monitored the highest and lowest prices reached and, once the session ended, it automatically plotted horizontal lines at those high and low levels. These lines stayed on the chart to provide a clear visual reference of the London session range, making it easier for traders to spot key areas of support and resistance. This is especially useful for identifying potential breakouts, liquidity grabs, or retests later in the day. The script didn’t include any visual boxes or background highlights—just clean, simple lines that marked the session's price boundaries for strategic analysis.
Liquidity Grab (Bullish + Bearish) + 14, 22, 30 Bars + AlertsThis is a Institutional Level alert system. When a liquidity grab level is reached, candles 14, 22, and 30 are lit up to help you enter and exit.
Supertrend + Fair Value Gap [Combined]//@version=5
indicator("Supertrend + Fair Value Gap ", overlay = true, max_lines_count = 500, max_boxes_count = 500)
// === SUPER TREND ===
atrPeriod = input.int(10, "ATR Length", minval = 1)
factor = input.float(3.0, "Factor", minval = 0.01, step = 0.01)
= ta.supertrend(factor, atrPeriod)
supertrend := bar_index == 0 ? na : supertrend
upTrend = plot(direction < 0 ? supertrend : na, "Up Trend", color=color.green, style=plot.style_linebr)
downTrend = plot(direction < 0 ? na : supertrend, "Down Trend", color=color.red, style=plot.style_linebr)
bodyMiddle = plot(bar_index == 0 ? na : (open + close) / 2, "Body Middle", display=display.none)
fill(bodyMiddle, upTrend, title="Uptrend background", color=color.new(color.green, 90), fillgaps=false)
fill(bodyMiddle, downTrend, title="Downtrend background", color=color.new(color.red, 90), fillgaps=false)
alertcondition(direction > direction, title='Downtrend to Uptrend', message='The Supertrend value switched from Downtrend to Uptrend')
alertcondition(direction < direction, title='Uptrend to Downtrend', message='The Supertrend value switched from Uptrend to Downtrend')
alertcondition(direction != direction, title='Trend Change', message='The Supertrend value switched trend')
// === FAIR VALUE GAP ===
thresholdPer = input.float(0, "FVG Threshold %", minval=0, maxval=100, step=.1, inline='threshold')
auto = input.bool(false, "Auto", inline='threshold')
showLast = input.int(0, "Unmitigated Levels", minval=0)
mitigationLevels = input.bool(false, "Mitigation Levels")
tf = input.timeframe('', "FVG Timeframe")
extend = input.int(20, "Extend", minval=0, inline='extend', group="Style")
dynamic = input.bool(false, "Dynamic", inline='extend', group="Style")
bullCss = input.color(color.new(#089981, 70), "Bullish FVG", group="Style")
bearCss = input.color(color.new(#f23645, 70), "Bearish FVG", group="Style")
showDash = input.bool(false, "Show Dashboard", group="Dashboard")
dashLoc = input.string("Top Right", "Location", options= , group="Dashboard")
textSize = input.string("Small", "Text Size", options= , group="Dashboard")
type fvg
float max
float min
bool isbull
int t = time
method tosolid(color id) => color.rgb(color.r(id), color.g(id), color.b(id))
n = bar_index
detect() =>
var new_fvg = fvg.new(na, na, na, na)
threshold = auto ? ta.cum((high - low) / low) / bar_index : thresholdPer / 100
bull_fvg = low > high and close > high and (low - high ) / high > threshold
bear_fvg = high < low and close < low and (low - high) / high > threshold
if bull_fvg
new_fvg := fvg.new(low, high , true)
else if bear_fvg
new_fvg := fvg.new(low , high, false)
var float max_bull_fvg = na, var float min_bull_fvg = na, var bull_count = 0, var bull_mitigated = 0
var float max_bear_fvg = na, var float min_bear_fvg = na, var bear_count = 0, var bear_mitigated = 0
var t = 0
var fvg_records = array.new(0)
var fvg_areas = array.new(0)
= request.security(syminfo.tickerid, tf, detect())
if bull_fvg and new_fvg.t != t
if dynamic
max_bull_fvg := new_fvg.max
min_bull_fvg := new_fvg.min
if not dynamic
fvg_areas.unshift(box.new(n - 2, new_fvg.max, n + extend, new_fvg.min, na, bgcolor=bullCss))
fvg_records.unshift(new_fvg)
bull_count += 1
t := new_fvg.t
else if dynamic
max_bull_fvg := math.max(math.min(close, max_bull_fvg), min_bull_fvg)
if bear_fvg and new_fvg.t != t
if dynamic
max_bear_fvg := new_fvg.max
min_bear_fvg := new_fvg.min
if not dynamic
fvg_areas.unshift(box.new(n - 2, new_fvg.max, n + extend, new_fvg.min, na, bgcolor=bearCss))
fvg_records.unshift(new_fvg)
bear_count += 1
t := new_fvg.t
else if dynamic
min_bear_fvg := math.min(math.max(close, min_bear_fvg), max_bear_fvg)
// Mitigation logic
if fvg_records.size() > 0
for i = fvg_records.size() - 1 to 0
get = fvg_records.get(i)
if get.isbull and close < get.min
if mitigationLevels
line.new(get.t, get.min, time, get.min, xloc.bar_time, color=bullCss, style=line.style_dashed)
if not dynamic
area = fvg_areas.remove(i)
area.delete()
fvg_records.remove(i)
bull_mitigated += 1
else if not get.isbull and close > get.max
if mitigationLevels
line.new(get.t, get.max, time, get.max, xloc.bar_time, color=bearCss, style=line.style_dashed)
if not dynamic
area = fvg_areas.remove(i)
area.delete()
fvg_records.remove(i)
bear_mitigated += 1
// Unmitigated lines
var unmitigated = array.new(0)
if barstate.islast and showLast > 0 and fvg_records.size() > 0
for element in unmitigated
element.delete()
unmitigated.clear()
for i = 0 to math.min(showLast - 1, fvg_records.size() - 1)
get = fvg_records.get(i)
unmitigated.push(line.new(get.t, get.isbull ? get.min : get.max, time, get.isbull ? get.min : get.max, xloc.bar_time, color=get.isbull ? bullCss : bearCss))
// Dashboard
var table_position = dashLoc == 'Bottom Left' ? position.bottom_left : dashLoc == 'Top Right' ? position.top_right : position.bottom_right
var table_size = textSize == 'Tiny' ? size.tiny : textSize == 'Small' ? size.small : size.normal
var tb = table.new(table_position, 3, 3, bgcolor=#1e222d, border_color=#373a46, border_width=1, frame_color=#373a46, frame_width=1)
if showDash
if bar_index == 0
tb.cell(1, 0, "Bullish", text_color=bullCss.tosolid(), text_size=table_size)
tb.cell(2, 0, "Bearish", text_color=bearCss.tosolid(), text_size=table_size)
tb.cell(0, 1, "Count", text_color=color.white, text_size=table_size)
tb.cell(0, 2, "Mitigated", text_color=color.white, text_size=table_size)
if barstate.islast
tb.cell(1, 1, str.tostring(bull_count), text_color=bullCss.tosolid(), text_size=table_size)
tb.cell(2, 1, str.tostring(bear_count), text_color=bearCss.tosolid(), text_size=table_size)
tb.cell(1, 2, str.tostring(bull_mitigated / bull_count * 100, format.percent), text_color=bullCss.tosolid(), text_size=table_size)
tb.cell(2, 2, str.tostring(bear_mitigated / bear_count * 100, format.percent), text_color=bearCss.tosolid(), text_size=table_size)
// Plots for dynamic
max_bull_plot = plot(max_bull_fvg, color=na)
min_bull_plot = plot(min_bull_fvg, color=na)
fill(max_bull_plot, min_bull_plot, color=bullCss)
max_bear_plot = plot(max_bear_fvg, color=na)
min_bear_plot = plot(min_bear_fvg, color=na)
fill(max_bear_plot, min_bear_plot, color=bearCss)
// Alerts
alertcondition(bull_count > bull_count , "Bullish FVG", "Bullish FVG detected")
alertcondition(bear_count > bear_count , "Bearish FVG", "Bearish FVG detected")
alertcondition(bull_mitigated > bull_mitigated , "Bullish FVG Mitigation", "Bullish FVG mitigated")
alertcondition(bear_mitigated > bear_mitigated , "Bearish FVG Mitigation", "Bearish FVG mitigated")
Fiyat Hareket EtkinliğiA simple script I generated using ChatGPT to detect divergences in momentum and volume changes.
Sometimes, after a candle with strong momentum and high volume, the trend continues, but that level of volume and momentum is never reached again — which can signal a potential reversal.
VWAP + Volume Spike + Momentum (Options)it is regarding vwasp stategy and how it willperform on vwap and movmentum