Smash + Proba + BF + VWAP + VP + SessionsVWAP Addition Yearly, Monthly, Weekly and Daily.
Session boxes addition and volume and range in theses boxes.
Volume Profile in developpement
Göstergeler ve stratejiler
RSI extremes + Nasdaq 100 +Crossover of moving averages
In this indicator, we integrate four main features.
1. Oversold and overbought price signals, based on the 1-minute RSI extremes, marked on the chart with a yellow triangle.
2. Combination of oversold and overbought signals in the stock price and its index (only applicable to Nasdaq 100 symbols). Marked on the chart with a green triangle for oversold and a red triangle for overbought.
3. Use of four moving averages for early trend detection: EMA 10, 20, and 45 - SMA 200.
4. Crossover of moving averages in order 10, 20, and 45. On the upside, a green cross appears; on the downside, an orange cross appears.
Combine this indicator with "RSI (1 and 5m) + divergences and rsiNDX 1m " to check the signals and you will have a scalping strategy for reversals and trend following in NASDAQ 100 stocks.
EMA Cross 99//@version=6
indicator("EMA Strategie (Indikator mit Entry/TP/SL)", overlay=true, max_lines_count=500, max_labels_count=500)
// === Inputs ===
rrRatio = input.float(3.0, "Risk:Reward (TP/SL)", minval=1.0, step=0.5)
sess = input.session("0700-1900", "Trading Session (lokal)")
// === EMAs ===
ema9 = ta.ema(close, 9)
ema50 = ta.ema(close, 50)
ema200 = ta.ema(close, 200)
// === Session ===
inSession = not na(time(timeframe.period, sess))
// === Trend + Cross ===
bullTrend = (ema9 > ema200) and (ema50 > ema200)
bearTrend = (ema9 < ema200) and (ema50 < ema200)
crossUp = ta.crossover(ema9, ema50)
crossDown = ta.crossunder(ema9, ema50)
// === Pullback Confirm ===
longTouch = bullTrend and crossUp and (low <= ema9)
longConfirm = longTouch and (close > open) and (close > ema9)
shortTouch = bearTrend and crossDown and (high >= ema9)
shortConfirm = shortTouch and (close < open) and (close < ema9)
// === Entry Signale ===
longEntry = longConfirm and inSession
shortEntry = shortConfirm and inSession
// === SL & TP Berechnung ===
longSL = ema50
longTP = close + (close - longSL) * rrRatio
shortSL = ema50
shortTP = close - (shortSL - close) * rrRatio
// === Long Markierungen ===
if (longEntry)
// Entry
line.new(bar_index, close, bar_index+20, close, color=color.green, style=line.style_dotted, width=2)
label.new(bar_index, close, "Entry", style=label.style_label_left, color=color.green, textcolor=color.white, size=size.tiny)
// TP
line.new(bar_index, longTP, bar_index+20, longTP, color=color.green, style=line.style_solid, width=2)
label.new(bar_index, longTP, "TP", style=label.style_label_left, color=color.green, textcolor=color.white, size=size.tiny)
// SL
line.new(bar_index, longSL, bar_index+20, longSL, color=color.red, style=line.style_solid, width=2)
label.new(bar_index, longSL, "SL", style=label.style_label_left, color=color.red, textcolor=color.white, size=size.tiny)
// === Short Markierungen ===
if (shortEntry)
// Entry
line.new(bar_index, close, bar_index+20, close, color=color.red, style=line.style_dotted, width=2)
label.new(bar_index, close, "Entry", style=label.style_label_left, color=color.red, textcolor=color.white, size=size.tiny)
// TP
line.new(bar_index, shortTP, bar_index+20, shortTP, color=color.red, style=line.style_solid, width=2)
label.new(bar_index, shortTP, "TP", style=label.style_label_left, color=color.red, textcolor=color.white, size=size.tiny)
// SL
line.new(bar_index, shortSL, bar_index+20, shortSL, color=color.green, style=line.style_solid, width=2)
label.new(bar_index, shortSL, "SL", style=label.style_label_left, color=color.green, textcolor=color.white, size=size.tiny)
// === EMAs anzeigen ===
plot(ema9, "EMA 9", color=color.yellow, linewidth=1)
plot(ema50, "EMA 50", color=color.orange, linewidth=1)
plot(ema200, "EMA 200", color=color.blue, linewidth=1)
// === Alerts ===
alertcondition(longEntry, title="Long Entry", message="EMA Strategie: LONG Einstiegssignal")
alertcondition(shortEntry, title="Short Entry", message="EMA Strategie: SHORT Einstiegssignal")
BUZZARA ALGO V22BUZZARA ALGO V22 📊
BUZZARA ALGO V22 is a complete trading system built on SuperTrend with Moving Average confirmation. The indicator automatically plots Entry, Stop Loss, and three Take Profit levels (TP1, TP2, TP3). All signals are saved historically, with TP/SL background zones that remain visible until the signal is closed or replaced.
Key Features:
📍 Signals: BUY/SELL entries based on SuperTrend and SMA crossover logic.
🛡️ Risk Management: ATR-based Stop Loss with automatic TP1, TP2, TP3 targets.
📦 Background Boxes: TP/SL zones plotted as persistent boxes across history.
🏷️ Price Labels: Entry, SL, and TP1/TP2/TP3 labels displayed near each level.
📊 Statistics Dashboard:
Total signal count
Individual win rates for TP1, TP2, TP3
Average points per trade
Total PnL (calculated in R multiples)
🔔 Alerts: Ready-to-use alerts for BUY/SELL signals.
💡 Watermark: Optional “BUZZARA ALGO V22” text displayed at the bottom of the chart.
Use Cases:
Trade in the direction of trend signals
Visually track TP/SL areas
Backtest signals historically
Monitor performance via win rates and PnL metrics
Disclaimer ⚠️
This indicator is for educational purposes only. It does not guarantee profits. Always test on demo before going live, and apply your own risk management strategy.
RSI (1 y 5m) + divergences y rsiNDX 1mWith this indicator we incorporate
RSI of the selected asset in 1 minute.
RSI of the selected asset in 5 minutes.
RSI of the NASDAQ 100 in 1 minute.
Includes divergences that are drawn at the extremes of the RSI of the symbol in 1 minute.
Objective of the indicator:To use it in scalping (intraday) with assets from the Nasdaq 100 ETF, to compare the behavior of the asset against its base index.
Trading Session GMT +7Many indicators display buy and sell signals, but this indicator doesn't.
Many indicators also collect data or even predict chart direction, but this indicator doesn't.
This indicator displays market opening session times based on the Asian, London, and New York sessions.
These sessions typically record higher trading volumes, for both direct and derivative trading.
To maximize this indicator, utilize your analytical skills to maximize profits.
Please note that this indicator only displays session times and does not provide buy or sell signals.
We hope this session time information is helpful for those who trade based on session times.
PNP Indicator Version v5This is updated indicator of PNP indicator that helps users to find the correct entry.
PNP INDICATOR REVISED V5This is revised version of original PNP Indicator which helps user to identify entry point and stop from teking big losses.
RZTrades Session Highs and Lows(Tokyo+London)This indicator plots the daily high and low levels of the Tokyo and London Open trading sessions based on New York time. It draws clean, customizable lines that anchor to the exact bar where the high or low occurred and extend to the right, providing reliable reference levels for intraday trading. The script is lightweight, non-repainting, and ideal for identifying session-based support and resistance zones without cluttering the chart.
Session Trade Vertical Lines Jakarta Time - OxlibertansThis indicator displays the market open session times based on the Asian session, London session, and New York session.
These sessions typically offer high market volume for both direct and derivative trading.
To maximise this indicator, utilise your analytical skills to maximise profits.
Please note that this indicator only displays session times and does not provide buy or sell signals.
We hope this session time is helpful for those of you who trade based on session times.
RFSIRFSI (Relative Force Strength Index) is a technical indicator that measures the relative strength of an asset compared to a benchmark (default: SPY - S&P 500 ETF). It helps identify performance divergences and generate entry/exit signals based on crossovers.
RFSI (Relative Force Strength Index) est un indicateur technique qui mesure la force relative d'un actif par rapport à un benchmark (par défaut : SPY - ETF S&P 500). Il permet d'identifier les divergences de performance et de générer des signaux d'entrée/sortie basés sur des croisements.
LiZ_Prediction_Model📌 LiZ Prediction Model (v6)
The LiZ Prediction Model is designed to highlight potential turning points in price based Z-Score deviations.
🔑 How it works:
A 20-period LiZ is calculated (trend reference).
A Z-Score is computed to measure how far price deviates from the LiZ (standardized by volatility).
When price forms a high or low and the Z-Score at that point is beyond a threshold (±1.0 by default), a label is plotted:
🔴 Red label above pivots = Overextended high (possible reversal zone).
🟢 Green label below pivots = Oversold low (possible reversal zone).
On the latest candle, the current Z-Score is also displayed if it crosses the threshold:
🟠 Orange down label = Price stretched to the upside.
🟣 Purple up label = Price stretched to the downside.
📊 Purpose:
This model helps traders quickly identify when price is statistically stretched relative to its short-term trend, and whether a level aligns with an extreme deviation, which can act as a potential reversal or exhaustion point.
⚠️ Note:
This is an analytical tool — not a standalone buy/sell system. Always combine with market structure, volume, and risk management. No guarantee of profit or loss is possible in any trading system, so do your own research and take own trading decision by your own. This is not a sure-fire means of beating the market.
CA Trading BUY/SELL with TPThis indicator combines trend confirmation, pivot structure, and Take-Profit targets to give traders structured BUY and SELL signals with dynamic profit-taking options.
Key Features
- BUY & SELL Signals
- Generated from EMA crossover, RSI filter, and pivot-based trend detection.
- Green “BUY” and red “SELL” signals are displayed directly on the chart.
- Take-Profit Targets
- TP lines automatically end when price hits them (liquidity sweep) or after a set number of candles.
Customizable Settings
- EMA lengths, RSI settings, pivot sensitivity, and TP line length.
- Adjust Take-Profit targets
Use Cases
- Helps identify clear entry signals with structured TP levels.
- Supports profit-taking strategies.
- Highlights liquidity grabs for Smart Money Concept (SMC) traders.
Asian Stock Open (00:00 UTC Daily)Simple TSE daily open indicator, 500 line history, to help prepare for potential weekly open volatility from Asia trading
Don Rublev - TrendDon Rublev - Trend Indicator Guide
1. General Description
The Don Rublev - Trend is a technical analysis tool that combines a trend line, buy/sell signals, and support/resistance levels (TP/SL). It assists traders in making informed decisions about entering and exiting positions while effectively managing risk.
2. Signal Logic
Long (BUY): Triggered when the indicator detects an upward wave crossover with the price above the trend line.
Short (SELL): Triggered when the wave moves downward with the price below the trend line.
A filter is applied to eliminate duplicate signals.
3. Indicator Settings
The settings allow customization of EMA, TEMA, MA calculations, and the depth of extremum search for TP/SL levels. Users can also toggle the display of individual lines and the table if not required.
4. Chart Display
The indicator visualizes the following on the chart:
Trend Line (blue)
TP1, TP2, TP3 Levels (green lines)
SL Level (red line)
Buy/Sell Zone (orange line)
When TP or SL levels are reached, a ✅ checkmark appears next to the respective price level on the chart.
5. Target Table (Top-Right Corner)
The table displays current TP1, TP2, TP3, SL, and entry zone levels. Values are color-coded for clarity: red for SL, green for TP levels, and orange for the zone.
6. Alerts
Upon signal generation, a JSON-formatted message is sent, which can be integrated with a Telegram bot or other applications.
Example Short Alert:
{"chatId":186226547,"message":"PEPEUSDT - сигнал (SELL 60), Volume=123456, Price=0.000010555, ZoneSell=0.00001040977, SL=0.0000105838, TP1=0.00001040, TP2=0.00001030, TP3=0.00001020"}
7. Usage Recommendations
Use the indicator alongside volume analysis and support/resistance levels.
For more reliable signals, verify on higher timeframes.
Always apply SL to manage risk effectively.
Utilize TP levels for partial profit-taking.
Beta SignalsThe Beta Buy/Sell Signal Indicator provides visual cues for potential trade setups by combining multiple technical conditions, including RSI, MACD, SMA, volume filters, and price action. It highlights buy and sell signals when these conditions align, helping traders observe potential short-term opportunities across various market conditions.
Key Features:
Buy/Sell Signals – Signals appear as markers on your chart indicating potential entry points.
RSI Bounce Alerts – Identifies RSI crossing key thresholds (35 for bullish, 65 for bearish) in combination with other technical conditions.
SMA & MACD Filters – Confirms trade setups using trend (SMA) and momentum (MACD) indicators.
Volume & Price Action Filters – Optional volume filter and price movement checks ensure signals are only shown under specific market conditions.
Higher Timeframe RSI Filter – Optional filter for confirming trend strength from a higher timeframe.
Configurable Inputs – Users can adjust RSI length, MACD parameters, SMA period, and other filters to match their preferred trading style.
Usage:
Suitable for short-term trading or as a confirmation tool alongside other strategies.
Signals are designed for observation and strategy testing; they do not guarantee results.
Alerts can be set up for buy and sell bounce signals to assist in monitoring potential setups in real-time.
Skywalker Strong Signals The Skywalker Scanner is a technical analysis tool designed to help traders evaluate market conditions by combining multiple signals into a single system.
Key Features:
EMA Trend Tracking – Fast and slow EMAs visually highlight bullish and bearish market zones.
RSI Alerts – Provides warnings when RSI reaches overbought or oversold levels to help identify potential momentum shifts.
Volume Filter – Signals are confirmed only when volume exceeds a moving average threshold.
Buy & Sell Conditions – Alerts trigger when EMA crossovers align with RSI thresholds, MACD momentum, and candle confirmation.
How It Works:
Instead of relying on a single indicator, the Skywalker Scanner filters setups so that buy or sell signals only appear when multiple conditions agree. This aims to reduce false positives and provide traders with clearer potential trade opportunities.
Usage:
Suitable across multiple timeframes, from scalping to swing trading.
Can be used standalone or as a confirmation tool alongside other strategies.
Does not guarantee results; intended for educational purposes only.
CandleMap — MTF Price Delivery PhasesCandleMap — MTF Price Delivery Phases
This indicator highlights different price delivery phases across one or two higher timeframes, helping traders visualize when markets are consolidating, retracing, or expanding.
It overlays these phases directly on the chart using color-coded boxes, labels, and optional midlines.
How it works:
- Up to 2 higher timeframes can be selected (e.g., H1 and H4).
- For each aggregated candle on the chosen timeframe, the tool detects whether the market is in:
Consolidation
Retracement
Expansion
- Each phase is drawn as a box with optional labels and a dashed midline (average of high and low).
How to use:
- Apply on intraday charts while enabling one or more higher timeframes.
- Use consolidation phases to spot potential accumulation or compression zones.
- Expansion phases may highlight breakout opportunities or directional bias.
- Colors are used to clearly distinguish between phases.
Notes:
- This is an invite-only script. Access must be requested from the author.
open 5 min range 09:00/15:30the indicator will remove himself after 2h. it´s for trading in the 1min chart. wait for breakout, than retest and after that trade away from the boxes if u see price action.
Pulse FlowPulse Flow is a market structure indicator that extracts the hidden rhythm of price. It combines micro-structure detection with a rule-based trend engine, making waves and turning points visible in real time. Instead of drawing swings by hand or guessing breakouts, Pulse Flow enforces strict, objective rules for what counts as structure.
What it shows
Micro-Structure (Fractals): Internal swings are extracted from baseline crosses (EMA or ALMA). These fractals show how price oscillates inside the wave, providing context for micro pullbacks and internal breaks.
Trend (HH, HL, LH, LL): Pulse Flow uses a finite state machine (FSM) to track the current trend. Every trend represents a wave.
- Confirmed higher highs and higher lows define bullish waves.
- Confirmed lower highs and lower lows define bearish waves.
- When a wave breaks, a new wave begins. Turning points are explicitly marked as WH (wave high) and WL (wave low).
Active Range (RL & RH): The indicator continuously maintains the current range, based on closing prices rather than wicks. This ensures consistent behavior during liquidity events, where extremes are often tested intrabar.
Retracement Levels (0.50 & 0.71): Inside each active range, Pulse Flow plots the midrange and the 0.71 “optimal entry zone,” highlighting areas where pullbacks most often react.
Breakout Confirmation: A breakout is only valid if:
- The close extends beyond RL or RH by at least an ATR-based threshold.
- A second candle confirms the move.
This filters false signals and ensures structural integrity.
How it helps
Pulse Flow helps traders by taking the guesswork out of structure. Instead of debating whether a high or low should count, the indicator applies objective rules and marks every confirmed swing directly on the chart. Each wave is highlighted the moment the trend flips, so you always see where the market has turned and which direction the active wave is heading. The internal fractal structure reveals how price moves within the range, while the explicit HH, HL, LH, and LL points define the external trend. This distinction allows you to make tactical decisions on internal breaks and strategic decisions on external breaks, giving you clarity across timeframes. Because ranges are calculated using closing prices, the levels remain stable even when liquidity sweeps occur, making the indicator reliable in volatile markets. Combined with automatically plotted retracement levels, you gain a consistent framework for spotting likely reaction zones without redrawing lines or relying on subjective judgment.
How it works
Under the hood, Pulse Flow combines two engines. The pivot engine extracts micro swings by tracking how price crosses a baseline, which can be either EMA or ALMA, depending on your settings. Each cross defines a candidate high or low, and together these pivots form the fractal zigzag that represents the market’s micro-structure. On top of this, a finite state machine manages the active range. It tracks the range high and range low, validates breakouts only when price closes beyond these levels with ATR-based confirmation, and waits for a pullback before locking in the new structure. When the FSM confirms a new trend, Pulse Flow explicitly marks the turning point as a wave high or wave low. In this way, every confirmed HH, HL, LH, and LL is not a guess but the logical outcome of strict structural rules. The interaction between pivots and the FSM creates a complete and consistent map of the market’s waves, from micro oscillations to macro trend shifts.
Summary
Pulse Flow extracts micro-structure, defines waves, and highlights turning points. It shows the active range with key retracement levels and confirms breakouts with ATR + candle logic. By using closing prices to define RL/RH, it stays consistent even through liquidity sweeps.
For traders who trade based on structure, Pulse Flow is not just another tool. It is a framework: a rule-based map of how markets actually move in waves.