New York Session at 15:30 UTC+1 (Berlin)Verwendungszweck des Indikators:
📌 New York Session Opening:
Die Linie markiert den Beginn der New Yorker Handelssitzung (15:30 Uhr deutscher Zeit).
Diese Uhrzeit ist für Trader wichtig, da hohe Liquidität und Volatilität auftreten.
📌 Markierung eines wichtigen Marktzeitpunkts:
Viele Trader nutzen 15:30 Uhr als Einstiegspunkt oder zur Analyse von Preisbewegungen.
Die vertikale Linie hilft, historische Muster oder Preisreaktionen zum Session-Start zu identifizieren.
📌 Flexibilität und Anpassung:
Nutzer können die Linienfarbe und den Stil (durchgezogen oder gestrichelt) anpassen.
Funktioniert auf allen Timeframes und bleibt als visuelle Orientierung erhalten.
Chart-Muster
Zona Momentum Strategysilakan dipakai sepuasnya untuk hasil maksimal. jadikan momentum buy dan sell dengan baik dan jangan bingung
Proper Multi-Timeframe Trend Analysisa table showing the trend (bullish or bearish) for the daily, 4-hour, 1-hour, and 15-minute timeframes based on the last 15 trading session candles.
To determine the proper trend analysis based on the last 15 candles, we need to analyze whether the price is consistently moving upward (bullish) or downward (bearish) over the last 15 candles. This can be achieved by calculating the slope of a linear regression line or by checking if the highs and lows are consistently increasing or decreasing.
EMA Cross Indicator with 55 EMAAn EMA Ribbon with a 55 EMA is a powerful technical indicator used to identify trends, momentum shifts, and potential trading opportunities. The EMA (Exponential Moving Average) is a weighted moving average that places more emphasis on recent price action, making it more responsive to price changes compared to a Simple Moving Average (SMA).
Macro Stock IndicatorHi, this plots fundamentals of a stock's underlying value instead of its price. This works 99% times. You can check.
BTC Scalping StrategyBTC 5min scalping strategy that uses 9 and 21 ema crossover mixed with RSI and volume.
Momentum Day Trading Setup//@version=6
indicator("Momentum Day Trading Setup", overlay=true)
// VWAP
vwap = ta.vwap(close) // Fixed VWAP issue
plot(vwap, title="VWAP", color=color.blue, linewidth=2)
// EMA 9 & EMA 20
ema9 = ta.ema(close, 9)
ema20 = ta.ema(close, 20)
plot(ema9, title="EMA 9", color=color.green, linewidth=2)
plot(ema20, title="EMA 20", color=color.orange, linewidth=2)
// MACD
= ta.macd(close, 12, 26, 9)
plot(macdLine, title="MACD Line", color=color.blue, linewidth=2)
plot(signalLine, title="Signal Line", color=color.red, linewidth=2)
// RSI
rsi = ta.rsi(close, 14)
rsiOverbought = 80
rsiOversold = 20
hline(rsiOverbought, "Overbought", color=color.red)
hline(rsiOversold, "Oversold", color=color.green)
plot(rsi, title="RSI", color=color.purple, linewidth=2)
// ATR (Average True Range)
atr = ta.atr(14)
plot(atr, title="ATR", color=color.gray, linewidth=1)
// Volume with Moving Average
vol = volume
volMa = ta.sma(vol, 20)
plot(vol, title="Volume", color=color.new(color.blue, 70), style=plot.style_columns) // Fixed transparency issue
plot(volMa, title="Volume MA (20)", color=color.orange, linewidth=2)
// Entry Signal (Bullish Breakout)
bullishEntry = ta.crossover(ema9, ema20) and close > vwap and rsi > 50 and macdLine > signalLine
plotshape(bullishEntry, title="Bullish Entry", location=location.belowbar, color=color.green, style=shape.labelup, size=size.small)
// Exit Signal (Bearish Reversal)
bearishExit = ta.crossunder(ema9, ema20) or close < vwap or macdLine < signalLine
plotshape(bearishExit, title="Bearish Exit", location=location.abovebar, color=color.red, style=shape.labeldown, size=size.small)
Multi-Timeframe RSI Strategyđiều kiện 1 - tại khung thời gian đang chạy (TF0) RSI14 < (vtRSImua)
ema9 (của rsi14 tại TF0) CẮT LÊN wma45 (của rsi14 tại TF0) VÀ rsi14 < Buy limit level0
điều kiện 2: đồng thời tại khung timeframe1 (TF1) : Nếu rsi14 > ema9 (của rsi14) của khung timeframe1 TF1
điều kiện 3: đồng thời kiểm tra khung Custom timeframe 2 (TF2) rsi14 > EMA9 (của rsi14 của TF2)
Hoặc:
điều kiện 1 - tại khung thời gian đang chạy (TF0) RSI14 > (vtRSImua) và
ema9 (của rsi14 tại TF0) CẮT LÊN wma45 (của rsi14 tại TF0) VÀ rsi14 < rsi Buy limit level0
điều kiện 2: đồng thời tại khung timeframe1 (TF1) : Nếu rsi14 > WMA45 (của rsi14) của khung timeframe1 TF1
điều kiện 3: đồng thời kiểm tra khung Custom timeframe 2 (TF2) rsi14 > WMA45 (của rsi14 của TF2)
cashdata by farashahThis indicator is designed to generate wave charts following the NeoWave method.
NeoWave, developed by Glenn Neely in 1990, offers a scientific and objective approach to wave analysis.
A Cash Data is essential for accurate analysis, requiring highs and lows to be plotted in the exact order they occurred—a process that can be complex and time-consuming.
The indicator automates this process by identifying highs and lows for any symbol and timeframe, plotting them in real-time.
For instance, on a monthly timeframe, it finds yearly highs and lows and arranges them sequentially, forming a "Yearly Wave Chart" for NeoWave analysis.
•Generates Wave Charts for multiple timeframes(yearly, monthly, weekly, daily, hourly, minutely).
• Provides real-time auto-updating Wave Charts.
• Supports plotting based on calendar time, bar count, or equal distances.
• Compatible with all account types.
Candle Color Confirmation Strategy// TradingView (Pine Script v5) Strategy
//@version=5
strategy("Candle Color Confirmation Strategy", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// Input: Time confirmation in seconds
confirmTime = input(5, title="Seconds to Confirm")
// Track the candle open and its color consistency
var float openPrice = na
var bool isConfirmed = false
var bool isBullish = false
var int startTime = na
if bar_index != bar_index // New candle
openPrice := open
isConfirmed := false
startTime := timenow
if not isConfirmed and (timenow - startTime) >= confirmTime * 1000
if close > openPrice and high == close // Green candle stays green
isBullish := true
strategy.entry("Buy", strategy.long)
isConfirmed := true
else if close < openPrice and low == close // Red candle stays red
isBullish := false
strategy.entry("Sell", strategy.short)
isConfirmed := true
Key Levels SpacemanBTC Jiri PribylThis is the Spaceman BTC indicator at key levels with customized colors specifically for Jiří Přibyl.
Divergence IQ [TradingIQ]Hello Traders!
Introducing "Divergence IQ"
Divergence IQ lets traders identify divergences between price action and almost ANY TradingView technical indicator. This tool is designed to help you spot potential trend reversals and continuation patterns with a range of configurable features.
Features
Divergence Detection
Detects both regular and hidden divergences for bullish and bearish setups by comparing price movements with changes in the indicator.
Offers two detection methods: one based on classic pivot point analysis and another that provides immediate divergence signals.
Option to use closing prices for divergence detection, allowing you to choose the data that best fits your strategy.
Normalization Options:
Includes multiple normalization techniques such as robust scaling, rolling Z-score, rolling min-max, or no normalization at all.
Adjustable normalization window lets you customize the indicator to suit various market conditions.
Option to display the normalized indicator on the chart for clearer visual comparison.
Allows traders to take indicators that aren't oscillators, and convert them into an oscillator - allowing for better divergence detection.
Simulated Trade Management:
Integrates simulated trade entries and exits based on divergence signals to demonstrate potential trading outcomes.
Customizable exit strategies with options for ATR-based or percentage-based stop loss and profit target settings.
Automatically calculates key trade metrics such as profit percentage, win rate, profit factor, and total trade count.
Visual Enhancements and On-Chart Displays:
Color-coded signals differentiate between bullish, bearish, hidden bullish, and hidden bearish divergence setups.
On-chart labels, lines, and gradient flow visualizations clearly mark divergence signals, entry points, and exit levels.
Configurable settings let you choose whether to display divergence signals on the price chart or in a separate pane.
Performance Metrics Table:
A performance table dynamically displays important statistics like profit, win rate, profit factor, and number of trades.
This feature offers an at-a-glance assessment of how the divergence-based strategy is performing.
The image above shows Divergence IQ successfully identifying and trading a bullish divergence between an indicator and price action!
The image above shows Divergence IQ successfully identifying and trading a bearish divergence between an indicator and price action!
The image above shows Divergence IQ successfully identifying and trading a hidden bullish divergence between an indicator and price action!
The image above shows Divergence IQ successfully identifying and trading a hidden bearish divergence between an indicator and price action!
The performance table is designed to provide a clear summary of simulated trade results based on divergence setups. You can easily review key metrics to assess the strategy’s effectiveness over different time periods.
Customization and Adaptability
Divergence IQ offers a wide range of configurable settings to tailor the indicator to your personal trading approach. You can adjust the lookback and lookahead periods for pivot detection, select your preferred method for normalization, and modify trade exit parameters to manage risk according to your strategy. The tool’s clear visual elements and comprehensive performance metrics make it a useful addition to your technical analysis toolbox.
The image above shows Divergence IQ identifying divergences between price action and OBV with no normalization technique applied.
While traders can look for divergences between OBV and price, OBV doesn't naturally behave like an oscillator, with no definable upper and lower threshold, OBV can infinitely increase or decrease.
With Divergence IQ's ability to normalize any indicator, traders can normalize non-oscillator technical indicators such as OBV, CVD, MACD, or even a moving average.
In the image above, the "Robust Scaling" normalization technique is selected. Consequently, the output of OBV has changed and is now behaving similar to an oscillator-like technical indicator. This makes spotting divergences between the indicator and price easier and more appropriate.
The three normalization techniques included will change the indicator's final output to be more compatible with divergence detection.
This feature can be used with almost any technical indicator.
Stop Type
Traders can select between ATR based profit targets and stop losses, or percentage based profit targets and stop losses.
The image above shows options for the feature.
Divergence Detection Method
A natural pitfall of divergence trading is that it generally takes several bars to "confirm" a divergence. This makes trading the divergence complicated, because the entry at time of the divergence might look great; however, the divergence wasn't actually signaled until several bars later.
To circumvent this issue, Divergence IQ offers two divergence detection mechanisms.
Pivot Detection
Pivot detection mode is the same as almost every divergence indicator on TradingView. The Pivots High Low indicator is used to detect market/indicator highs and lows and, consequently, divergences.
This method generally finds the "best looking" divergences, but will always take additional time to confirm the divergence.
Immediate Detection
Immediate detection mode attempts to reduce lag between the divergence and its confirmation to as little as possible while avoiding repainting.
Immediate detection mode still uses the Pivots Detection model to find the first high/low of a divergence. However, the most recent high/low does not utilize the Pivot Detection model, and instead immediately looks for a divergence between price and an indicator.
Immediate Detection Mode will always signal a divergence one bar after it's occurred, and traders can set alerts in this mode to be alerted as soon as the divergence occurs.
TradingView Backtester Integration
Divergence IQ is fully compatible with the TradingView backtester!
Divergence IQ isn’t designed to be a “profitable strategy” for users to trade. Instead, the intention of including the backtester is to let users backtest divergence-based trading strategies between the asset on their chart and almost any technical indicator, and to see if divergences have any predictive utility in that market.
So while the backtester is available in Divergence IQ, it’s for users to personally figure out if they should consider a divergence an actionable insight, and not a solicitation that Divergence IQ is a profitable trading strategy. Divergence IQ should be thought of as a Divergence backtesting toolkit, not a full-feature trading strategy.
Strategy Properties Used For Backtest
Initial Capital: $1000 - a realistic amount of starting capital that will resonate with many traders
Amount Per Trade: 5% of equity - a realistic amount of capital to invest relative to portfolio size
Commission: 0.02% - a conservative amount of commission to pay for trade that is standard in crypto trading, and very high for other markets.
Slippage: 1 tick - appropriate for liquid markets, but must be increased in markets with low activity.
Once more, the backtester is meant for traders to personally figure out if divergences are actionable trading signals on the market they wish to trade with the indicator they wish to use.
And that's all!
If you have any cool features you think can benefit Divergence IQ - please feel free to share them!
Thank you so much TradingView community!
GODMODE X VIP 🔥🚨Buy & Sell Signals ✅
Stop Loss + Take Profit ✅
Background Confirmation ✅
Non-Repaint ✅
Telegram + Email Alerts 🔥 (Coming Next Update)
Full Crypto + Forex + Stocks
Ultimate Buy & Sell Indicator PRO 🔥sample No Repaint ✅
Automatic Buy & Sell Alerts ✅
Volume Spike Filter ✅
Stop Loss & Take Profit Auto Levels ✅
Background Color Confirmation ✅
Full Crypto + Forex + Stocks ✅
Scalping + Swing + Long Term
Trading ChecklistChecklist metodología de la academia Streetpips para las entradas. Donde estoy, Mapa de intención, tipo de movimiento (continuación, retroceso, Reversión) y el modelo de confirmación ( mod 1,2,3,4 y/o typ enseñados en la academia)
Triangle Reversal IndicatorTriangle Reversal Indicator – A Visual Tool for Identifying Reversal Patterns
This indicator is designed to highlight potential trend reversal moments by comparing the current candle with the previous one. It offers a unique approach by focusing on distinct candle patterns rather than generic trend indicators, making it a valuable addition to your trading toolkit.
How It Works:
For a bullish signal, the indicator checks if:
The current candle is bullish (closing higher than it opens) while the previous candle was bearish.
The current candle’s low breaches the previous bearish candle’s low.
The current candle’s close is above the previous bearish candle’s close.
When these conditions are met, a tiny green triangle is plotted below the candle to signal a potential bullish reversal.
Conversely, for a bearish signal, it verifies if:
The current candle is bearish (closing lower than it opens) following a bullish candle.
The current candle’s high exceeds the previous bullish candle’s high.
The current candle’s close falls below the previous bullish candle’s close.
If all conditions are satisfied, a small red triangle appears above the candle to indicate a potential bearish reversal.
How to Use:
Simply apply the indicator on your chart and look for the tiny triangles that appear above or below the candles. These markers can serve as an additional visual cue when confirming entry or exit points, but it’s best used alongside your other analysis techniques.
Customization Options:
Users can further enhance the script by adding inputs for lookback periods, adjusting the triangle size, or modifying colors to match their chart themes.
15-5 Pin BarThis indicator will show us what our entry candle is.
It is measured to perfection so there will be no need to measure the entry candle.
MACD + RSI Bullish & Bearish AlertsOverview:
This indicator provides real-time alerts when both MACD and RSI confirm a bullish or bearish trend. It is designed for traders who want high-confidence entry signals based on momentum and trend strength.
How It Works:
- Bullish Alert (Green Triangle ⬆️):
- MACD Line crosses above Signal Line (bullish crossover).
- RSI crosses above 50, confirming momentum shift.
- Bearish Alert (Red Triangle ⬇️):
- MACD Line crosses below Signal Line (bearish crossover).
- RSI crosses below 50, signaling weakening strength.
Features:
- Visual Markers: Large green triangle (bullish) and red triangle (bearish) for clear identification.
- Audible & Push Alerts: Get notified via pop-ups, sound, mobile app, or email when conditions are met.
- Works on Any Timeframe: Ideal for scalpers (1-min) and swing traders (higher timeframes).
- Customizable: Easily adjust MACD and RSI settings to fit your strategy.