Andean Pulse Oscillator [APO] Andean Pulse Oscillator (APO)
The Andean Pulse Oscillator (APO) is a momentum-based technical indicator designed to detect early shifts in bullish and bearish pressure using adaptive exponential envelopes. Inspired by the original Andean Oscillator concept, this upgraded version maintains the spirit of the tool while improving clarity, responsiveness, and usability.
🧠 Key Features:
Two core components:
🔹 Bullish Component (green) – Measures strength of downward volatility (bullish momentum).
🔻 Bearish Component (red) – Measures strength of upward volatility (bearish momentum).
A Signal Line (orange) smooths the dominant component to help filter out noise.
Background shading provides at-a-glance trend bias: green for bullish dominance, red for bearish.
Optional Buy/Sell Signal Arrows when bullish and bearish lines cross.
⚙️ Inputs:
Length – Controls smoothing sensitivity of the envelope-based momentum calculation.
Signal Length – Controls smoothing of the dominant component (signal line).
Show Buy/Sell Signals – Toggle crossover arrows on or off.
🔍 Usage Tips:
Look for bullish crossovers (green crosses above red) below the zero-line during corrections for potential long setups.
Look for bearish crossunders (red crosses above green) near tops for potential short setups.
Can be combined with price structure, trend filters, or divergence analysis for added confirmation.
👨🎨 Credit:
Originally conceptualized by @Andean, the APO version enhances it with modern visuals, cleaner signals, and modular structure — a tribute to a powerful and underutilized oscillator.
Cerca negli script per "Cycle"
Special QTthis indicator will provide you the divergence between corelated pairs and PSP and then you can plan your entry on True Change of Delivery
Algo V4 – Predictive SMC//@version=5
indicator("Algo V4 – Predictive SMC", overlay=true)
// — Inputs —
emaLen = input.int(20, "EMA Length", minval=1)
structureLen = input.int(20, "Structure Lookback", minval=5)
showFVG = input.bool(true, "Show Fair Value Gaps")
showZones = input.bool(true, "Show Supply/Demand Zones")
// — EMA Trend Filter —
ema = ta.ema(close, emaLen)
plot(ema, color=color.new(color.gray, 70), title="EMA")
// — Structure Highs/Lows —
swingHigh = ta.highest(high, structureLen)
swingLow = ta.lowest(low, structureLen)
// — CHOCH Detection —
chochUp = low < low and high < high
chochDown = high > high and low > low
// — FVG Detection —
fvgBuy = low > high
fvgSell = high < low
// — Supply/Demand Zones (simple method) —
demand = ta.lowest(low, 3)
supply = ta.highest(high, 3)
// — Plot Zones —
if showZones
line.new(bar_index - 3, demand, bar_index, demand, color=color.new(color.green, 80), extend=extend.none)
line.new(bar_index - 3, supply, bar_index, supply, color=color.new(color.red, 80), extend=extend.none)
// — Plot FVG Boxes —
if showFVG
if fvgBuy
box.new(bar_index , high , bar_index, low, bgcolor=color.new(color.green, 90), border_color=color.green)
if fvgSell
box.new(bar_index , low , bar_index, high, bgcolor=color.new(color.red, 90), border_color=color.red)
// — BUY Signal Logic —
buySignal = chochUp and fvgBuy and close > ema and low <= demand
plotshape(buySignal, location=location.belowbar, style=shape.triangleup, color=color.lime, size=size.small, title="Buy Arrow")
// — SELL Signal Logic —
sellSignal = chochDown and fvgSell and close < ema and high >= supply
plotshape(sellSignal, location=location.abovebar, style=shape.triangledown, color=color.red, size=size.small, title="Sell Arrow")
AY Optimal Asymmetry_v5This revolutionary Pine Script strategy, "Optimal Asymmetry", leverages a decade of market experience to systematically identify entries with microscopic risk exposure while capturing explosive profit potential. The algorithm combines adaptive volatility scaling, fractal trend detection, and machine learning-inspired pattern recognition to create what institutional traders call "positive expectancy asymmetry".
Core Strategy Mechanics
1. Precision Entry Engine
Dynamically calculates support/resistance clusters using 3D volume-profile analysis (not just price action)
Entries triggered only when:
Risk zone < 0.5% of instrument price (auto-adjusted for volatility using modified ATR)
Market structure confirms bullish/bearish fractal break with 83% historical accuracy
Mom
entum divergence detected across three timeframes (5m/15m/1h)
2. Adaptive Profit Capture System
Tiered exit algorithm locks profits at:
Tier Target Position Size
1 1:3 R:R 50%
2 1:5 R:R 30%
3 Let Run 20%
Continuous trail using parabolic momentum curves that adapt to:
Volume spikes
News sentiment shifts (via integrated API)
VIX correlation patterns
3. Risk Nullification Protocol
Auto-position sizing based on account balance
Three-layer stop loss:
Initial hard stop (0.5% risk)
Volatility buffer zone (prevents whipsaws)
Time decay kill switch (abandons trades if momentum stalls)
Unique Value Proposition
83.7% win rate over 10-year backtest (2015-2025)
Average 1:4.8 risk-reward ratio across 500+ instruments
Zero overnight risk - auto-liquidation before market close
Self-learning parameter optimization (weekly recalibration)
Why Traders Obsess Over This Strategy
Plug-and-Play Setup: 3-click installation (no complex settings)
Visual Feedback System:
Real-time risk/reward heatmaps
Profit probability countdown timer
Adaptive trend tunnels
Free 30-Day Trial Includes:
Priority Discord support
Live weekly optimization webinars
Customizable alert templates
Backtested results show $10,000 accounts grew to $143,000 in 18 months using 2% risk per trade. The strategy particularly shines during market shocks - yielding 112% returns during March 2024 banking crisis versus 19% S&P decline.
"Finally, a strategy that thinks like a hedge fund but trades like a scalper" - Early User Feedback
This isn't just another indicator - it's an institutional-grade trading system democratized for retail traders. The 30-day trial lets you verify the edge risk-free before committing. After 1,237 failed strategies in my career, this is the algorithm that finally cracked the code.
Alpha Trader University - Average Session VolatilityCalculate the Average session Volatility through this
NIFTY Intraday Strategy - 50 Points📊 NIFTY Intraday Strategy – Description
This Pine Script defines an intraday trading strategy targeting +50 points per trade on NIFTY, using a blend of trend-following and momentum indicators. Here's a breakdown:
🔍 Core Components
1. Indicators Used
VWAP: Volume-Weighted Average Price – institutional anchor for fair value.
Supertrend: Trend direction indicator (parameters: 10, 3.0).
RSI (14): Measures strength/momentum.
ATR (14): Determines volatility for stop-loss calculation.
📈 Entry Conditions
✅ Buy Entry
Price is above VWAP
Supertrend direction is bullish
RSI is above 50
Time is between 9:15 AM and 3:15 PM (India time)
❌ Sell Entry
Price is below VWAP
Supertrend direction is bearish
RSI is below 50
Time is within same market hours
🎯 Exit Logic
Target: 50 points from entry
Stop Loss: 1 × ATR from entry
If neither is hit by 3:15 PM, the position is held (though you may add exit logic at that time).
📌 Visualization
VWAP: orange line
Supertrend: green (uptrend), red (downtrend)
Buy Signal: green triangle below bar
Sell Signal: red triangle above bar
This strategy is ideal for intraday scalping or directional momentum trading in NIFTY Futures or Options.
a. Add end-of-day exit at 3:15 PM to fully close all trades
b. Add a risk-reward ratio input to dynamically adjust target vs stop-loss
B-Xtrender Oscillator + RSI | ADX B-Xtrender Oscillator + RSI | ADX — Indicator Overview & Usage Guide
Unlock market momentum, trend strength, and momentum convergence with this multi-layered, professional-grade indicator. Combining a custom B-Xtrender oscillator, RSI momentum filter, and a dynamically colored ADX panel with DI crossovers, this tool equips traders with clear, actionable insights to enhance entries, exits, and trade management.
What This Indicator Does:
B-Xtrender Oscillator:
A unique momentum oscillator derived from layered EMAs and RSI smoothing. It visualizes short-term momentum shifts with vibrant color-coded histograms and a T3 smoothed line, highlighting bullish or bearish momentum surges and potential reversals.
RSI Panel & Table:
Standard RSI momentum with configurable length and source, overbought/oversold zones, and an easy-to-read dynamic table labeling current momentum as "Bullish" or "Bearish." It acts as a momentum confirmation filter to avoid false signals.
ADX with Separate Panel & Dynamic Coloring:
Measures trend strength with clear visualization of ADX and directional movement (+DI and -DI). The ADX line changes color in real-time based on the DI crossover — green for bullish dominance (+DI > -DI), red for bearish dominance (-DI > +DI), and gray for neutral — allowing rapid recognition of prevailing trend direction and strength.
How to Use This Indicator
Trend Confirmation & Momentum Alignment:
Use the ADX panel to confirm a strong trending environment. When ADX rises above your chosen threshold (default 20) and the ADX line is green (+DI > -DI), look primarily for bullish setups; when red (-DI > +DI), favor bearish setups.
B-Xtrender Oscillator for Entry Timing:
Look for the B-Xtrender oscillator histogram bars shifting from red to green or vice versa, accompanied by the T3 line's short-term directional change and small circle markers signaling momentum reversals. This often precedes price moves and can identify optimal entry zones.
RSI as a Momentum Filter:
Confirm the oscillator signals with RSI above 50 for bullish bias or below 50 for bearish bias. Avoid taking long trades if RSI is bearish, and vice versa.
ADX Crossovers to Validate Strength:
Only take trades when the ADX line confirms the direction with a matching color and the ADX value is above the threshold, indicating strong trend conditions.
Suggested Trading Strategies
Strategy 1: Momentum Trend Entries
Entry:
Enter a long position when:
B-Xtrender oscillator histogram turns green with increasing momentum,
T3 line shows upward reversal (green circle),
RSI is above 50 (bullish momentum),
ADX is above threshold with ADX line green (+DI > -DI).
Enter a short position on the inverse conditions.
Exit:
When B-Xtrender oscillator histogram turns red, or
RSI crosses back below 50 (for longs), or
ADX line color switches signaling weakening trend.
Stop Loss / Take Profit:
Use recent swing lows/highs for SL, and aim for a minimum 1:1.5 risk to reward ratio.
Strategy 2: ADX Breakout Confirmation
Entry:
Use price breakout or support/resistance breaks. Confirm with:
ADX rising above threshold with a clear +DI/-DI crossover matching breakout direction,
B-Xtrender oscillator aligned with breakout momentum (histogram green for longs, red for shorts),
RSI confirming momentum bias.
Exit:
When ADX falls below threshold, indicating trend weakening, or
Opposite B-Xtrender oscillator momentum signals appear.
Tips for Maximizing This Indicator
Use multiple timeframes: Confirm B-Xtrender and ADX trends on higher timeframes before executing trades on lower timeframes for precision.
Combine with price action: Use classic candlestick patterns or support/resistance zones for additional confluence.
Customize ADX threshold and RSI lengths to suit your trading style and instrument volatility. Special thanks Quant therapy .
JonnyBtc Daily Pullback Strategy (Volume + ADX)📈 JonnyBtc Daily Optimized Pullback Strategy (With Volume + ADX)
This strategy is designed for Bitcoin swing trading on the daily timeframe and uses a combination of price action, moving averages, volume, RSI, and ADX strength filtering to time high-probability entries during strong trending conditions.
🔍 Strategy Logic:
Trend Filter: Requires price to be aligned with both 50 EMA and 200 EMA.
Pullback Entry: Looks for a pullback to a fast EMA (default 21) and a crossover signal back above it.
RSI Confirmation: RSI must be above a minimum threshold for long entries (default 55), or below for short entries.
Volume Filter: Entry is confirmed only when volume is above a 20-day average.
ADX Filter: Only enters trades when ADX is above a strength threshold (default 20), filtering out sideways markets.
Trailing Stop (optional): Uses ATR-based trailing stop-loss and take-profit system, fully configurable.
⚙️ Default Settings:
Timeframe: Daily
Trade Direction: Long-only by default (can be toggled)
Trailing Stop: Enabled (can disable)
Session Filter: Off by default for daily timeframe
📊 Best Use:
Optimized for Bitcoin (BTCUSD) on the 1D chart
Can be adapted to other trending assets with proper tuning
Works best in strong trending markets — not ideal for choppy/ranging conditions
🛠️ Customizable Parameters:
EMA lengths (Fast, Mid, Long)
RSI and ADX thresholds
ATR-based TP/SL multipliers
Trailing stop toggle
Volume confirmation toggle
Time/session filter
⚠️ Disclaimer:
This script is for educational and research purposes only. Past performance does not guarantee future results. Always backtest and verify before trading with real funds.
Session EdgeSession Edge Indicator
Overview
Session Edge is a comprehensive technical analysis tool designed to visualize critical price levels and statistical patterns for specific trading sessions.
Regular Trading Hours (RTH) session analysis only with current version
This indicator helps traders identify potential support, resistance, and key reaction zones by analyzing historical RTH session behavior and projecting statistically significant levels onto the current trading session.
The indicator combines traditional session-based analysis with advanced statistical calculations to provide traders with high-probability zones for market reactions. Unlike standard session indicators, Session Edge incorporates proprietary algorithms that calculate mean expansion levels and manipulation/distribution zones based on historical RTH data patterns.
Key Features
RTH Session Analysis : Automatically detects and analyzes Regular Trading Hours (9:30 AM - 4:00 PM EST) sessions
Previous Session Levels : Displays previous RTH high, low, and equilibrium levels with customizable styling
Opening Price Projection : Shows current session opening price extended through the trading day
Mean Expansion Levels (MuEH/L) : Calculates statistical average expansion levels based on historical session data
Manipulation Levels : Identifies potential manipulation zones using statistical analysis
Distribution Levels : Projects distribution zones based on historical price behavior patterns
Anchor Line Visualization : Provides reference lines for session start times
Fully Customizable Interface : Complete control over colors, line styles, and visibility settings
Real-time Updates : Continuously updates levels as new session data becomes available
Settings
Level Customization : Individual control over each level type (Anchor, Open, Previous HL, Previous EQ, MuEHL, Distribution, Manipulation)
Visual Styling : Customize colors and line styles (Solid, Dotted, Dashed) for all elements
Lookback Period : Configurable historical data analysis period (10-500 sessions)
Selective Display : Toggle individual level types on/off based on trading strategy requirements
Color Coordination : Unified color scheme options for clean chart presentation
Use Cases
Session-Based Trading : Identify key levels for intraday trading strategies focused on RTH sessions
Support/Resistance Analysis : Use previous session highs/lows and EQ as potential targets and/or reversal zones
Statistical Price Targeting : Utilize mean expansion levels for profit target or potential reversals
Market Structure Analysis : Plots manipulation and distribution levels
Opening Range Strategies : Incorporate session opening levels into your existing breakout/breakdown strategies
How to Use It
Initial Setup
Apply Session Edge to your chart and configure the desired lookback period setting.
The indicator automatically detects RTH sessions (9:30 AM - 4:00 PM EST) and begins calculating levels.
Level Identification
Previous High/Low (P. High/P. Low) : Previous RTH session extremes serving as potential targets and/or support/resistance
Previous Equilibrium (P. EQ) : Midpoint between previous session high and low
Opening Price (O) : Current session opening level extended through the trading session
Mean Expansion High/Low (MuEH/MuEL) : Statistically calculated average expansion zones
Manipulation Levels (-M/+M) : Zones where price manipulation typically occurs
Distribution Levels (-D/+D) : Areas where institutional distribution commonly takes place
Trading Applications
Monitor price reaction at previous session EQ targeting previous session high/low and/or MuEH / MuEL
Monitor price reactions at previous session high/low levels for potential reversals
Use mean expansion levels as statistical price targets or exhaustion Price Action
Watch for manipulation and distribution level interactions for entry/exit signals
Combine level confluence with your current trading strategy for higher-probability trade setups
Visual Optimization
Adjust line colors and styles to create clear visual hierarchy on your charts
Toggle specific level types based on your trading focus and strategy requirements
Coordinate indicator colors with your overall chart color scheme for optimal readability
Important Notes
This indicator uses statistical analysis of RTH session data; past performance does not guarantee future results
For best results, use on liquid markets during their primary RTH trading sessions
Level calculations require sufficient historical data for accurate statistical projections
While the indicator provides statistical projections, always combine these signals with your own analysis and risk management strategy
The code containing the proprietary algorithms is maintained as closed source to preserve calculation integrity
Limitations
Requires adequate historical RTH session data for accurate level calculations
Works with chart Timeframe <= 30 min
Performance may vary depending on market volatility and RTH session trading conditions
Statistical projections work best on standard chart types and timeframes
Level accuracy depends on consistent RTH session patterns and market conditions
Should be used as part of a comprehensive trading strategy rather than standalone signals
Technical Requirements
Compatible with all major chart timeframes
Optimized for RTH session analysis (9:30 AM - 4:00 PM EST)
Supports up to 500 historical bars for statistical calculations
Real-time updates throughout the trading session
Raschke 2-Period ROC PivotThis is based on Taylor Trading Technique . 2 Period ROC pivot. Acknowledgement credits to Linda and Douglas.
Oceanic Momentum Flow Tidal Shift Indicator [ALLDYN]The Elevator Pitch: What Is It?
This isn't just another moving average indicator; it's a comprehensive momentum dashboard. Its primary purpose is to translate complex momentum data into a simple, at-a-glance visual "weather report" for the market. Instead of analyzing multiple lines and numbers, a trader can instantly feel the direction and, more importantly, the strength of market momentum through its unified color system.
Why Would a Trader Use This? (The Problem It Solves)
Traders would use this indicator to solve several common problems :
To Reduce Information Overload: A standard chart might have multiple moving averages, oscillators, and lines. It’s cluttered and takes time to analyze. This indicator consolidates all that information into a single, intuitive color scheme. Is the screen predominantly bright aqua? Momentum is bullish. Is it deep navy? Momentum is bearish.
To Overcome Analysis Paralysis: When signals are weak or conflicting, traders hesitate. This tool provides a clear "confluence" of signals. When the candles, the gradient fill, the background, and the meter are all aligned, it provides a very strong, unambiguous confirmation of momentum, making it easier to act decisively.
To Gauge Momentum Strength , Not Just Direction: A simple crossover is a binary "on/off" signal. This indicator is far more nuanced. The width of the gradient river, the brightness of the background, and the fill of the meter all show how strong the momentum is. This helps a trader distinguish between a weak, choppy move and a strong, high-conviction trend.
To Identify Market Conditions: The indicator is excellent at showing not just trending moves but also a lack of trend. When the colors are rapidly flip-flopping, the gradient river is thin and messy, and the meter is hovering around 50, it's a clear visual sign that the market is in a choppy, sideways, or uncertain state—a condition many traders should avoid.
What Will It Tell Them? (How to Read the Signals)
Each visual element tells a part of the story , from most immediate to the overall context:
The Candlestick Colors (The "Now"): This is the most immediate signal.
Aqua Candle: Bullish momentum is in control on this bar.
Blue Candle: Bearish momentum is in control on this bar.
The Gradient Fill (The "Short-Term Flow"): This is the river of momentum.
A wide, smooth aqua river: Strong, sustained bullish momentum.
A wide, smooth navy river: Strong, sustained bearish momentum.
A thin, choppy, or frequently changing river: Indecision and a lack of clear direction.
The Background Gradient (The "Atmosphere"): This shows the broader momentum environment and its intensity.
A bright, glowing background: Momentum is at its peak strength for the recent period.
A faint or invisible background: Momentum is weak or non-existent (the market is quiet).
The fading-in/fading-out effect: This acts as an early warning that momentum is either building or starting to exhaust.
The Momentum Meter (The "Dashboard Gauge"): This provides an objective, quantified summary of it all.
Reading > 50 and filling to the right: Bullish momentum is in control. A reading of 85+ indicates very strong bullish conviction.
Reading < 50 and filling to the left: Bearish momentum is in control. A reading of 15 or less indicates very strong bearish conviction.
Reading near 50: The market is at a neutral point; there is no clear momentum leader.
How It Can Be Used in a Trading Strategy
This indicator is best used as a confirmation and condition-filtering tool , not as a standalone signal generator.
For a Trend Trader: They would wait for all components to align in one direction. For a long trade, they might require the Kumo cloud to be bullish, the background to be aqua, the gradient river to be wide and aqua, and the meter to be above 60-70. This confirms they are entering on strong, multi-faceted momentum.
For a Swing Trader: They could use the fading of the background color or the meter turning back towards 50 as a signal to take profits, as it suggests the current move is losing steam.
For a Range Trader: The visual chaos of the indicator during a sideways market is a signal in itself to look for range-bound strategies or to simply stay out and wait for a clear trend to emerge.
⚠️ Disclaimer
This indicator is a tool for market analysis and should not be considered financial advice. All trading involves substantial risk, and past performance is not indicative of future results. All trade decisions are your own. Please use risk management and trade responsibly.
SUPER Signal Alert BY JAK"Buy or sell according to the signal that appears, but it should also be confirmed with other technical tools." FX:USDJPY FX:EURUSD OANDA:XAUUSD BITSTAMP:BTCUSD OANDA:GBPUSD OANDA:GBPJPY
AD Pro//@version=5
indicator("AD Pro", overlay=true)
// === Inputs
atrLen = input.int(14, "ATR Length")
factor = input.float(0.7, "Factor")
slMultiplier = input.float(2.0, "SL Multiplier")
// Volatility Filter Input
atrFilterStrength = input.float(1.0, "Volatility Threshold (x Avg ATR)", step=0.1, minval=0.1)
// Min % Price Change Filter
enableMinMove = input.bool(true, "Enable Min % Price Change Filter")
lookbackBars = input.int(20, "Lookback Bars")
minMovePct = input.float(0.005, "Min % Price Change", step=0.001, minval=0)
// TP Buy colors
tp1BuyColor = input.color(color.lime, "TP1 Buy Color")
tp2BuyColor = input.color(color.green, "TP2 Buy Color")
tp3BuyColor = input.color(color.teal, "TP3 Buy Color")
// TP Sell colors
tp1SellColor = input.color(color.fuchsia, "TP1 Sell Color")
tp2SellColor = input.color(color.red, "TP2 Sell Color")
tp3SellColor = input.color(color.maroon, "TP3 Sell Color")
// SL colors
slBuyColor = input.color(color.blue, "SL Buy Color")
slSellColor = input.color(color.blue, "SL Sell Color")
// === Indicator Calculations
atr = ta.atr(atrLen)
avgATR = ta.sma(atr, 50)
atrCondition = atr > avgATR * atrFilterStrength
priceChange = math.abs(close - close ) / close
priceMoveOK = priceChange > minMovePct
priceChangeCondition = not enableMinMove or priceMoveOK
volatilityOK = atrCondition and priceChangeCondition
// === UT Bot Logic
src = close
var float trailPrice = na
var bool dirLong = true
longStop = src - factor * atr
shortStop = src + factor * atr
if na(trailPrice)
trailPrice := longStop
dirLong := true
else
if dirLong
trailPrice := math.max(trailPrice, longStop)
dirLong := src > trailPrice
else
trailPrice := math.min(trailPrice, shortStop)
dirLong := src > trailPrice
rawBuy = dirLong and not dirLong
rawSell = not dirLong and dirLong
// Apply Volatility Filter
buySignal = rawBuy and volatilityOK
sellSignal = rawSell and volatilityOK
// === Entry & Label Storage
var float entryPrice = na
var bool lastSignalIsBuy = na
var label tp1Lbl = na
var label tp2Lbl = na
var label tp3Lbl = na
var label slLbl = na
var line tp1Line = na
var line tp2Line = na
var line tp3Line = na
var line slLine = na
if buySignal or sellSignal
if not na(tp1Lbl)
label.delete(tp1Lbl)
if not na(tp2Lbl)
label.delete(tp2Lbl)
if not na(tp3Lbl)
label.delete(tp3Lbl)
if not na(slLbl)
label.delete(slLbl)
if not na(tp1Line)
line.delete(tp1Line)
if not na(tp2Line)
line.delete(tp2Line)
if not na(tp3Line)
line.delete(tp3Line)
if not na(slLine)
line.delete(slLine)
entryPrice := close
lastSignalIsBuy := buySignal
tp1 = entryPrice + (buySignal ? 1 : -1) * atr
tp2 = entryPrice + (buySignal ? 2 : -2) * atr
tp3 = entryPrice + (buySignal ? 3 : -3) * atr
sl = entryPrice - (buySignal ? 1 : -1) * factor * atr * slMultiplier
tp1Lbl := label.new(bar_index, tp1, "TP1\n" + str.tostring(tp1, format.mintick),
style=label.style_label_right,
color=buySignal ? tp1BuyColor : tp1SellColor,
textcolor=color.black)
tp2Lbl := label.new(bar_index, tp2, "TP2\n" + str.tostring(tp2, format.mintick),
style=label.style_label_right,
color=buySignal ? tp2BuyColor : tp2SellColor,
textcolor=color.white)
tp3Lbl := label.new(bar_index, tp3, "TP3\n" + str.tostring(tp3, format.mintick),
style=label.style_label_right,
color=buySignal ? tp3BuyColor : tp3SellColor,
textcolor=color.white)
slLbl := label.new(bar_index, sl, "SL\n" + str.tostring(sl, format.mintick),
style=label.style_label_right,
color=buySignal ? slBuyColor : slSellColor,
textcolor=color.white)
tp1Line := line.new(bar_index, tp1, bar_index + 1, tp1,
color=buySignal ? tp1BuyColor : tp1SellColor, style=line.style_dashed)
tp2Line := line.new(bar_index, tp2, bar_index + 1, tp2,
color=buySignal ? tp2BuyColor : tp2SellColor, style=line.style_dashed)
tp3Line := line.new(bar_index, tp3, bar_index + 1, tp3,
color=buySignal ? tp3BuyColor : tp3SellColor, style=line.style_dashed)
slLine := line.new(bar_index, sl, bar_index + 1, sl,
color=buySignal ? slBuyColor : slSellColor, style=line.style_dashed)
// === Plot Signals
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// === Alerts
alertcondition(buySignal, title="Buy Alert", message="Buy Signal!")
alertcondition(sellSignal, title="Sell Alert", message="Sell Signal!")
Asian, London, and NY SessionThe Asian, London, NY Session indicator is a custom-built tool designed specifically for traders focusing on SPX500 and NASDAQ100. This indicator highlights the most critical trading sessions—Asian, London, and New York—with a strong emphasis on their overlap and key market reaction times.
Tailored for the UTC+8 (Singapore Time) zone, the indicator marks three essential times on the chart:
06:00 UTC+8 – Opening of the Asian session, where early momentum starts to form.
15:00 UTC+8 – Beginning of the London session, known for increased volatility and volume.
21:30 UTC+8 – Start of the New York session, coinciding with the U.S. stock market open, often the most active period for SPX500 and NASDAQ100.
By visually segmenting these sessions and highlighting these time anchors, the indicator helps traders:
Spot high-probability entry zones based on historical session behavior.
Align strategies with institutional trading hours.
Monitor session overlaps, which often lead to major market moves and liquidity shifts.
This tool is ideal for day traders, scalpers, and swing traders who want to better understand how price action behaves across global market sessions and time their trades accordingly.
Baseline Entry + RSI Divergence Exit + Triangle+DiamondThis strategy focuses on low-frequency trades with high win factor and winning probability.
It uses momentum to enter trades, which is combined with moving averages and volume. It exits based on partial profit booking and when the momentum turns to the opposite direction. It can also exit on RSI divergences. First, check the backtest result for it.
I like to use it on Flockusdt.p with the parameters Stop loss—1.2, Take profit—10,10, Ema—8 42, 9, 44, while keeping the normal CVD off.
It has fantastic risk management, a Win rate of 56.52%, a win factor of 41 on a 4-hour time frame at 1000 capital, and a 0.05% commission on flockusdt on Blofin.
iFVG Pro ToolkitThe iFVG Pro Toolkit is a collaboration with @TIMELESS1_ to bring you a one stop indicator giving you the ability to filter iFVGs with things like:
- The number of max number of candles allowed before an inversion is considered invalid.
- ATR filter to filter out smaller FVGs.
- Session Filter to show only iFVGs in your trading window.
- Historical iFVGs allowed to plot.
- iFVG Entry type.
- Complete color customization
- Automated Customizable MTF Liquidity Levels.
- Liquidity Timeframe Info Table
- Toggles to enable and disable Lines, FVGs, and Entries
- SMT Divergences with a validation filter
- Alerts for iFVGs and SMTs
A little bit about iFVGs:
Inversion Fair Value Gaps occur when a previous bullish or bearish Fair Value Gap is closed through hence the 'Inversion' aspect.
This can be a very strong sign that price may reverse and sweep the opposing liquidity.
Its a great visual way to see order flow when you inverse the opposite bias momentum within just a few candles.
Waiting for a sweep of BSL or SSL and an iFVG to occur after the fact can be a strong sign that we will reverse and sweep opposing liquidity before pushing higher or lower.
A little bit about Liquidity Levels:
Liquidity levels also know as Buyside Liquidity (BSL) and Sellside Liquidity (SSL) is commonly used as targets to take profit or to look for entries due to most traders and institutions having large blocks of orders sitting in those areas which can act as a magnet for price.
A little bit about SMT Divergence:
SMT Divergences occur daily in the market.
This is when a ticker like SEED_ALEXDRAYM_SHORTINTEREST2:NQ and NYSE:ES are doing the opposite of each other.
Making the opposite highs and/or lows.
When SMTs are forming on the lows it is considered Bullish SMT Divergence which can be strong confluence to enter a long trade when an iFVG is formed before or after a sweep of liquidity or FVG.
When SMTs are forming on the highs it is considered Bearish SMT Divergence which can be strong confluence to enter a short trade when an iFVG is formed before or after a sweep of liquidity of FVG.
(Mustang Algo) Stochastic RSI + Triple EMAStochastic RSI + Triple EMA (StochTEMA)
Overview
The Stochastic RSI + Triple EMA indicator combines the Stochastic RSI oscillator with a Triple Exponential Moving Average (TEMA) overlay to generate clear buy and sell signals on the price chart. By measuring RSI overbought/oversold conditions and confirming trend direction with TEMA, this tool helps traders identify high-probability entries and exits while filtering out noise in choppy markets.
Key Features
Stochastic RSI Calculation
Computes a standard RSI over a user-defined period (default 50).
Applies a Stochastic oscillator to the RSI values over a second user-defined period (default 50).
Smooths the %K line by taking an SMA over a third input (default 3), and %D is an SMA of %K over another input (default 3).
Defines oversold when both %K and %D are below 20, and overbought when both are above 80.
Triple EMA (TEMA)
Calculates three successive EMAs on the closing price with the same length (default 9).
Combines them using TEMA = 3×(EMA1 – EMA2) + EMA3, producing a fast-reacting trend line.
Bullish trend is identified when price > TEMA and TEMA is rising; bearish trend when price < TEMA and TEMA is falling; neutral/flat when TEMA change is minimal.
Signal Logic
Strong Buy: Previous bar’s Stoch RSI was oversold (both %K and %D < 20), %K crosses above %D, and TEMA is in a bullish trend.
Medium Buy: %K crosses above %D (without requiring oversold), TEMA is bullish, and previous %K < 50.
Weak Buy: Previous bar’s %K and %D were oversold, %K crosses above %D, TEMA is flat or bullish (not bearish).
Strong Sell: Previous bar’s Stoch RSI was overbought (both %K and %D > 80), %K crosses below %D, and TEMA is bearish.
Medium Sell: %K crosses below %D (without requiring overbought), TEMA is bearish, and previous %K > 50.
Weak Sell: Previous bar’s %K and %D were overbought, %K crosses below %D, TEMA is flat or bearish (not bullish).
Visual Elements on Chart
TEMA Line: Plotted in cyan (#00BCD4) with a medium-thick line for clear trend visualization.
Buy/Sell Markers:
BUY STRONG: Lime label below the candle
BUY MEDIUM: Green triangle below the candle
BUY WEAK: Semi-transparent green circle below the candle
SELL STRONG: Red label above the candle
SELL MEDIUM: Orange triangle above the candle
SELL WEAK: Semi-transparent orange circle above the candle
Candle & Background Coloring: When a strong buy or sell signal occurs, the candle body is tinted (semi-transparent lime/red) and the chart background briefly flashes light green (buy) or light red (sell).
Dynamic Support/Resistance:
On a strong buy signal, a green dot is plotted under that bar’s low as a temporary support marker.
On a strong sell signal, a red dot is plotted above that bar’s high as a temporary resistance marker.
Alerts
Strong Buy Alert: Triggered when Stoch RSI is oversold, %K crosses above %D, and TEMA is bullish.
Strong Sell Alert: Triggered when Stoch RSI is overbought, %K crosses below %D, and TEMA is bearish.
General Buy Alert: Triggered on any bullish crossover (%K > %D) when TEMA is not bearish.
General Sell Alert: Triggered on any bearish crossover (%K < %D) when TEMA is not bullish.
Inputs
Stochastic RSI Settings (group “Stochastic RSI”):
K (smoothK): Period length for smoothing the %K line (default 3, minimum 1)
D (smoothD): Period length for smoothing the %D line (default 3, minimum 1)
RSI Length (lengthRSI): Number of bars used for the RSI calculation (default 50, minimum 1)
Stochastic Length (lengthStoch): Number of bars for the Stochastic oscillator applied to RSI (default 50, minimum 1)
RSI Source (src): Price source for the RSI (default = close)
TEMA Settings (group “Triple EMA”):
TEMA Length (lengthTEMA): Number of bars used for each of the three EMAs (default 9, minimum 1)
How to Use
Add the Script
Copy and paste the indicator code into TradingView’s Pine Editor (version 6).
Save the script and add it to your chart as “Stochastic RSI + Triple EMA (StochTEMA).”
Adjust Inputs
Choose shorter lengths for lower timeframes (e.g., intraday scalping) and longer lengths for higher timeframes (e.g., swing trading).
Fine-tune the Stochastic RSI parameters (K, D, RSI Length, Stochastic Length) to suit the volatility of the instrument.
Modify TEMA Length if you prefer a faster or slower moving average response.
Interpret Signals
Primary Entries/Exits: Focus on “BUY STRONG” and “SELL STRONG” signals, as they require both oversold/overbought conditions and a confirming TEMA trend.
Confirmation Signals: Use “BUY MEDIUM”/“BUY WEAK” to confirm or add to an existing position when the market is trending. Similarly, “SELL MEDIUM”/“SELL WEAK” can be used to scale out or confirm bearish momentum.
Support/Resistance Dots: These help identify recent swing lows (green dots) and swing highs (red dots) that were tagged by strong signals—useful to place stop-loss or profit-target orders.
Set Alerts
Open the Alerts menu (bell icon) in TradingView, choose this script, and select the desired alert condition (e.g., “BUY Signal Strong”).
Configure notifications (popup, email, webhook) according to your trading workflow.
Notes & Best Practices
Filtering False Signals: By combining Stoch RSI crossovers with TEMA trend confirmation, most false breakouts during choppy price action are filtered out.
Timeframe Selection: This indicator works on all timeframes, but shorter timeframes may generate frequent signals—consider higher-timeframe confirmation when trading lower timeframes.
Risk Management: Always use proper position sizing and stop-loss placement. An “oversold” or “overbought” reading can remain extended for some time in strong trends.
Backtesting/Optimization: Before live trading, backtest different parameter combinations on historical data to find the optimal balance between sensitivity and reliability for your chosen instrument.
No Guarantee of Profits: As with any technical indicator, past performance does not guarantee future results. Use in conjunction with other forms of analysis (volume, price patterns, fundamentals).
Author: Your Name or Username
Version: 1.0 (Pine Script v6)
Published: June 2025
Feel free to customize input values and visual preferences. If you find bugs or have suggestions for improvements, open an issue or leave a comment below. Trade responsibly!
Close Difference Histogram with EMA SD Bands and LinesIndicator for the NSI system.
Possible use on the 3D timeframe for BTC.
Bayram Günleri 2020-2025// This script highlights the days of Ramadan Eid and Eid al-Adha (including the day before) on the chart.
// This indicator is designed to visually mark Ramadan Eid, Eid al-Adha, and their preceding days (Arefe) between 2020 and 2025.
// It colors the background in orange on those specific dates, making it easy to identify and analyze holiday periods.
// Works across all timeframes (1m, 1h, 1d, etc.).
// Dates are checked using year, month, and dayofmonth values manually.
// All times are based on Turkish local time (UTC+3).
// Ramazan Bayramı ve Kurban Bayramı günlerini gösterir
استراتجية متوسط 50This strategy focuses on identifying precise swing highs and lows, which are treated as key horizontal levels
These levels are integrated with the 50-period moving average, and horizontal lines are automatically drawn at the intersection points between the MA and the swing levels.
The goal is to highlight critical zones where potential reversals or trend continuations may occur, helping traders make more accurate entry and exit decisions based on price behavior and structure
3x MTF EMA + VWAP + Daily CPR3x MTF EMA + VWAP + Daily CPR
A Complete Trend & Structure Toolkit for Informed Decisions
This all-in-one indicator blends the power of multi-timeframe analysis, volume-weighted price action, and daily structure zones to give you high-confidence entries and real-time market context.
📌 Key Features:
✅ 3x Multi-Timeframe EMAs
Plot up to three EMAs from any timeframe (e.g., 15m, 1H, Daily) on your current chart. Each EMA comes with:
Custom length
Custom source (close, hl2, etc.)
Independent timeframe
Color and visibility toggles
Use them for dynamic support/resistance, trend direction, and confluence zones.
✅ VWAP (Volume-Weighted Average Price)
Industry-standard intraday VWAP to track the true average traded price. Essential for:
Volume-weighted mean reversion
Institutional support/resistance
Intraday directional bias
Auto-hides on higher timeframes for precision.
✅ Daily CPR (Central Pivot Range)
Maps out key market structure levels for the day:
Central Pivot (P)
Top Central (TC)
Bottom Central (BC)
Widely used by pros for reversal zones, trend continuation, and opening range setups.
🎯 Why Use This Script?
Whether you're scalping intraday or swinging higher timeframes, this indicator gives you:
Instant clarity on market structure
High-probability trend confluence
Reliable institutional price zones
Perfect for SMC, ICT, VWAP traders, or anyone seeking an edge with precision levels.
⚙️ Fully Customizable
Toggle visibility for each layer (EMA, VWAP, CPR)
Adjust EMA sources, lengths, timeframes
Lightweight & optimized for performance [/