SENCER Matic (PRO)Pozitif ve negatif sinyaller içeren bir indikatördür uzman ekipler tarafından uydurulmuştur.
Candlestick analysis
Time Zone Highs and LowsThis Script Can be used for NSE India Opening, Middle and Closing Session. Considering the Equity Cash Market operates for 6 Hours Have divide the Session in three session.
Candle Size Alerts (Manual size)This TradingView Pine Script (v6) is an indicator that triggers alerts based on the size of the previous candle. Here's a breakdown of how it works:
1. Indicator Definition
//@version=6
indicator('Candle Size Alerts (Manual size)', overlay = true)
The script is written in Pine Script v6.
indicator('Candle Size Alerts (Manual size)', overlay = true):
Defines the indicator name as "Candle Size Alerts (Manual size)".
overlay = true means it runs directly on the price chart (not as a separate panel).
2. Calculate the Previous Candle's Body Size
candleSize = math.abs(close - open )
close and open refer to the previous candle’s closing and opening prices.
math.abs(...) ensures that the size is always a positive value, regardless of whether it's a green or red candle.
3. Define a User-Adjustable Candle Size Threshold
candleThreshold = input(500, title = 'Fixed Candle Size Threshold')
input(500, title = 'Fixed Candle Size Threshold'):
Allows users to set a custom threshold (default is 500 points).
If the previous candle's body size exceeds or equals this threshold, an alert is triggered.
4. Check if the Candle Size Meets the Condition
sizeCondition = candleSize >= candleThreshold
This evaluates whether the previous candle's size is greater than or equal to the threshold.
If true, an alert will be generated.
5. Determine Candle Color
isRedCandle = close < open
isGreenCandle = close > open
isRedCandle: The candle is red if the closing price is lower than the opening price.
isGreenCandle: The candle is green if the closing price is higher than the opening price.
6. Generate Alerts Based on Candle Color
if sizeCondition
if isRedCandle
alert('SHORT SIGNAL: Previous candle is RED, body size = ' + str.tostring(candleSize) + ' points (Threshold: ' + str.tostring(candleThreshold) + ')', alert.freq_once_per_bar)
else if isGreenCandle
alert('LONG SIGNAL: Previous candle is GREEN, body size = ' + str.tostring(candleSize) + ' points (Threshold: ' + str.tostring(candleThreshold) + ')', alert.freq_once_per_bar)
If the candle size meets the threshold (sizeCondition == true):
If red, a SHORT SIGNAL alert is triggered.
If green, a LONG SIGNAL alert is triggered.
alert.freq_once_per_bar ensures that alerts are sent only once per candle (avoiding repeated notifications).
How It Works in TradingView:
The script does not plot anything on the chart.
It monitors the previous candle’s body size.
If the size exceeds the threshold, an alert is generated.
Alerts can be used to notify the trader when big candles appear.
How to set Alerts in Trading View
1. Select Indicator – Ensure the indicator is added and properly configured.
2. Set Time Frame – Make sure it's appropriate for your trading strategy.
3. Open Alerts Panel – Click the "Alerts" tab or use the shortcut (Alt + A on Windows).
4. Create a New Alert – Click "+" or "Create Alert."
5. Select Condition – Pick the relevant indicator condition (e.g., "Candle Size Alerts(Manual size)").
6. Choose Alert Function – Default is "Any Alert() Function Call".
7. Set Expiration & Name – Define how long the alert remains active.
8. Configure Notifications – Choose between pop-up, email, webhook, or app notifications.
9. Create Alert – Click "Create" to finalize.
How to set the size manually:
Add the "Candle Size Alerts (Manual size)" Indicator to your chart.
Open Indicator Settings – Click on the indicator and go to the "Inputs" tab.
Set Fixed Size Threshold – Adjust the "Fixed Size Candle Threshold" to your desired value.
Click OK – This applies the changes.
Reset Alerts – Delete and recreate alerts to reflect the new threshold.
Happy Trading !!!!
BTC Scalping StrategyBTC 5min scalping strategy that uses 9 and 21 ema crossover mixed with RSI and volume.
NOMOUS/FRACTAL/VER2)노스트라다무스 프렉탈 시그널 VER.2
*****5분봉 캔들에 적용하는 지표입니다*********
- 피로감 없는 단타 매매를 위한 지표입니다.
- 물타기 매매가 아닌, 짧은 손절과 익절을 가져가는 매매법입니다.
- 시그널 이후 반대 반대편까지 도달 기준으로 승률 약 60~70%
- 5분봉 캔들에서 신뢰도가 가장 높습니다.
- 설정에서 시그널 알람 세팅이 가능합니다.
- 밴드 길이 기본값은 25 이고, 밴드 값 수정에 따라 시그널 신뢰도가 달라집니다.
- 노스트라다무스 자체제작 지표입니다.
SupertrendChỉ báo Super Trend – Công Cụ Xác Định Xu Hướng Mạnh Mẽ
1️⃣ Super Trend là gì?
Super Trend là một chỉ báo theo xu hướng (trend-following indicator) giúp xác định xu hướng tăng hoặc xu hướng giảm của thị trường. Chỉ báo này dựa trên Average True Range (ATR) để đo độ biến động và tạo ra một đường tín hiệu động trên biểu đồ giá.
2️⃣ Công thức tính Super Trend
Super Trend được tính dựa trên hai yếu tố chính:
Giá trị trung bình thực (ATR – Average True Range) để đo mức độ biến động
Hệ số nhân (Multiplier) để điều chỉnh độ nhạy của chỉ báo
Công thức tính:
✅ Upper Band = (High + Low) / 2 + Multiplier * ATR
✅ Lower Band = (High + Low) / 2 - Multiplier * ATR
3️⃣ Cách sử dụng Super Trend trong giao dịch
📌 Xác định xu hướng:
Khi đường Super Trend nằm dưới giá, xu hướng tăng (màu xanh) → Tín hiệu mua
Khi đường Super Trend nằm trên giá, xu hướng giảm (màu đỏ) → Tín hiệu bán
📌 Xác định điểm vào lệnh:
Mua khi Super Trend chuyển từ đỏ sang xanh
Bán khi Super Trend chuyển từ xanh sang đỏ
DIbbya Chhavi Daily LevelsLevels are created daily and above blue box you look for call buy and below blue box you loss for put buy following condition are must
1. Sensex/bnt/bankex first five min candle should be more than 150 points
2. Nifty first five min candle should be more than 55 points
3. Shares first five min point should be more than 55 points
*Dynamic Live Update with Four-Color Candles* Dynamic Live Label Update & Charting System with Four-Color Candles
This advanced trading system is designed to help traders visualize market structure, momentum shifts, and institutional activity in real time. By integrating Accumulation/Distribution, Swing High/Low levels, and Order Blocks into a four-color candle setup, it provides clearer insights into price action beyond traditional indicators.
Four-Color Candle System
Instead of relying only on standard red/green candles, this system highlights hidden market behavior:
Blue (Swing High / Accumulation & Bullish Order Flow)
Yellow (Swing Low / Distribution & Bearish Order Flow)
Red (Traditional Bearish Candles) → Standard bearish price movement.
Green (Traditional Bullish Candles) → Standard bullish price movement.
Key Features
Advanced Charting System
✔ Swing High/Low Candles – Identifies key support and resistance levels.
✔ Accumulation/Distribution Labels (ADL) – Tracks volume flow and market sentiment.
✔ Order Blocks (Bullish/Bearish) – Marks institutional buying/selling zones.
✔ Four-Color Candle System – Reveals hidden activity for better entry/exit decisions.
Bearish & Bullish Trend Analysis
✔ EMA-Based Trend Signals – Uses EMA 50/100 crossovers to detect trend shifts.
✔ Momentum Confirmation – Works with volume-based indicators to confirm trade setups.
Dynamic Label Updates (Live Metrics)
✔ Rolling Delta Volume (15-minute adjustable window) – Measures short-term order flow.
✔ Cumulative Delta Volume (1-hour adjustable window) – Tracks long-term volume imbalances.
✔ MFI (Money Flow Index) –Volume Weighted
✔ Swing High/Low Signal – Highlights areas of buyer/seller dominance.
• Customizable Toggles – Traders can enable/disable features like ADL, Order Blocks and SH/SL as needed.
How It Works
The script combines multiple indicators into one system:
✅ When EMA 50 crosses above EMA 100 → Bullish Bias signal
✅ When EMA 50 crosses below EMA 100 → Bearish Bias signal
✅ Live volume & delta metrics adjust in real-time to reflect market sentiment.
This system allows traders to make faster, more informed decisions by removing noise and focusing on live market dynamics rather than outdated static indicators.
Disclaimer
Important Notice:
This indicator is designed for informational and educational purposes only. The display, visualization, and formatting are uniquely developed for enhanced market analysis.
Ownership & Rights:
• The underlying trading logic, calculations, and methodologies may be derived from publicly available or proprietary sources and remain the intellectual property of their respective owners.
• The graphical representation, live label update system, and four-color candle structure are custom design elements intended to improve user experience.
• This script does not provide financial advice. Use at your own risk.
By using this indicator, you acknowledge that trading involves risk and that no system can guarantee profits. Always conduct your own research before making any financial decisions.
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)
Candle Close CountdownA simple indicator that counts down major candle closes.
This is especially useful if you're trading on low time frames but want to know when higher time frame candles close for volatility / reversal points.
It can also be useful to use it as a visual reminder to actually go check how a candle has closed.
- There are alerts for when a candle is going to close you can enable
- The text turns red 15% of the time BEFORE the candle closes
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)
Key Levels SpacemanBTC Jiri PribylThis is the Spaceman BTC indicator at key levels with customized colors specifically for Jiří Přibyl.
Short Only Timex Momentum Indicatormeu indicador trabalha com medias moveis para capturar fortes movimentos direcionais no mercado de cripto
54N Krypto TradingDieser Indikator beinhaltet:
6x EMAs für den aktuellen Timeframe
6x Daily EMAs
6x Weekly EMAs
Vector Candles
Long Only Timex Momentum Indicatormeu indicador trabalha com medias moveis para capturar fortes movimentos direcionais no mercado de cripto
15-Min Candle Breakout Strategy//@version=5
indicator("15-Min Candle Breakout Strategy", overlay=true)
// Define the session start time
startHour = 9
startMinute = 15
// Track the first 15-minute candle
isSessionStart = (hour == startHour and minute == startMinute)
var float firstHigh = na
var float firstLow = na
if (isSessionStart)
firstHigh := high
firstLow := low
// Draw the high and low lines
line.new(x1=bar_index , y1=firstHigh, x2=bar_index, y2=firstHigh, color=color.green, width=1)
line.new(x1=bar_index , y1=firstLow, x2=bar_index, y2=firstLow, color=color.red, width=1)
// Breakout signals
longSignal = (close > firstHigh)
shortSignal = (close < firstLow)
plotshape(longSignal, style=shape.labelup, color=color.green, size=size.small, location=location.belowbar, text="BUY")
plotshape(shortSignal, style=shape.labeldown, color=color.red, size=size.small, location=location.abovebar, text="SELL")
// Visualize breakout range
bgcolor(longSignal ? color.new(color.green, 90) : shortSignal ? color.new(color.red, 90) : na)
alertcondition(longSignal, title="Long Signal", message="Price broke above the first 15-min candle high")
alertcondition(shortSignal, title="Short Signal", message="Price broke below the first 15-min candle low")
// Optional: Reset the high and low at the start of the next day
if (hour == 0 and minute == 0)
firstHigh := na
firstLow := na
Pelata CandleSImple script that paints engulfing candles only if the close beyond previous close/ open
Market Trend Levels Detector With Signals [BigBeluga]Added signals version
Market Trend Levels Detector With Signals
Heikin Ashi Actual Close Price [BarScripts]This indicator plots a dot on your Heikin Ashi chart at the actual raw candle close - revealing the true market close that can differ from the averaged price displayed by Heikin Ashi candles.
Options to show close price on all candles or last X candles.
Please follow BarScripts if you like the indicator.
Candle Size Alert (Open-Close)This Pine Script is a TradingView indicator that checks the size of the previous candle's body (difference between the open and close prices) and triggers an alert if it exceeds a certain threshold.
Breakdown of the Script
1. Indicator Declaration
//@version=5
indicator("Candle Size Alert (Open-Close)", overlay=true)
//@version=5: Specifies that the script is using Pine Script v5.
indicator("Candle Size Alert (Open-Close)", overlay=true):
Creates an indicator named "Candle Size Alert (Open-Close)".
overlay=true: Ensures the script runs directly on the price chart (not in a separate panel).
2. User-Defined Threshold
candleThreshold = input.int(500, title="Candle Size Threshold")
input.int(500, title="Candle Size Threshold"):
Allows the user to set the threshold for candle body size.
Default value is 500 points.
3. Calculate Candle Size
candleSize = math.abs(close - open )
close and open :
close : Closing price of the previous candle.
open : Opening price of the previous candle.
math.abs(...):
Takes the absolute difference between the open and close price.
This gives the candle body size (ignoring whether it's bullish or bearish).
4. Check If the Candle Size Meets the Threshold
sizeCondition = candleSize >= candleThreshold
If the previous candle’s body size is greater than or equal to the threshold, sizeCondition becomes true.
5. Determine Candle Color
isRedCandle = close < open
isGreenCandle = close > open
Red Candle (Bearish):
If the closing price is less than the opening price (close < open ).
Green Candle (Bullish):
If the closing price is greater than the opening price (close > open ).
6. Generate Alerts
if sizeCondition
direction = isRedCandle ? "SHORT SIGNAL (RED)" : "LONG SIGNAL (GREEN)"
alertMessage = direction + ": Previous candle body size = " + str.tostring(candleSize) +
" points (Threshold: " + str.tostring(candleThreshold) + ")"
alert(alertMessage, alert.freq_once_per_bar)
If the candle body size exceeds the threshold, an alert is triggered.
direction = isRedCandle ? "SHORT SIGNAL (RED)" : "LONG SIGNAL (GREEN)":
If the candle is red, it signals a short (sell).
If the candle is green, it signals a long (buy).
The alert message includes:
Signal type (LONG/SHORT).
Candle body size.
The user-defined threshold.
How It Works in TradingView:
The script does not plot anything on the chart.
It monitors the previous candle’s body size.
If the size exceeds the threshold, an alert is generated.
Alerts can be used to notify the trader when big candles appear.
Spot - Fut spread v2The "Spot - Fut Spread v2"
indicator is designed to track the difference between spot and futures prices on various exchanges. It automatically identifies the corresponding instrument (spot or futures) based on the current symbol and calculates the spread between the prices. This tool is useful for analyzing the delta between spot and futures markets, helping traders assess arbitrage opportunities and market sentiment.
Key Features:
- Automatic detection of spot and futures assets based on the current chart symbol.
- Supports multiple exchanges, including Binance, Bybit, OKX, MEXC, BingX, Bitget, BitMEX, Deribit, Whitebit, Gate.io, and HTX.
- Flexible asset selection: the ability to manually choose the second asset if automatic selection is disabled.
- Spread calculation between futures and spot prices.
- Moving average of the spread for smoothing data and trend analysis.
Flexible visualization:
- Color indication of positive and negative spread.
- Adjustable background transparency.
- Text label displaying the current spread and moving average values.
- Error alerts in case of invalid data.
How the Indicator Works:
- Determines whether the current symbol is a futures contract.
- Based on this, selects the corresponding spot or futures symbol.
- Retrieves price data and calculates the spread between them.
- Displays the spread value and its moving average.
- The chart background color changes based on the spread value (positive or negative).
- In case of an error, the indicator provides an alert with an explanation.
Customization Parameters:
-Exchange selection: the ability to specify a particular exchange from the list.
- Automatic pair selection: enable or disable automatic selection of the second asset.
- Moving average period: user-defined.
- Colors for positive and negative spread values.
- Moving average color.
- Background transparency.
- Background coloring source (based on spread or its moving average).
Application:
The indicator is suitable for traders who analyze the difference between spot and futures prices, look for arbitrage opportunities, and assess the premium or discount of futures relative to the spot market.
Contact - t.me