AntoQQE - BarsThis is a conversion of the AntoQQE NinjaTrader indicator. It will color bars on chart based on histogram momentum value.
Candlestick analysis
NIFTY 50 Reversal Strategy🎯 Entry Rules:
🔴 Bearish Reversal Setup (Short Trade)
🔹 Conditions to Enter a SHORT Trade:
Price hits a strong resistance (Pivot Point, Supply Zone, or Fibonacci 61.8%)
Bearish candlestick confirmation:
Bearish Engulfing
Shooting Star (Long wick on top)
Doji (Indecision) after an uptrend
EMA Crossover: EMA 10 crosses below EMA 50
RSI above 70 (overbought) or shows Bearish Divergence
VWAP Rejection (Price touches VWAP & drops)
Volume Drops or Spikes Bearishly (Volume confirmation)
✅ ENTRY: Enter a SHORT position on the next candle close after confirmation.
🎯 TARGETS:
Target 1: Next Pivot Support or 0.5% drop
Target 2: Fibonacci 50% retracement
Target 3: VWAP Mean Reversion
🛑 STOP-LOSS:
Above the recent swing high / wick (+0.2% buffer)
ATR-based SL for volatility
🟢 Bullish Reversal Setup (Long Trade)
🔹 Conditions to Enter a LONG Trade:
Price hits a strong support (Pivot Point, Demand Zone, or Fibonacci 61.8%)
Bullish candlestick confirmation:
Bullish Engulfing
Hammer / Pin Bar (Long wick at bottom)
Doji (Indecision) at Support
EMA Crossover: EMA 10 crosses above EMA 50
RSI below 30 (oversold) or shows Bullish Divergence
VWAP Support (Price touches VWAP & bounces)
Volume Surge in Bullish Candles
✅ ENTRY: Enter a LONG position on the next candle close after confirmation.
🎯 TARGETS:
Target 1: Next Pivot Resistance or 0.5% rise
Target 2: Fibonacci 50% retracement
Target 3: VWAP Mean Reversion
🛑 STOP-LOSS:
Below the recent swing low / wick (-0.2% buffer)
ATR-based SL for volatility
1-3-1 Setup This script highlights the last 1 on a 1-3-1 setup. You have to be on the 12hr time frame. So every last 1 of a 1-3-1 will be highlighted. This is great for backtesting.
1-3-1 12H ScannerIf you apply an alert to any stock and make it open ended exp. You make sure it alerts once every bar close, on a 12hr interval/time frame. You should be alerted every time there is a valid 1-3-1 most recent on that stock. I will update this script as I go because I think it needs fine tweaking.
Range Chart Hammer Detector (Strict Outside Cloud & Below Kijun)Kumo Twist indicator with 22 range setting.
This uses hammer candle stick on 22 range and plots the buy as well as looks at KUMO twist that occurs. it can be used in 15 minute and 22 range do not strictly follow use it as a guide of overextension and opporunity to scalp in with confluence such as 4 hour EDGE TO EDGE cloud trade or a 15 - 30 minute edge to edge cloud trade COMBINED with Kumo twist on the 22 RANGE.
Daily Cycle high/low by brijKey Features:
✅ Custom Session Selection: Users can define a specific session (default: 09:00-10:00 UTC+1)
✅ Session High/Low Tracking: Plots the highest and lowest price of the session
✅ Real-Time Updates: Adjusts as new bars are formed within the session
✅ Visual Box Representation: Highlights the session range with a colored box
✅ Alerts: Notifies when the session starts or ends
Use Case:
This indicator is useful for traders using Opening Range Breakout (ORB) strategies, as it helps identify key support/resistance levels for potential trade entries. 🚀
Multi-Timeframe SMA ComparisonThe indicator will display a table on your TradingView chart, showing whether the current price is above or below two SMAs (default lengths of 20 and 200) across multiple timeframes. You’ll be able to choose which timeframes to display (e.g., 1m, 5m, 15m, etc.) and customize the table’s appearance.
Table Display:
A table showing up to 5 user-defined timeframes.
For each timeframe, display whether the current price is above or below two SMAs (e.g., SMA 20 and SMA 200).
Use green up triangles (▲) for "price above SMA" and red down triangles (▼) for "price below SMA".
Customization:
Users can set the lengths of the two SMAs.
Users can choose up to 5 timeframes (e.g., 1m, 5m, 15m, 1H, etc.).
Table customization options: position on the chart, font size, and colors (font, border, background, up/down symbols).
Hourly Cycle High/Low by BrijKey Features
16 Custom Sessions:
Define up to 16 custom time ranges (e.g., 09:00-10:00, 11:00-12:00, etc.).
Each session is independent and can be configured with its own time range and UTC offset.
Dynamic Boxes:
A box is drawn for each session, representing the high and low prices during that session.
The box dynamically updates as new highs or lows are formed within the session.
Session Labels:
A label is displayed on top of each box, showing the session name (e.g., "Session 1", "Session 2", etc.).
The label moves dynamically with the box as the session progresses.
Customizable Colors:
Each session's box and label can be customized with different colors for better visualization.
No Plots:
To stay within TradingView's 64-output limit, the indicator does not plot the high and low levels as separate lines. Instead, it focuses on the boxes and labels.
VWAP + RSI + MACD Strategy + Risk Management// TradingView Pine Script for VWAP + RSI + MACD Strategy with Risk Management
//@version=5
indicator("VWAP + RSI + MACD Strategy + Risk Management", overlay=true)
// VWAP Calculation
vwap_value = ta.vwap
plot(vwap_value, title="VWAP", color=color.blue, linewidth=2)
// RSI Calculation
rsi_length = 14
rsi_value = ta.rsi(close, rsi_length)
plot(rsi_value, title="RSI", color=color.purple, linewidth=2)
// MACD Calculation
= ta.macd(close, 12, 26, 9)
macdBullish = ta.crossover(macdLine, signalLine)
macdBearish = ta.crossunder(macdLine, signalLine)
// Entry Conditions
bullish_signal = ta.crossover(close, vwap_value) and rsi_value > 50 and macdBullish
bearish_signal = ta.crossunder(close, vwap_value) and rsi_value < 50 and macdBearish
// Stop-Loss Conditions (Risk Management)
stop_loss_long = close < vwap_value // Exit long if price drops below VWAP
stop_loss_short = close > vwap_value // Exit short if price rises above VWAP
// Alerts for Buy/Sell Signals
alertcondition(bullish_signal, title="Bullish Entry", message="Price above VWAP, RSI > 50, MACD Bullish")
alertcondition(bearish_signal, title="Bearish Entry", message="Price below VWAP, RSI < 50, MACD Bearish")
alertcondition(stop_loss_long, title="Exit Long", message="Price dropped below VWAP - Consider exiting long position")
alertcondition(stop_loss_short, title="Exit Short", message="Price rose above VWAP - Consider exiting short position")
// Background Highlighting
bgcolor(bullish_signal ? color.green : bearish_signal ? color.red : na, transp=85)
RSI and EMA Strategy with LabelsVERY GOOD, SCRIPT for buy or sell, mua và bán như 1 cái máy và lời lỗ liên tục để đốt tiền sau đó sẽ thấy được vấn đề và từ đó không mua bán nữa mà giải nghệ đi làm mướn
AntoQQE - BarsThis script is a variation on the QQE (Quantitative Qualitative Estimation) concept applied to RSI. It calculates a smoothed RSI line, then determines a “Dynamic Average Range” around that line. By tracking the RSI’s movement relative to these upper (shortBand) and lower (longBand) levels, it determines when price momentum shifts enough to suggest a possible trend flip. The script plots color-coded candles based on these momentum conditions:
• RSI Calculation and Smoothing
An RSI value is obtained over a specified period, then smoothed by an EMA. This smoothed RSI serves as the core measure of momentum.
• Dynamic Average Range (DAR)
The script computes the volatility of the smoothed RSI using two EMAs of its bar-to-bar movements. It multiplies this volatility factor by a QQE multiplier to create upper and lower bands that adapt to changes in RSI volatility.
• Trend Flips
When the smoothed RSI crosses above or below its previous band level (shortBand or longBand), the script interprets this as a shift in momentum and sets a trend state accordingly (long or short).
• Candle Coloring
Finally, the script colors each candle according to how far the smoothed RSI is from a neutral baseline of 50:
Candles turn green when the RSI is sufficiently above 50, suggesting bullish momentum.
Candles turn red when the RSI is sufficiently below 50, indicating bearish momentum.
Candles turn orange when they are near the 50 level, reflecting a more neutral or transitional phase.
Traders can use these colored candles to quickly see when the RSI’s momentum has moved into overbought/oversold zones—or is shifting between bullish and bearish conditions—without needing to consult a separate oscillator window. The adaptive nature of the band calculations can help in spotting significant shifts in market sentiment and volatility.
Hammer Candle Alert//@version=5
indicator("Hammer Candle Alert", overlay=true)
// Hammer Candle ki pehchan ke liye conditions
body_size = math.abs(close - open)
upper_shadow = high - math.max(close, open)
lower_shadow = math.min(close, open) - low
total_range = high - low
is_hammer = (lower_shadow >= 2 * body_size) and (upper_shadow <= body_size * 0.5) and (total_range > 0)
// Alert generate karne ke liye condition
if (is_hammer)
alert("Hammer Candle Formed!", alert.freq_once_per_bar_close)
// Hammer Candle ko chart par dikhane ke liye
plotshape(series=is_hammer, location=location.belowbar, color=color.green, style=shape.labelup, text="Hammer")
High Probability Liquid Bar Signals high probability liquid bar and show if the red bar generates sell signal and if the green bar generates buy signal
ForexMasterStochastic//@version=5
indicator(title="ForexMasterStochastic", shorttitle="Stoch", format=format.price, precision=2, timeframe="", timeframe_gaps=true)
periodK = input.int(14, title="%K Length", minval=1)
smoothK = input.int(3, title="%K Smoothing", minval=1)
periodD = input.int(3, title="%D Smoothing", minval=1)
k = ta.sma(ta.stoch(close, high, low, periodK), smoothK)
d = ta.sma(k, periodD)
plot(k, title="%K", color=#2962FF)
plot(d, title="%D", color=#FF6D00)
h0 = hline(80, "Upper Band", color=#787B86)
hline(50, "Middle Band", color=color.new(#787B86, 50))
h1 = hline(20, "Lower Band", color=#787B86)
fill(h0, h1, color=color.rgb(33, 150, 243, 90), title="Background")
Weekend Filter Candlestick [odnac]Custom Candlestick Chart with Weekend Visibility Toggle
This indicator customizes the appearance of candlesticks by using a dark gray theme for better visibility.
Additionally, it provides an option to hide weekend candles, allowing traders to focus on weekday price action.
Features:
✅ Dark gray candlestick design for a clean and minimalistic look.
✅ Weekend hiding option – Users can enable or disable weekend candles with a simple toggle.
✅ Helps traders avoid weekend noise and focus on key market movements.
How to Use:
Add the indicator to your chart.
Use the "Hide Weekend Candles" setting to toggle weekend visibility.
When enabled, weekend candles will be hidden for a cleaner chart.
When disabled, all candles, including weekends, will be displayed.
This indicator is useful for traders who prefer to analyze weekday trends without unnecessary weekend fluctuations. 🚀
RSI Buy & Sell Signalgenerates Buy and Sell signals using the Relative Strength Index (RSI) indicator on TradingView. The indicator allows users to customize the RSI period length, overbought level (default 70), and oversold level (default 30). A Buy signal is triggered when the RSI crosses above the oversold level, indicating a potential price reversal from a bearish trend, marked by a green triangle below the candlestick with the label BUY. Conversely, a Sell signal is generated when the RSI crosses below the overbought level, signaling a potential price reversal from a bullish trend, marked by a red triangle above the candlestick with the label SELL. The script also includes automatic alert notifications through the alertcondition() function, helping traders receive instant updates without constant chart monitoring.
Combined NIFTY ATM Options ChartSK Combined ATM
Summary
Overlay/Compare: Quick and simple but keeps two separate data series on the same chart.
Spread Chart: Creates a synthetic price line (not candlesticks) showing the combined movement.
Pine Script: Offers full customization to build a synthetic candlestick chart by defining how to combine the OHLC data from both options.
ATR 3x Multiplier StrategyVolatility and Candle Spikes in Trading
Volatility
Volatility refers to the degree of variation in the price of a financial asset over time. It measures how much the price fluctuates and is often associated with risk and uncertainty in the market. High volatility means larger price swings, while low volatility indicates more stable price movements.
Key aspects of volatility:
Measured using indicators like Average True Range (ATR), Bollinger Bands, and Implied Volatility (IV).
Influenced by factors such as market news, economic events, and liquidity.
Higher volatility increases both risk and potential profit opportunities.
Candle Spikes
A candle spike (or wick) refers to a sudden price movement that forms a long shadow or wick on a candlestick chart. These spikes can indicate strong buying or selling pressure, liquidity hunts, or stop-loss triggers.
Types of candle spikes:
Bullish Spike (Long Lower Wick): Indicates buyers rejected lower prices, pushing the price higher.
Bearish Spike (Long Upper Wick): Suggests sellers rejected higher prices, pushing the price lower.
Stop-Loss Hunt: Market makers may trigger stop-losses by creating artificial spikes before reversing the price.
News-Induced Spikes: Economic data releases or unexpected events can cause sudden price jumps.
Understanding volatility and candle spikes can help traders manage risk, spot entry/exit points, and avoid false breakouts. 🚀📈
Wick to Candle Ratio with Multiple ColorsThe display in question likely provides visual representations or data related to the concept of the dot-based wick-to-body ratio. This ratio is a term often used in financial markets, particularly in the context of candlestick charts.
In candlestick charts, each candlestick represents a specific time period (such as a minute, hour, day, etc.) and provides four pieces of price data: the opening price, closing price, highest price, and lowest price of an asset within that timeframe. The "body" of the candlestick is the area between the opening and closing prices, while the "wicks" (or shadows) are the lines extending from the body, representing the highest and lowest prices during the period.
The dot-based wick-to-body ratio refers to a method of quantifying the relative lengths of the wicks compared to the body using dots or points. In this context, a display illustrating this ratio might show different candlesticks with highlighted dots representing the ratio between the length of the wick and the body. A higher ratio could indicate more volatility in price movements during that timeframe, while a lower ratio might suggest comparatively stable price action.
SQC These indicator will help you to find out quantity of stock based on your risk per trade divide by difference of high and low of candle.
Candle Size Compared to ATRThe "Candle Size Compared to ATR" indicator compares each candle's range to the ATR and colors it based on the strength of its close. Key features include:
Strong Candles & ATR Comparison: If a candle's range exceeds the ATR threshold, it is highlighted to indicate potential significant price movement.
Double Candle Covering Previous Plot: This feature identifies cases where a two-candle formation covers the previous range and meets ATR conditions, helping spot potential trend continuation or reversal signals.
Continuous Reversing Patterns: The indicator tracks reversal attempts by monitoring whether recent strong bullish or bearish candles are reversing previous highs or lows. If a reversal is in progress, it is marked with a colored circle, and an arrow appears when a new reversal starts.
This indicator helps traders quickly spot strong price moves, reversals, and trend continuations based on ATR dynamics.
IMMU TRADERthis is orb indicator for open range breakout you can use in stock or make a rule and enjoy