Base Finder ProFind bases easily with Base finder pro. For each bases, plots length and depth of the bases.
Indicatori e strategie
MandarKalgutkar-Buy/Sell Arrow Signal//@version=5
indicator("MandarKalgutkar-Buy/Sell Arrow Signal", overlay=true)
ma = ta.sma(close, 21)
rsi = ta.rsi(close, 14)
// Tracking variables
var float buyRefHigh = na
var float sellRefLow = na
var int buyCandleIndex = na
var int sellCandleIndex = na
// Detect initial breakout candle
bullishBreak = close > open and close > ma and close < ma
if bullishBreak
buyRefHigh := high
buyCandleIndex := bar_index
bearishBreak = close < open and close < ma and close > ma
if bearishBreak
sellRefLow := low
sellCandleIndex := bar_index
// Next candle only: ensure current bar is exactly next one
isNextBuyBar = (not na(buyCandleIndex)) and bar_index == buyCandleIndex + 1
isNextSellBar = (not na(sellCandleIndex)) and bar_index == sellCandleIndex + 1
// Buy/sell logic
buySignal = isNextBuyBar and high > buyRefHigh and rsi > 55
sellSignal = isNextSellBar and low < sellRefLow and rsi < 45
// Reset if signal used or next candle missed
if buySignal or isNextBuyBar
buyRefHigh := na
buyCandleIndex := na
if sellSignal or isNextSellBar
sellRefLow := na
sellCandleIndex := na
// Plot
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, size=size.small)
plot(ma, "20 MA", color.orange)
WCWebhookLibraryLibrary "WCWebhookLibrary"
The webhook message library provides several functions for building JSON payloads
method buildWebhookJson(msg, constants)
Builds the final JSON payload from a webhookMessage type.
Namespace types: webhookMessage
Parameters:
msg (webhookMessage) : (webhookMessage) A prepared webhookMessage.
constants (CONSTANTS)
Returns: A JSON Payload.
method buildTakeProfitJson(msg)
Builds the takeProfit JSON message to be used in a webhook message.
Namespace types: takeProfitMessage
Parameters:
msg (takeProfitMessage) : (takeProfitMessage)
Returns: A JSON takeProfit payload.
method buildStopLossJson(msg, constants)
Builds the stopLoss JSON message to be used in a webhook message.
Namespace types: stopLossMessage
Parameters:
msg (stopLossMessage) : (stopLossMessage)
constants (CONSTANTS)
Returns: A JSON stopLoss payload.
CONSTANTS
Constants for payload values.
Fields:
ACTION_BUY (series string)
ACTION_SELL (series string)
ACTION_EXIT (series string)
ACTION_CANCEL (series string)
ACTION_ADD (series string)
SENTIMENT_BULLISH (series string)
SENTIMENT_BEARISH (series string)
SENTIMENT_LONG (series string)
SENTIMENT_SHORT (series string)
SENTIMENT_FLAT (series string)
STOP_LOSS_TYPE_STOP (series string)
STOP_LOSS_TYPE_STOP_LIMIT (series string)
STOP_LOSS_TYPE_TRAILING_STOP (series string)
EXTENDED_HOURS (series bool)
webhookMessage
Final webhook message.
Fields:
ticker (series string)
action (series string)
sentiment (series string)
price (series float)
quantity (series int)
takeProfit (series string)
stopLoss (series string)
extended_hours (series bool)
takeProfitMessage
Take profit message.
Fields:
limitPrice (series float)
percent (series float)
amount (series float)
stopLossMessage
Stop loss message.
Fields:
type (series string)
percent (series float)
amount (series float)
stopPrice (series float)
limitPrice (series float)
trailPrice (series float)
trailPercent (series float)
Simplified SMC Order Blocks📌 Simplified SMC Order Blocks (Pine Script v6)
This script automatically identifies bullish and bearish order blocks based on simple swing highs and lows — inspired by Smart Money Concepts (SMC) and price action trading.
🔍 Features
Detects swing highs/lows using a lookback period
Waits for confirmation candles to validate the zone
Draws order block zones using box.new() directly on the chart
Includes alerts for both bullish and bearish order blocks
⚙️ Inputs
Lookback: How many candles to look back for swing points
Confirmation Candles: How many bars to wait before confirming the OB
Zone Width: Width of the drawn zone (in bars)
🟩 Bullish Order Block:
Identified after a swing low forms
Plots a green shaded zone below price
🟥 Bearish Order Block:
Identified after a swing high forms
Plots a red shaded zone above price
📈 Use Case
Identify potential reversal or mitigation zones
Align with other SMC tools like break of structure (BoS), liquidity sweep, etc.
Icy-Hot Visual Indicator [SciQua]🧊 Icy-Hot Visual Indicator
This indicator colors your price bars and/or chart background based on a normalized & smoothed transform of any price-based input (default: close). It gives you a quick “temperature map” of market momentum or volatility—cool blues for low readings, hot reds for high readings—without cluttering your chart.
🔍 Key Features
1. Dual Visual Layers
Candle Gradient: Applies a smooth, multi-color gradient to candle bodies and wicks based on normalized, smoothed input data
Background Gradient: Adds a semi-transparent gradient behind the candles to highlight broader trend zones or volatility regimes
2. Advanced Customization
Normalization Types: bounded, unbounded, z-score, MAD, percentile, sigmoid, tanh, rank, robust, and more
Smoothing Methods: EMA, SMA, WMA, RMA, HMA, TEMA, VWMA, Gaussian, LinReg, ExpReg, and others (12+ options)
3. Gradient Control: Choose 2–7 color stops, reverse direction, adjust display length
Flexible Source Inputs
Use any built-in price series (close, hl2, volume, etc.)
Feed outputs from external indicators (RSI, custom oscillators, moving averages) into either layer
❓How It Works
Inputs are normalized (z-score, bounded, etc.) then smoothed (EMA, LinReg, etc.) in the order you choose. The result is clamped to 0–1 and passed through a multi-stop gradient engine for precise color mapping.
✨ What Makes It Original
While many indicators apply colors or smoothing, this script combines multi-stage normalization, adaptive smoothing, and a modular gradient rendering engine in a highly customizable dual-layer system. It’s built using proprietary functions from the SciQua suite that are not available in public libraries and allow for advanced visual encoding without relying on alerts, signals, or extra panes.
This makes it original in both design and execution—offering a visual-first approach with unique depth, clarity, and flexibility.
🔐 Why This Script Is Closed-Source
While the underlying functions are published in the open-source SciQua library, this indicator’s specific implementation, configuration architecture, and visual behavior are proprietary. It combines multiple library utilities into a dual-layer adaptive system that handles advanced gradient rendering, multi-stage normalization, and smoothing pipelines in a unique way.
The source is closed to protect the design logic, interface abstraction, and fine-tuned behaviors that make this indicator commercially valuable. The building blocks are open to the Pine community, but this assembled product is not meant for replication or redistribution.
How to Use It
1. Highlight Trend Strength
Source: RSI percentile
Setup: 200-bar look-back, mild smoothing
Result: Warm tones when momentum is peaking; cool when it’s fading. Use as a quick filter for entries in the direction of the trend.
2. Visualize Volatility Regimes
Source: ATR or True Range
Setup: Bounded normalization with tighter smoothing bar color off, bg color on.
Result: Background bands that shade when volatility spikes. Helps you avoid low-volatility breakouts or throttle position sizing in choppy markets.
3. Combine with Other Indicators
Source: Output of your custom indicator (e.g., a Keltner Band width)
Setup: Match normalization period to your strategy’s timeframe
Result: Bars colored by your own logic—no extra panes, just enhanced candles.
4. Background Only Heatmap
Turn off bar coloring and dial in semi-transparent background shades—keeps candles crisp while still giving you a context heat-map behind price.
Anderberg SignalsIt's a indikator made by me and fokus on momentum. The purpose with this indicator is to get more people in to trading and se the power of my strategy. This indikator is made with deep knowledge in technical analysis and years of trading. The code is made by me and not a copy from another code.
Squeeze Breakout Pro🔥 What This Script Does
This is a Breakout Strength Scanner with Squeeze + Pattern Range + Volume Confirmation + Risk Management + Take Profits.
✅ Core Functions:
Squeeze Detector:
Finds low volatility zones using Bollinger Band width compression.
Marks them with a “Squeeze” label — this signals that a big move is likely coming soon.
Pattern Range Detection:
Automatically identifies recent pivot highs (resistance) and pivot lows (support) using the pivotLen.
Draws the current consolidation range visually with horizontal lines.
Breakout Confirmation:
Requires:
✅ A break above resistance or below support.
✅ Confirmed with above-average volume.
✅ Must occur while in a volatility squeeze.
Plots arrows:
🔼 Green Up Arrow = Confirmed Bullish Breakout.
🔽 Red Down Arrow = Confirmed Bearish Breakout.
Trade Management Built-In:
Stop Loss: Just beyond the opposite side of the pattern range.
Take Profits:
✅ TP1 = 1.5x risk.
✅ TP2 = 2x risk.
Position Size Calculator:
Based on your input account size (accountBal) and risk percentage (riskPct).
Shows how many contracts, shares, or units to buy/sell to risk exactly that % of your account.
Higher Timeframe Trend Filter:
Default is 4-hour trend filter (can be changed).
✅ Only shows if the higher timeframe trend is Bullish (EMA50 > EMA200) or Bearish.
Displayed on the dashboard.
📊 How to Use It Step-By-Step
🟧 1. Look for a Squeeze:
A “Squeeze” label will appear.
This means price is coiled tight — a breakout is likely.
🟩 2. Wait for a Breakout Arrow:
🔼 Green Arrow: Bullish breakout (price breaks resistance + volume confirms + squeeze active).
🔽 Red Arrow: Bearish breakout (price breaks support + volume confirms + squeeze active).
🟥 3. Check the Dashboard:
✅ Trend Bias: Should ideally match your breakout.
If the higher timeframe is Bullish, long breakouts have better odds.
If Bearish, short breakouts are higher probability.
✅ Vol Confirm: Will say “Yes” if the volume condition is met.
🏹 4. Manage the Trade (Auto Levels):
The script draws:
🔴 Stop Loss Line (below range for longs, above for shorts).
🟢 Take Profit 1 (1.5x risk).
🟢 Take Profit 2 (2x risk).
Use these as guidelines for exits.
💰 5. Use Position Size Display:
Check the TP and SL distances and the suggested position size based on your account balance and risk percentage.
🚀 Pro Tips for Maximum Success
✅ Use Trend Confluence:
Only trade long breakouts when the higher timeframe trend is Bullish (EMA50 > EMA200).
Only trade short breakouts when the higher timeframe trend is Bearish.
✅ Avoid Fakeouts:
If a breakout arrow forms but the candle closes far away from the pattern breakout — wait for a retest or confirmation.
Higher volume + clean breakout works better than low-volume squeezes.
✅ Best Timeframes:
4H to Daily: For swing trades.
15m to 1H: For intraday trades (adjust htf to "240" for 4H trend confirmation even on lower charts).
✅ Increase Win Rate:
Use this script with key support/resistance zones, weekly ranges, or fib retracements.
Breakouts that happen near macro key levels have the highest follow-through.
✅ Set Alerts:
Right-click the breakout arrow or use alertcondition() events in the script.
Set alerts for:
📈 Breakout UP
📉 Breakout DOWN
🏹 Squeeze Active (prep for breakout)
✅ Walk Away Once In:
Let TP1 or TP2 hit.
Or move stop to breakeven after TP1 hits for free runners.
🔥 What Makes This Script Powerful:
Combines price action (pattern range) + volatility squeeze + volume confirmation + trend bias + risk management.
Most traders use these individually. This does it all in one clean tool.
💎 Professional Edge:
This is the type of script that turns reactive trading into systematic trading. No guessing. Clean rules. Repeatable.
StraddleThis is an indicator for straddle on Indian markets, with hedging/with out hedging.
You can se these with super trend and ema xover
TradeCrafted - "M" & "W" Pattern Detector for intraday traders🔍 TradeCrafted – “M” & “W” Pattern Detector for Intraday Traders
Spot Key Reversal Patterns. React Before the Crowd.
Chart patterns aren't just theory — they’re the visual footprints of market psychology. Among them, the “M” (double top) and “W” (double bottom) formations are some of the most powerful and time-tested signals used by professionals to anticipate trend reversals and breakout setups.
This premium intraday tool detects these crucial structures in real time, helping you:
🧠 Stay ahead of major intraday pivots.
⚠️ Avoid false breakouts by reading the market’s rhythm.
📊 Time your entries and exits around high-probability zones.
Unlike noisy oscillators or delayed signals, this pattern detector focuses on structural clarity, ensuring you're trading with the rhythm of the market, not against it.
✅ Why Traders Use It:
Helps confirm tops and bottoms with visual confidence.
Excellent for intraday scalping and reversal strategies.
Reduces overtrading by filtering out indecision zones.
Reinforces discipline by only acting when the pattern is confirmed.
⚡️ For Genuine & Serious Traders:
This is a premium script developed for disciplined intraday professionals.
📩 Interested in a trial? Send your TradingView username to:
📧 tradecrafted21@gmail.com
Trust the patterns. Respect the process.
TradeCrafted — where precision meets price action.
Anderberg SignalsAnderberg Signals is a Indikator that's made by me and fokus on momentum in the market.
Breakout Retest Visualizer (with Confluence)Breakout Retest Visualizer (Smart Money Edition)
This indicator is designed for day traders who rely on price action, breakout structure, and smart confluence filters to identify high-quality trade opportunities during the New York session.
🚀 What It Does:
Plots Yesterday's High & Low as static reference levels.
Tracks the New York open price with a horizontal line.
Detects breakouts above Yesterday’s High or breakdowns below Yesterday’s Low.
Confirms valid breakouts only when 4 key confluences align:
✅ EMA 9 & EMA 21 trend alignment
✅ RSI momentum confirmation (RSI > 55 or < 45)
✅ Volume spike (volume > 20-bar average)
✅ Within New York session hours (9:30am – 4:00pm EST)
Marks Breakout Retests and highlights strong continuation signals with “Runner” labels.
📈 Visual Markers:
🟢 Green "Runner" = Bullish continuation after retest
🔻 Purple Triangle = Bullish breakout retest zone
🔴 Red "Runner" = Bearish continuation
🔺 Yellow Triangle = Bearish breakdown retest
🎯 Who It’s For:
Ideal for intraday scalpers and momentum traders who want:
Clean breakout structure
Smart money-style retests
High-confidence entries backed by volume, trend, and RSI confluence
🧠 Tips for Use:
Use the retest markers to plan precise entries after structure breaks.
Combine this with order blocks or FVG zones for deeper confluence.
Avoid trading during pre-market or low-volume hours.
Historical Liquidity“Historical Hidden and Partial Hidden Orderblocks”
This indicator identifies and displays historical Hidden Orderblocks (HOBs) and historical Partial Hidden Orderblocks (PHOBs) directly on the chart. It is designed to help traders recognize significant areas of potential support and resistance based on detailed price action behavior and Fair Value Gap (FVG) structures.
Key Features:
• Detection of Hidden Orderblocks (HOBs):
Normal HOBs are fully positioned 100% behind a Fair Value Gap (FVG). They represent areas where unfilled orders are likely to have remained hidden behind inefficiencies in price delivery.
• Detection of Partial Hidden Orderblocks (PHOBs):
Partial Hidden Orderblocks are areas where the block is only partially covered by an FVG. These offer additional layers of market structure insight but with slightly different confluence criteria compared to full HOBs.
• Historical Visualization:
All detected HOBs and PHOBs remain visible even after price interaction, enabling users to backtest and analyze past market reactions to these zones.
• Customizable Settings:
• Users can adjust the criteria for what defines a Partial Hidden Orderblock, tailoring the sensitivity to their strategy.
• Option to merge and simplify label descriptions for better chart clarity, combining important information into a single, concise label if desired.
• Flexible display settings to manage how active and broken orderblocks are shown.
Important Notes:
• This tool is intended purely for analytical and educational purposes.
• It does not provide trading signals or guarantee any future market behavior.
• Traders are encouraged to use additional confirmation tools and proper risk management practices when applying concepts related to Hidden or Partial Hidden Orderblocks.
[ BETA ][ IND ][ LIB ] Dynamic LookBack RSI RangeGet visual confirmation with this indicator if the current range selected had been oversold or overbough in the latest n bars
FS JIMENEZ)FS JIMENEZ is a tactical breakout-retest strategy optimized for volatile price action and disciplined entries. It features:
• Swing structure validation
• Smart cooldown and price spacing logic
• SL compression after 3 bars
• Dynamic TP targeting based on candle strength and ATR
• Optional trailing SL via buffer multiplier
Built for traders seeking precision and controlled exposure across volati
📈 Volume VelocityThis is a private indicator for volume velocity.
You can set MA length to set velocity.
Bar:
Bar is volume difference from volume velocity and volume velocity MA
Dot:
Dot is volume trading velocity difference from its MA.(ignore the negative one)
Grey:
Set as a threshold for velocity monitoring, usually if it over area, it indicator a huge volume trade
Ghost Momentum Strategy [SOXL/SOXS Flip]Enter SOXL on a bull then sells on momentum cross and enters into SOXS. Exits SOXS on momentum cross and then enters into SOXL. Keeps doing this. Plug into a platform like traderspost
DISEGNATORE Livelli ATR H4 v1.3 FinaleThe Drawer needed to display "ATR. St. Dev. CALCULATOR H4" output.
TradeCrafted - Intraday Consolidation Zones Detector🛡️ TradeCrafted – Intraday Consolidation Zones Detector
Avoid the Trap. Trade Only the Break.
The Intraday Consolidation Zones Detector is engineered to protect traders from one of the most common and costly pitfalls in trading — getting stuck in sideways, choppy price action. Whether you're a scalper or an intraday trend follower, this tool helps you stay out when the market is indecisive and only engage when it truly matters.
🔍 What It Does:
📦 Automatically detects tight price consolidation zones by analyzing price containment behavior within a short window of time.
🧱 Plots visual boundaries of the consolidation range directly on your chart — highlighting areas of uncertainty where smart money often stays flat.
🚫 Issues a “Get Out” warning when excessive consolidation patterns are detected in a single session — telling you when it’s time to step aside and protect your capital.
🔄 Resets daily, so you're always working with fresh, session-specific structure.
💡 How This Can Protect Your Capital:
Trading in consolidation is where most retail traders lose money — fake breakouts, whipsaws, and premature entries are all common traps. This indicator acts as your risk filter:
❌ Stops you from entering low-probability trades.
❌ Prevents emotional entries during boring or manipulated phases.
✅ Keeps you aligned with market structure and breakout potential.
✅ Helps you focus only when the market is ready to move — not when it’s asleep.
✅ Ideal For:
Intraday traders wanting to avoid chop and noise.
Strategy builders needing a reliable range detector.
Risk-conscious traders looking for a discipline-enhancing tool.
Let the market show its hand first. This script helps you wait with purpose — and strike with clarity when it matters.
ATR St. Devs. CALCULATOR H4a Calculator able to create a Statistical Sample of 4h time-specific candles and their ATR Values, and projects its Standard Deviations on any timeframes chart.
EMA RSI Volume Signal Indicator - Realtime Alerts EMA RSI Volume Signal Indicator – Realtime Alerts
This intrabar indicator is designed to provide fast, actionable buy/sell signals by combining EMA crossovers, RSI momentum, and volume strength. It’s ideal for traders who want to catch momentum moves early with visual confirmation on the chart and real-time alerts.
🔍 What It Does
The script analyzes:
EMA Crossover: 5-period EMA crossing above/below 21 EMA for trend shift
RSI Direction: Upward or downward RSI movement for momentum confirmation
Volume Bias: More buying or selling volume (based on candle direction)
It fires a Buy signal when:
5 EMA is above 21 EMA (or crossover just occurred)
RSI is rising
Green candle (close > open)
Buy volume > Sell volume
It fires a Sell signal when:
5 EMA is below 21 EMA (or crossunder just occurred)
RSI is falling
Red candle (close < open)
Sell volume > Buy volume
🟢 Buy Signal
Appears when:
Trend is bullish (EMA9 > EMA21)
RSI is increasing
Candle is bullish
Buy volume > sell volume
🟩 Green circle below the candle
📢 Realtime alert: "Realtime Buy Signal!"
🔴 Sell Signal
Appears when:
Trend is bearish (EMA9 < EMA21)
RSI is decreasing
Candle is bearish
Sell volume > buy volume
🟥 Red circle above the candle
📢 Realtime alert: "Realtime Sell Signal!"
🧠 Realtime Trigger Logic
Signals are tracked intrabar (live bar)
Only one signal per bar is allowed (prevents clutter)
Ideal for scalping or short-term momentum trading
⚙️ How to Use
Add to chart (preferably 1–15 min timeframe)
Enable TradingView alerts on "Realtime Buy Signal!" and "Realtime Sell Signal!"
Use green/red dots as trade entries
Combine with stop-loss or other exit signals for risk control
Multi-TimeFrame Trend Dashboard- AK47: SMA, RSI, MACD, ADXMulti-Timeframe Trend Dashboard: SMA, RSI, MACD, ADX
This indicator provides a multi-timeframe dashboard to visually monitor the trend status of four popular technical indicators:
SMA (Simple Moving Average)
RSI (Relative Strength Index)
MACD (Moving Average Convergence Divergence)
ADX (Average Directional Index)
✅ Each row represents a timeframe (from 5m to 1M).
✅ Each column shows the current trend direction:
— 🔵 Bullish, 🔴 Bearish, ⚫ Neutral
✅ The color-coded background helps you quickly assess strength across timeframes and indicators.
🔧 Customizable settings:
Panel position
Trend colors
Moving average & indicator lengths
This tool is ideal for traders who rely on trend alignment across multiple timeframes to make high-confidence entries and exits.
Livelli Giornalieri ATRDisplays daily Open price and its ATR Value projections. Import the data from "ATR Screener"
TradeCrafted – Custom Lines with Dynamic Trend Flow📌 TradeCrafted – Custom Lines with Dynamic Trend Flow
Smart Trend Mapping with Signal Precision
This indicator is crafted for traders who seek clarity, structure, and precision in their trend-following strategy. It dynamically maps price behavior using multiple custom-calculated trend lines that reset daily, extend into the future, and adapt live to market conditions.
🔍 Key Highlights:
⚡ Instant Buy/Sell Labels at critical moments of trend momentum shifts — ideal for intraday entries or swing confirmations.
📐 Three smooth trend lines, updated live and extended ahead, help visualize short- and mid-term directional flow.
🎨 Auto-colored candles based on unique momentum criteria make it easy to scan for strength or weakness.
🕛 Daily resetting logic ensures every session starts with fresh, unbiased trend evaluation — no carryover noise.
✅ Perfect For:
Traders who appreciate minimalist, structure-focused visual guidance.
Those who want an edge without relying on standard indicators.
Anyone looking for clean breakout signals that combine momentum and price action intelligence.
Add it to your chart and let it guide your decisions with elegant, real-time structure and high-probability signals.