AshokTrendThe AshokTrend indicator uses a combination of trendline logic and pivot high/low detection to signal possible BUY and SELL trades based on price action and structural breakouts.
### Buy/Sell Signal Logic
- **Buy Trade Signal**: It identifies local pivot lows using a lookback period, then checks multiple conditions comparing current and previous pivot values to validate a breakout. If conditions are met, triangle-up shapes are plotted below bars to indicate a possible long trade, and trendlines are drawn connecting pivots for visual confirmation.
- **Sell Trade Signal**: It locates pivot highs, applies similar multi-point checks, and confirms breakdowns in structure. Upon a valid signal, triangle-down shapes are plotted above bars to indicate a possible short trade, with corresponding trendlines marking pivot connections.
### Structural Confirmation
- Both buy and sell signals require the breakout/breakdown to be visually confirmed via the movement and steepness (slope) of custom lines that represent price momentum between pivots. Lines are updated or deleted if price fails the required strength, ensuring signals are filtered for validity.
### Alert and Analysis Details
- **Alerts**: Plotted shapes (triangle up for buy, triangle down for sell) can be used for automated alerts, integrating with platform alert conditions for strategy automation.
- **Analysis**: The indicator incorporates logic for cleaning up invalid signals and pruning trendlines when a reversal is detected, increasing reliability of entries and exits for both buy and sell trades.
### Key Settings for Customization
- Lookback period, padding, and color settings allow the user to tune signal frequency and visual appearance according to specific trading needs.
### Summary Table
| Signal Type | Visual Mark | Pivot Reference | Trendline Confirmation | Filtering Logic |
|----------------------|--------------|-----------------|-----------------------|-------------------------------|
| BUY | Triangle Up | Pivot Low | Slope & multi-point | Valid breakout only |
| SELL | Triangle Down| Pivot High | Slope & multi-point | Valid breakdown only |
This approach ensures that only structurally strong breakout-based trades are considered, pruning false signals in real-time for improved consistency in automated or manual trade analysis
Follow me for more updates...
Disclaimer - This post is created for only Learning Purpose. Every Charts, Trade Ideas, Buy & Sell Levels and Updates are Provided For Learning Purpose Only . We Do Not Provide Any Buy And Sell Signals Tips. We are Not SEBI Registered .Do Always Calculate Your risk Before Taking the Trade And consult your Financial Advisor Before taking any Trade. Thank You
Candlestick analysis
5M Gap Finder — Persistent Boxes (Tiered) v65 M gap finder, using 3 different types of gaps: Tier Definition Tightness Frequency Use Case
Tier A (Strict) Gap ≥ 0.10%, body ≥ 70% of range Rare Institutional-strength displacement
Tier B (Standard) Gap ≥ 0.05%, body ≥ 60% of range Medium Baseline trading setup
Tier C (Loose) Gap ≥ 0.03%, no body condition Common Data collection and observation
Multi-TF Gates (Labels + Alerts)//@version=6
indicator("PO9 – Multi-TF Gates (Labels + Alerts)", overlay=true, max_lines_count=500)
iYear=input.int(2024,"Anchor Year",minval=1970)
iMonth=input.int(11,"Anchor Month",minval=1,maxval=12)
iDay=input.int(6,"Anchor Day",minval=1,maxval=31)
useSymbolTZ=input.bool(true,"Use symbol's exchange timezone (syminfo.timezone)")
tzChoice=input.string("Etc/UTC","Custom timezone (if not using symbol TZ)",options= )
anchorType=input.string("FX NY 17:00","Anchor at",options= )
showEvery=input.int(9,"Mark every Nth candle",minval=1)
showD=input.bool(true,"Show Daily")
show3H=input.bool(true,"Show 3H")
show1H=input.bool(true,"Show 1H")
show15=input.bool(true,"Show 15M")
show5=input.bool(false,"Show 5M (optional)")
colD=input.color(color.new(color.red,0),"Daily color")
col3H=input.color(color.new(color.orange,0),"3H color")
col1H=input.color(color.new(color.yellow,0),"1H color")
col15=input.color(color.new(color.teal,0),"15M color")
col5=input.color(color.new(color.gray,0),"5M color")
styStr=input.string("dashed","Line style",options= )
lnW=input.int(2,"Line width",minval=1,maxval=4)
extendTop=input.float(1.5,"ATR multiples above high",minval=0.1)
extendBottom=input.float(1.5,"ATR multiples below low",minval=0.1)
showLabels=input.bool(true,"Show labels")
enableAlerts=input.bool(true,"Enable alerts")
f_style(s)=>s=="solid"?line.style_solid:s=="dashed"?line.style_dashed:line.style_dotted
var lines=array.new_line()
f_prune(maxKeep)=>
if array.size(lines)>maxKeep
old=array.shift(lines)
line.delete(old)
tzEff=useSymbolTZ?syminfo.timezone:tzChoice
anchorTs=anchorType=="FX NY 17:00"?timestamp("America/New_York",iYear,iMonth,iDay,17,0):timestamp(tzEff,iYear,iMonth,iDay,0,0)
atr=ta.atr(14)
f_vline(_color,_tf,_idx)=>
y1=low-atr*extendBottom
y2=high+atr*extendTop
lid=line.new(x1=bar_index,y1=y1,x2=bar_index,y2=y2,xloc=xloc.bar_index,extend=extend.none,color=_color,style=f_style(styStr),width=lnW)
if showLabels
label.new(x=bar_index,y=high+(atr*2),text=_tf+" #"+str.tostring(_idx),xloc=xloc.bar_index,style=label.style_label_down,color=_color,textcolor=color.black)
array.push(lines,lid)
is_tf_open(tf)=> time==request.security(syminfo.tickerid,tf,time,barmerge.gaps_off,barmerge.lookahead_off)
f_tf(_tf,_show,_color,_name)=>
var bool started=false
var int idx=0
isOpen=_show and is_tf_open(_tf)
firstBar=isOpen and (time>=anchorTs) and (nz(time ,time)
London Breakout Structure by Ale 2This indicator identifies market structure breakouts (CHOCH/BOS) within a specific London session window, highlighting potential breakout trades with automatic entry, stop loss (SL), and take profit (TP) levels.
It helps traders focus on high-probability breakouts when volatility increases after the Asian session, using price structure, ATR-based volatility filters, and a custom risk/reward setup.
🔹 Example of Strategy Application
Define your session (e.g. 04:00 to 05:00).
Wait for a CHOCH (Change of Character) inside this session.
If a bullish CHOCH occurs → go LONG at candle close.
If a bearish CHOCH occurs → go SHORT at candle close.
SL is set below/above the previous swing using ATR × multiplier.
TP is calculated automatically based on your R:R ratio.
📊 Example:
When price breaks above the last swing high within the session, a “BUY” label appears and the indicator draws Entry, SL, and TP levels automatically.
If the breakout fails and price closes below the opposite structure, a “SELL” signal will replace the bullish setup.
🔹 Details
The logic is based on structural shifts (CHOCH/BOS):
A CHOCH occurs when price breaks and closes beyond the most recent high/low.
The indicator dynamically detects these shifts in structure, validating them only inside your chosen time window (e.g. the London Open).
The ATR filter ensures setups are valid only when the range has enough volatility, avoiding false signals in low-volume hours.
You can also visualize:
The session area (purple background)
Entry, Stop Loss, and Take Profit levels
Direction labels (BUY/SELL)
ATR line for volatility context
🔹 Configuration
Start / End Hour: define your preferred trading window.
ATR Length & Multiplier: adjust for volatility.
Risk/Reward Ratio: set your desired R:R (default 1:2).
Minimum Range Filter: avoids signals with tight SLs.
Alerts: receive notifications when breakout conditions occur.
🔹 Recommendations
Works best on 15m or 5m charts during London session.
Designed for breakout and structure-based traders.
Works on Forex, Crypto, and Indices.
Ideal as a visual and educational tool for understanding BOS/CHOCH behavior.
True Range(TR) + Average True Range (ATR) COMBINEDThis indicator combines True Range (TR) and Average True Range (ATR) into a single panel for a clearer understanding of price volatility.
True Range (TR) measures the absolute price movement between highs, lows, and previous closes — showing raw, unsmoothed volatility.
Average True Range (ATR) is a moving average of the True Range, providing a smoother, more stable volatility signal.
📊 Usage Tips:
High TR/ATR values indicate strong price movement or volatility expansion.
Low values suggest compression or a potential volatility breakout zone.
Can be used for stop-loss placement, volatility filters, or trend strength confirmation.
⚙️ Features:
Multiple smoothing methods: RMA, SMA, EMA, WMA.
Adjustable ATR length.
Separate colored plots for TR (yellow) and ATR (red).
Works across all timeframes and instruments.
True Range(TR) & ATR Combined – Volatility Strength IndicatorThis indicator combines True Range (TR) and Average True Range (ATR) into a single panel for a clearer understanding of price volatility.
True Range (TR) measures the absolute price movement between highs, lows, and previous closes — showing raw, unsmoothed volatility.
Average True Range (ATR) is a moving average of the True Range, providing a smoother, more stable volatility signal.
📊 Usage Tips:
High TR/ATR values indicate strong price movement or volatility expansion.
Low values suggest compression or a potential volatility breakout zone.
Can be used for stop-loss placement, volatility filters, or trend strength confirmation.
⚙️ Features:
Multiple smoothing methods: RMA, SMA, EMA, WMA.
Adjustable ATR length.
Separate colored plots for TR (yellow) and ATR (red).
Works across all timeframes and instruments.
Smart Money Concepts ProSmart Money Concepts Pro
A professional-grade framework for visualizing institutional price behavior through key Smart Money Concepts. It automatically maps structure shifts, imbalances, and liquidity events so traders can study how price develops around supply and demand.
Core Components
Market Structure (BOS / CHoCH) — Detects continuation and reversal breaks using pivot-based logic with a close-beyond threshold and configurable cooldown.
Order Blocks — Highlights institutional footprints validated by volume and distance filters; zones extend until mitigation.
Fair Value Gaps — Marks three-bar inefficiencies that meet a minimum gap size and optionally auto-remove once filled by a user-defined percentage.
Liquidity Sweeps — Identifies stop-hunt wicks exceeding a configurable extension beyond recent highs or lows.
Premium / Discount Zones — Defines equilibrium and price positioning within recent swing ranges.
Confluence Entries (optional) — Generates neutral BUY / SELL markers only when structure, zone, and directional context align.
Dashboard — Summarizes current structure bias, recent events, zone counts, and directional alignment in real time.
Why it’s distinct
All detections are governed by explicit thresholds—volume multipliers, minimum distances, and fill-percent logic—so each signal results from quantifiable structure rather than heuristic pattern matching. Automatic cleanup ensures charts remain clear as zones are mitigated or gaps filled.
Best use
Applicable across Forex, indices, crypto, and equities. Designed for study on 15 m – 1 D timeframes.
For optimal alignment, pin plots to the Right Scale after adding the script.
Access
This indicator is public invite-only. Click Request Access on this page to apply. Access requests are manually reviewed.
Disclaimer: This script is provided for educational and analytical purposes only. It does not constitute financial or investment advice.
Breakout Bar CandidateShows the values of True Range, LS volatility and whether the volume is above or below average
SK-ABC COMPACT v2SK-ABC COMPACT v2 detects algorithmic ABC market structures with auto-drawn zones (GKL, BC) and Fibonacci targets (1.618–2.0). Includes activation logic, HTF filter, and full trade visualization for rule-based SK-style trading.
Trend on TimeFrames indicatorThis indicator shows you If you are bullish or bearish on every important timeframe
APXTradez - Intraday RSI (8)🔹 APXTradez Intraday RSI (8)
Purpose:
A fast-reacting momentum and bias indicator built for intraday options and scalping setups. This version of RSI (8) identifies immediate shifts in strength, momentum slope, and trend bias—allowing traders to spot reversals, momentum builds, or choppy zones within seconds.
What It Shows
RSI (8) → ultra-responsive short-term strength indicator.
Bias Zones:
- Bull Bias (Green) – RSI rising above 55 with slope up → intraday long setups favored.
- Bear Bias (Red) – RSI falling below 45 with slope down → short setups favored.
- Chop (Gray) – Neutral area between 45–55 → reduced edge, wait for direction.
- Background Color: Highlights current bias (green/red/gray) for quick visual confirmation.
- Dynamic Label: Displays live bias text on chart (Bull, Bear, or Chop).
How to Use
Apply on 1m–15m charts for day trading or scalping options.
Trade in bias direction:
- Enter long when RSI crosses + slopes above 55 (bull bias).
- Enter short when RSI crosses + slopes below 45 (bear bias).
- Avoid chop zones (RSI between 45–55 or flat). Wait for a slope confirmation.
Combine with APX Intraday VWAP + EMA overlay, APX TTM Squeeze, and/or the APX MACD to align direction with trend and volume pressure.
Overbought/Oversold: Above 70 or below 30 still mark exhaustion zones — use for exits, not entries.
Best Use Case
Intraday confirmation of trend bias and momentum strength — helping you stay on the right side of fast-moving setups and avoid low-edge chop.
APXTradez - Intraday Overlay (VWAP + EMAs)🔹 APXTradez Intraday Overlay (VWAP + EMAs)
Purpose:
A clean, real-time intraday framework built for options scalpers and day traders.
This overlay combines VWAP, 8/21 EMAs, Bollinger Bands, and Keltner Channels to visualize short-term momentum, trend structure, and volatility compression directly on your chart.
What It Shows
8 EMA (teal) → Fast momentum and micro-trend direction.
21 EMA (orange) → Short-term trend confirmation and pullback zone.
VWAP (aqua) → Institutional average price; key intraday bias level.
Bollinger Bands (lime) → Standard deviation volatility envelope.
Keltner Channels (fuchsia) → ATR-based volatility range.
Compression Highlight (orange) → Shows when BBs are inside KCs, signaling volatility contraction and potential breakout setup.
How to Use
Apply on 1-min to 15-min charts for intraday trading.
Trend bias:
Price above VWAP and 8/21 EMA stack = bullish intraday momentum.
Price below VWAP and 8/21 EMA stack = bearish bias.
- Compression zones (orange highlights):
Indicates low-volatility consolidation → prepare for breakout.
Wait for breakout direction confirmation before entry.
Combine with momentum indicators (like APX TTM Squeeze, APX RSI or MACD) for confirmation.
Best Use Case
Scalping or day-trading options during high-volume sessions where VWAP and EMA structure drive precision entries and exits.
Candle Colorizer (Indecisive/Decisive/Explosive)Classifiaction of candles in indecisive/decisive/explosiv to more quickly identify supply and demand zones
APXTradez - MACD🔹 APXTradez MACD — Summary & Usage Guide
Purpose
- The APXTradez MACD measures momentum shifts and trend reversals using exponential moving averages (EMAs).
- It helps you see when momentum changes direction before price fully reacts — perfect for catching early entries or confirming strength behind a move.
Core Components
- MACD Line (Aqua / Orange)
- Calculated as the difference between the 12 EMA and 26 EMA.
- Shows short-term vs. long-term momentum.
- Aqua: Fast EMA above slow EMA → bullish momentum building.
- Orange: Fast EMA below slow EMA → bearish momentum dominating.
- Signal Line (Blue)
- A 9-EMA of the MACD line that smooths the momentum swings.
When the MACD Line crosses above it → bullish crossover.
When the MACD Line crosses below it → bearish crossover.
-Histogram (Green/Red Columns)
Represents the distance between the MACD Line and Signal Line.
Lime = Bullish momentum expanding.
Faded Lime = Bullish momentum fading.
Red = Bearish momentum expanding.
Faded Red = Bearish momentum fading.
The histogram visually shows when momentum is increasing or losing strength.
-Zero Line
Center baseline separating bullish (above) and bearish (below) momentum.
Crosses through zero often mark early trend reversals.
How to Use It
1️⃣ Identify Trend Direction
- MACD Line above Signal Line & Histogram above Zero:
→ Bullish momentum. Confirms uptrend or call-side bias.
- MACD Line below Signal Line & Histogram below Zero:
→ Bearish momentum. Confirms downtrend or put-side bias.
2️⃣ Spot Momentum Shifts (Crossovers)
- Bullish Crossover:
MACD (Aqua) crosses above Signal (Blue).
→ Potential start of new upward leg or reversal.
- Bearish Crossover:
MACD (Orange) crosses below Signal (Blue).
→ Possible start of new downward leg.
These are your “momentum pivot” moments — strongest when aligned with a squeeze fire or RSI midline cross.
3️⃣ Read Momentum Strength (Histogram)
- Growing Lime bars → momentum accelerating upward.
- Shrinking Lime bars → bullish side fading.
- Growing Red bars → bearish momentum accelerating.
- Shrinking Red bars → bearish side weakening.
When you see histogram bars shrink or color fade, it often signals a pause or pullback before a potential flip.
4️⃣ Combine with APX Squeeze & RSI
- MACD crosses up + TTM Squeeze fires + RSI > 50 → powerful bullish swing signal.
- MACD crosses down + Squeeze fires down + RSI < 50 → strong bearish setup.
This triple-stack alignment confirms momentum, volatility, and sentiment all pointing in one direction.
- The APXTradez MACD is your momentum confirmation tool.
- It helps you visually see when momentum flips, builds, or fades, giving you precise entry timing inside larger swing or intraday setups.
- Used with the APX RSI and APX TTM Squeeze, it forms one of the three core pillars of the APX Momentum Framework — confirming when volatility, strength, and direction all align.
APXTradez - Swing RSI🔹 APXTradez Swing RSI — Summary & Usage Guide
Purpose
- The APXTradez Swing RSI measures momentum strength and exhaustion in a stock’s price movement.
- It tells you when price is overextended, balanced, or reversing, helping you time entries, exits, and confirmation on swing trades.
This version is tuned for clean visual momentum tracking during 2-to-5-day swings or multi-week trends.
Core Components
-RSI (14-period)
- Uses a standard 14-bar calculation on the closing price (or whichever source you choose).
- Ranges between 0 and 100, showing how strong the recent price push has been.
- Smooth enough for swing trading; reactive enough to catch early turns.
- Color-Coded RSI Line
White = Neutral zone (healthy price action).
Lime = Oversold (< 30) → buying opportunity or short-covering zone.
Red = Overbought (> 70) → profit-taking or potential pullback zone.
Color shifts automatically as RSI crosses key thresholds, so you see sentiment flips instantly.
Horizontal Levels
70 = Overbought (red dashed line)
30 = Oversold (lime dashed line)
50 = Midline (gray dotted line, optional toggle)
These levels frame the RSI’s “zones of strength.”
How to Use It
1️⃣ Identify Momentum Regime
-Above 50 → Bullish Bias
Momentum favors buyers. Use this to confirm call or long positions.
- Below 50 → Bearish Bias
Momentum favors sellers. Confirms put or short setups.
- The 50 midline is your “momentum compass.”
Crosses above or below often precede trend reversals.
2️⃣ Spot Extremes (30 / 70 Zones)
RSI > 70 = Overbought
Price is stretched; risk of pullback or short-term cooling.
→ Good area to trim longs or watch for reversal candles.
RSI < 30 = Oversold
Price is washed out; potential bounce forming.
→ Good area to look for bullish reversal + volume confirmation.
3️⃣ Combine with APX TTM Squeeze and Overlay
- When RSI > 50 and rising + TTM histogram bright teal + Squeeze fires black dot up → high-probability long swing.
- When RSI < 50 and falling + TTM histogram bright yellow + Squeeze fires down → high-probability short swing.
- When RSI flat around 50 → trendless; wait for compression + momentum confirmation.
4️⃣ Divergences (Advanced Use)
- Bullish Divergence: Price makes a lower low, RSI makes a higher low → momentum turning up before price.
- Bearish Divergence: Price makes a higher high, RSI makes a lower high → momentum weakening.
- These signals are strongest when combined with a Squeeze firing or EMA crossover from your Swing Overlay.
Best Timeframes
Daily / 4-Hour: Ideal for swing entries and momentum tracking.
1-Hour: For fine-tuning entries inside larger setups.
- The APXTradez Swing RSI gives you a clean, visual read on who controls momentum and when that strength is fading or reversing.
- It’s not meant to predict exact tops or bottoms — it’s a confirmation and rhythm tool:
Use the 50-line for trend bias.
Use 30/70 for exhaustion.
Use color shifts for quick sentiment reads.
Combine with your APX Squeeze and Overlay for the complete swing-timing system.
APXTradez - TTM Squeeze🔹 APXTradez TTM Squeeze — Summary & How To Use It
What this indicator is
- This is a volatility + momentum engine built for options trading.
It does two jobs at the same time:
- Shows when price is coiling and ready to move (volatility compression using Bollinger Bands vs Keltner Channels).
- Shows which side has control (bullish vs bearish momentum, and whether that pressure is growing or cooling off).
- You use it to time entries on explosive directional moves (breakouts/breakdowns) and to avoid dead chop.
1. Volatility / Compression Logic (the dots)
- This script measures how tight price is by comparing:
- Bollinger Bands (BB): tracks standard deviation (volatility).
- Keltner Channels (KC): tracks ATR (true range / movement).
- When the Bollinger Bands get tighter than the Keltner Channels, price is literally getting bottled up. That’s what traders call “a squeeze.”
- This script splits that squeeze into tiers so you know how aggressive it is:
Orange Dot = High Compression
- BB are inside the tightest Keltner channel (kcMultHigh).
- This is the tightest coil. Energy is loaded.
- Translation: “Something is about to happen here. Pay attention.”
Red Dot = Medium Compression
- BB still inside KC, but looser than orange.
- Pressure building, not maxed.
Yellow Dot = Low Compression
- Still compressed, but wider than red.
- Early stage coil.
Black/Dark Dot = Fired / No Compression
- BB are no longer inside KC.
- The squeeze “released.”
- Translation: “The move is now happening.”
So visually, you’ll often see a sequence like:
yellow → red → orange → black.
That’s the life cycle:
Coil tighter and tighter.
Then BOOM: release.
That release is often where traders take entries.
How to trade the dots
- When you see orange dots stacking, you’re in max coil. You prepare, you don’t FOMO-enter yet.
- When the dots flip to black, that means volatility just expanded (squeeze fired).
- You only want to follow that release in the direction of momentum (see histogram section below). Do not blindly buy every “black.”
So:
- Identify compression (orange/red/yellow).
- Wait for “fired” (black).
- Then check: is momentum actually pushing bullish or bearish, or is it weak?
- That prevents chasing fake breaks.
2. Momentum Histogram (the bars)
- The lower histogram measures momentum using a linear regression on price and a smoothed EMA. In simple terms: it’s checking if price is pushing with force or fading.
It splits momentum into four readable states:
Bullish Side
- Bull Rising (Teal Bright)
- Momentum is above 0 and increasing.
Translation: “Buyers are in control and getting stronger.”
- This is the ideal bullish continuation / call side pressure.
Bull Cooling (Teal Faded)
- Momentum is above 0 but starting to slow down.
Translation: “Still bullish, but momentum is losing steam.”
- You can still stay in the trade, but be aware it’s not accelerating anymore.
Bearish Side
- Bear Pressing (Yellow Bright)
- Momentum is below 0 and getting more negative.
Translation: “Sellers are in control and pressure is increasing.”
- Great for puts / downside continuation.
Bear Cooling (Yellow Faded)
- Momentum is below 0 but starting to weaken.
Translation: “Still bearish, but selling force is easing.”
- Possible bottoming / potential reversal building soon.
- There’s also a zero line plotted. That’s your “neutral axis.”
Bars above zero = bullish regime.
Bars below zero = bearish regime.
Cross through zero = possible momentum flip.
How to read the histogram with the dots
- This is where it gets powerful.
Bullish breakout setup (calls):
- You’ve had compression dots (yellow/red/orange).
- Dots flip to black (squeeze fired).
- Histogram is teal and in “Bull Rising” (bright teal above zero and increasing).
→ That means volatility JUST expanded, and buyers are actually in control. That’s your A+ long/bullish continuation scenario.
Bearish breakdown setup (puts):
- You’ve had compression dots.
- Dots flip to black.
- Histogram is “Bear Pressing” (bright yellow below zero, getting more negative).
→ That means the release is to the downside with real selling pressure, not just a fake wick. That’s your A+ put/downside continuation scenario.
3. Timeframe and Trade Intent
This thing is designed to sit in its own lower panel (overlay = false). You watch it like MACD / Squeeze Pro, but cleaner and more obvious.
Recommended for:
- 4H and Daily: locating swings (2–5 day option plays).
- 5m / 15m / 1h: timing entries on liquid names if you’re doing intraday.
Flow is usually:
- Find the setup on a higher timeframe (Daily / 4H squeeze).
- Drop down one timeframe (1H / 15m) and enter on the first bullish or bearish “fire” in the same direction.
- This keeps you from randomly guessing entries.
4. Cheat Sheet (what to actually do)
Calls (bullish swing):
- You see clustered orange/red/yellow dots → stock is coiling.
- Then you get a black dot → squeeze fired.
- At the same time, the histogram turns bright teal (Bull Rising) and stays above zero.
-That’s your “calls / long continuation” look.
Puts (bearish swing):
- Compression dots first.
- Black dot shows up.
- Histogram turns bright yellow (Bear Pressing) and stays below zero.
That’s your “puts / short continuation” look.
Take profit / De-risk signs:
- Bullish but teal fades to dull teal → momentum is cooling.
- Bearish but yellow fades to dull yellow → selling is cooling.
- You’re still in trend, but gas pedal is coming off. That’s when you scale or trail.
5. Why this version is different from generic TTM Squeeze
-Most public squeeze indicators just tell you “in squeeze / out of squeeze” and show one color.
APXTradez version:
- Breaks compression into three levels (high / medium / low) so you know how “charged” the setup is, not just whether a squeeze exists.
- Shows the release (black dot) separately, so you instantly see “the moment it fired.”
- Splits momentum into four states, not two. You don’t just see “above / below zero,” you see:
- Building bullish
- Cooling bullish
- Building bearish
- Cooling bearish
That means you can tell:
“Is momentum gaining or dying?” instead of just “Is it green or red?”
Which is way more useful for options timing.
Yılmaz Candle Range Theory (CRT)candle range teorisi için sinyal üreten bir indikatördür iyi günlerde kullanın
APXTradez - Swing Overlay🔹 APX Swing Overlay – Summary & Usage Guide
Purpose
The APX Swing Overlay is built for options swing traders who focus on 1–5 day directional moves.
It visually identifies trend strength, compression zones, and momentum buildup using a combination of EMAs, Bollinger Bands, and Keltner Channels — making it ideal for spotting breakouts early.
Core Components
8 EMA (Exponential Moving Average)
- Tracks short-term price action and momentum.
- Price above = bullish continuation; price below = short-term weakness.
- Acts as the first dynamic support/resistance level.
21 EMA
- Captures the mid-term trend (confirmation layer).
- When the 8 EMA crosses above the 21 EMA → bullish shift.
- When the 8 EMA crosses below the 21 EMA → bearish or consolidation signal.
Bollinger Bands (BB)
- Measures volatility around price.
- When the bands tighten, volatility is compressing → expect expansion soon.
- When the bands expand, volatility is releasing → breakout or breakdown in play.
Keltner Channels (KC)
- Uses ATR to show “normal” price movement range.
- When Bollinger Bands move inside the Keltner Channels, it signals a squeeze — price is coiling up for a potential breakout.
- Compression Highlights
- The overlay visually marks when BB are inside KC (low volatility squeeze).
- These zones are shaded or highlighted so you can easily see when a stock is building pressure.
- Once price exits that zone with momentum, it often begins a new swing leg.
How to Use It
Add to Chart : Apply the APX Swing Overlay on your daily or 4-hour timeframe.
Look for Compression:
- Watch for areas where the bands tighten and the compression highlight appears.
- This means volatility is low — expect an expansion soon.
- Wait for Expansion + EMA Confirmation:
- A breakout above both the 8 & 21 EMA, with bands expanding, signals a potential long swing.
- A breakdown below both EMAs with expanding bands signals potential short swing.
Ride the Trend:
- Stay in the trade as long as price respects the 8 EMA.
- Take profit when momentum slows or the 8 crosses back below the 21 EMA.
Best Timeframes
Daily Chart → Ideal for swing setups (2–5 day hold).
4H Chart → Good for early entry timing and breakout confirmation.
Quick Visual Interpretation
Signal Meaning
8 > 21 and expanding BB Bullish trend continuation
8 < 21 and expanding BB Bearish continuation
BB inside KC Volatility squeeze forming
Highlighted compression zone Potential pre-breakout setup
Price closing above 8/21 Confirmation to enter
HTF Control Shift + FVG Interaction + Shift Lines
### 📘 **HTF Control Shift + FVG Interaction + Shift Lines**
This indicator combines **Higher Timeframe Control Shift detection**, **Fair Value Gap (FVG) tracking**, and **Shift Line projection** into one complete structure-based trading toolkit.
#### 🔍 **Features**
* **Control Shift Detection:**
Highlights bullish or bearish “Control Shift” candles based on wick/body ratios — showing where aggressive control transitions occur.
* **Fair Value Gap Mapping:**
Automatically detects and draws bullish or bearish FVGs on any chosen timeframe, with optional dynamic extension and mitigation tracking.
* **Shift Line Projection:**
Extends high and low lines from each Control Shift candle to visualize structure and potential continuation or rejection zones.
* **Interaction Alerts:**
Triggers alerts when:
* A Bullish Control Shift interacts with a Bullish FVG
* A Bearish Control Shift interacts with a Bearish FVG
* Price breaks the high/low following an interaction
* **Visual Highlights:**
Colored FVG zones, labeled interactions, and diamond markers for easy visual confirmation of key reaction points.
#### ⚙️ **How to Use**
1. Choose a **higher timeframe (HTF)** in settings (e.g., 15m, 1h, 4h).
2. Watch for **Control Shift candles** (yellow/orange bars) forming at or interacting with **FVG zones**.
3. A **Bullish Interaction + Break of High** often signals continuation.
A **Bearish Interaction + Break of Low** may confirm rejection or trend reversal.
4. Use alerts to track live market structure shifts without constant chart watching.
#### 🧠 **Purpose**
Ideal for traders combining **Smart Money Concepts (SMC)** and **candle structure logic**, this tool visualizes where institutional aggression shifts align with **liquidity gaps** — helping anticipate **high-probability continuations or reversals**.
High Volume Vector CandlesHigh Volume Vector Candles highlights candles where trading activity significantly exceeds the average, helping you quickly identify powerful moves driven by strong volume.
How it works:
- The script calculates a moving average of volume over a user-defined period.
- When current volume exceeds the chosen threshold (e.g. 150% of the average), the candle is marked as a high-volume event.
- Bullish high-volume candles are highlighted in blue tones, while bearish ones are shown in yellow, both with adjustable opacity.
This visualization makes it easier to spot potential breakout points, absorption zones, or institutional activity directly on your chart.
Customizable Settings:
• Moving average length
• Threshold percentage above average
• Bullish/Bearish highlight colors
• Opacity level
Ideal for traders who combine price action with volume analysis to anticipate market momentum.
Structure Labels ( HH / HL / LH / LL )Here’s a clean and efficient Pine Script (v5) code that automatically detects and labels Higher Highs ( HH ), Lower Highs ( LH ), Higher Lows ( HL ), and Lower Lows ( LL ) on your TradingView chart .
AzaInsideIt shows inside bars, providing a convenient visual representation for traders.
An alert feature has also been added. ✅






















