SBS Signals999It's a longTerm Indicator used for investment purposes only. Use monthly TF for better result and start investing whenever buy signal generate. an d wait for monthly candle close and still BUY signal is there then go for investment.
Indikator dan strategi
Volatility BandsThe Volatility Bands script is a custom indicator designed to help traders visualize volatility levels in the market. It calculates dynamic bands around a central moving average, providing insights into potential support and resistance levels based on recent price action.
The script calculates multiple volatility bands (u0, u1, u2, d0, d1, d2) that adjust based on recent price movements. The outer bands (u2 and d2) represent extreme volatility levels, while the inner bands (u0, u1, d0, d1) indicate more immediate support and resistance.
Look for price reactions at the band levels. A touch of the upper bands may indicate overbought conditions, while a touch of the lower bands may indicate oversold conditions.
Central Moving Average: A smoothed moving average that adapts to price changes, providing a clear trend direction.
The script has no input parameters.
Script Functions:
erf(x): Calculates the error function for a given input x. Used in the calculation of the smoothing factor for the UMA.
uma(input): Provides a smoothed average that adapts to recent price changes, reducing lag compared to traditional moving averages.
dev(input, mu): Used to calculate the volatility bands around the central moving average.
Trade & Run BB ZoneBB Zone – Bollinger Bands with Fibonacci Zones
This is the first element of a five-indicator dashboard, designed to be used in combination for a complete trading strategy. The integration of all indicators has involved both strategic and graphical research to find a balanced visual structure. This may not suit everyone, but for me, it was crucial that the visual representation carries meaning, given the time invested in its design.
BB Zone is a simple yet effective indicator that enhances Bollinger Bands by integrating the 50% key level along with Fibonacci levels (61.8% and 78.6%). It helps identify potential buy and sell zones during pullbacks or simply highlights a buy area, depending on your trading plan.
✔️ Automatic highlighting of key Fibonacci retracement zones.
✔️ Clear visual separation between buy and sell areas.
✔️ Adaptive sizing for M1, M5, M15, H1, H4, H12, and D (defaults to BB with 320 length on other timeframes).
COINBASE:BTCUSD
MSNR Trendline 3rd Touch MTF//@version=5
indicator("MSNR Trendline 3rd Touch MTF", overlay=true)
// 🎯 Multi Timeframe Source (Line Chart ke liye Close Price Use)
tf = input.timeframe("15", title="Higher Timeframe") // MTF selection
line_chart = request.financial(syminfo.tickerid, tf, "close") // request.security ko update kiya
// 🏆 Swing Highs & Lows (Market Structure)
left_bars = 10
right_bars = 5
swing_high = ta.pivothigh(line_chart, left_bars, right_bars)
swing_low = ta.pivotlow(line_chart, left_bars, right_bars)
// 🟢 Trendline Points Store
var float point1_high = na
var float point2_high = na
var float point3_high = na
var float point1_low = na
var float point2_low = na
var float point3_low = na
// 📌 1st & 2nd Touch Store Karna
if not na(swing_high)
point1_high := nz(point2_high, swing_high)
point2_high := swing_high
if not na(swing_low)
point1_low := nz(point2_low, swing_low)
point2_low := swing_low
// ✅ 3rd Touch Detect (Valid Entry)
third_touch_high = line_chart <= point1_high and line_chart <= point2_high
third_touch_low = line_chart >= point1_low and line_chart >= point2_low
if third_touch_high
point3_high := line_chart
if third_touch_low
point3_low := line_chart
// ✍️ Trendline Draw (Sirf 3rd Touch Valid)
var line trendline_high = na
var line trendline_low = na
if not na(point1_high) and not na(point2_high)
trendline_high := line.new(x1=bar_index , y1=point1_high, x2=bar_index, y2=point2_high, width=2, color=color.red)
if not na(point1_low) and not na(point2_low)
trendline_low := line.new(x1=bar_index , y1=point1_low, x2=bar_index, y2=point2_low, width=2, color=color.green)
// 🎯 Entry Confirmation (3rd Touch Price & Time)
if third_touch_high
label.new(bar_index, point3_high, "ENTRY 🔴 Price: " + str.tostring(point3_high) + " Time: " + str.tostring(time), color=color.red, textcolor=color.white, size=size.small)
if third_touch_low
label.new(bar_index, point3_low, "ENTRY 🟢 Price: " + str.tostring(point3_low) + " Time: " + str.tostring(time), color=color.green, textcolor=color.white, size=size.small)
SUIBTC 2H - EMA dip publicThis strategy will take advantage of market volatility to build BTC portfolio
24-hour VolumeThis is a great tool for momentum/volume traders. The bars will turn red when the first bar goes down after a huge influx of volume
ATR with Super Trend and Multi-Timeframe Filtering🛠 How It Works
1️⃣ ATR-Based Volatility Calculation
• The ATR is calculated to determine the SuperTrend stop level.
• ATR measures price volatility and acts as a dynamic support/resistance level.
2️⃣ SuperTrend for Trend Direction
• If the price is above the ATR-based stop level, it indicates an uptrend.
• If the price is below the ATR-based stop level, it indicates a downtrend.
• The stop level adjusts dynamically based on price movement.
3️⃣ Multi-Timeframe Signal Confirmation
• Signals are generated based on the main chart’s timeframe.
• The last signal from a lower timeframe (e.g., 1H, 2H) is fetched and analyzed.
• If the lower timeframe signal aligns with the main timeframe, it strengthens the trend.
• If the lower timeframe does not confirm or contradicts the signal, it weakens it.
4️⃣ Previous Period Buy/Sell Signal Analysis
• When trading on a higher timeframe, the indicator checks the last buy/sell signal from the lower timeframe.
• If the last signal was a buy, a green cross (X) appears below the candle.
• If the last signal was a sell, a red cross (X) appears above the candle.
BTCUSD Intraday - Strategia AI-likeStrategia di Trading ottimizzata sui 15 min. Utilizza indicatori suggeriti da AI per ottimizzare entrate e uscite
Daily Opening CandleThis is a simple indicator that marks the opening candle of the day,
works pretty much on any ticker,
Babs AlgoBabs Algo is a comprehensive technical analysis indicator and trading system developed in Pine Script (version 6) for the TradingView platform. Licensed under the Mozilla Public License 2.0, it is designed as an overlay indicator to assist traders in identifying trends, generating buy/sell signals, and providing market context through a customizable dashboard and support/resistance levels. The algorithm combines a channel-based trend detection system with a Hull Moving Average (HMA) for momentum confirmation, enhanced by visual aids and multi-timeframe analysis.
Indiq 2.0The functionality of the indicator includes the following features:
Moving Averages (MA):
The ability to adjust periods for short (short_ma_length) and long (long_ma_length) moving averages.
Display of moving averages on the chart:
Short MA (blue line).
Long MA (red line).
Generation of buy and sell signals:
Buy (BUY): When the short MA crosses the long MA from below.
Sell (SELL): When the short MA crosses the long MA from above.
Visualization of signals on the chart:
Buy is displayed as a green BUY marker below the candle.
Sell is displayed as a red SELL marker above the candle.
Liquidity Heatmap:
Liquidity levels:
Levels are calculated based on the closing price and a step (liquidity_step).
Levels are grouped by the nearest price values.
Volumes at levels:
Volume (volume) is accumulated for each liquidity level.
Levels with a volume less than min_volume_filter are not displayed.
Time filtering:
Levels that have not been updated within the last time_filter bars are not displayed.
Volatility filtering:
Levels are filtered by volatility (ATR) to exclude those outside the volatility range.
Color gradient:
The color of levels depends on volume (gradient from gradient_start_color to gradient_end_color).
Visualization:
Liquidity levels are displayed as horizontal lines.
Volumes at levels are shown as text labels.
RSI Filtering:
The ability to enable/disable RSI filtering (rsi_filter).
Liquidity levels are filtered based on overbought (rsi_overbought) and oversold (rsi_oversold) conditions.
Levels that do not meet RSI conditions are not displayed.
MACD Filtering:
The ability to enable/disable MACD filtering (macd_filter).
Liquidity levels are filtered based on the MACD histogram condition (e.g., only if the histogram is above zero).
Levels that do not meet MACD conditions are not displayed.
Display of Market Maker Buys:
Condition for market maker buys:
Volume exceeds the average volume over the last 20 bars by 2 times.
Closing price is above the opening price.
Market maker buys are displayed on the chart as orange MM Buy markers below the candle.
Indicator Settings:
Moving average parameters:
short_ma_length: Period for the short MA.
long_ma_length: Period for the long MA.
Liquidity heatmap parameters:
liquidity_step: Step between liquidity levels.
max_levels: Maximum number of levels to display.
time_filter: Time filter (last N bars).
min_volume_filter: Minimum volume for displaying a level.
volatility_filter: Volatility filter (ATR multiplier).
RSI parameters:
rsi_filter: Enable/disable RSI filtering.
rsi_overbought: Overbought RSI level.
rsi_oversold: Oversold RSI level.
MACD parameters:
macd_filter: Enable/disable MACD filtering.
Color settings:
gradient_start_color: Starting color of the gradient.
gradient_end_color: Ending color of the gradient.
Visualization:
Moving averages:
Short MA: Blue line.
Long MA: Red line.
Signals:
Buy: Green BUY marker.
Sell: Red SELL marker.
Liquidity heatmap:
Liquidity levels: Horizontal lines with a color gradient.
Volumes: Text labels at levels.
Market maker buys:
Orange MM Buy markers.
Alerts:
The ability to set alerts for signals:
Buy (BUY).
Sell (SELL).
Additional Features:
Flexible filter settings:
Filtering by time, volume, volatility, RSI, and MACD.
Extensibility:
The ability to add new filters (e.g., Stochastic, Volume Profile, etc.).
Visual customization:
Adjustment of colors, sizes, and display styles.
Summary:
The indicator provides a comprehensive tool for analyzing liquidity, generating trading signals, and tracking market maker activity. It combines:
A liquidity heatmap.
Signals based on moving averages.
Filtering by RSI and MACD.
Display of market maker buys.
Flexible settings and visualization.
This indicator is suitable for traders who want to analyze liquidity levels, identify entry and exit points, and monitor the actions of large market players.
9 EMA, 20 EMA & Engulfing Signals Rajdeep main 4This indicator is a combination of 3 major technical aspects.
1. 9 EMA
2. 20 EMA
3. Engulfing candles
This indicator gives you signals about a strong pullback for taking trade. This strategy works well in all timeframes.
How to take trade?
1. Wait for the signal to happen.
2. Observe the candle showing signal & take trade as soon as next candle crosses High of signal candle, vice versa.
3. SL will be signal candle's low, vice versa.
4. TGT will be 1:1 considering the SL.
5. Can trail SL.
Thank You.
MA Cross CounterMS cross counter ha ha ha
longCondition = ta.crossover(shortMA, longMA)
shortCondition = ta.crossunder(shortMA, longMA)
Engulfing ve EMA SinyaliAçıklamalar:
1. Engulfing Formasyonu: Boğa yutan mum (bullish engulfing) formasyonunu tespit eder. Önceki mumun gövdesini tamamen içine alan bir yükseliş mumu gereklidir.
2. EMA Şartı: EMA 5 > EMA 8 > EMA 13 sıralaması sağlanmalıdır.
3. Alım Sinyali (Long Entry): Engulfing formasyonu ve EMA sıralaması koşulları sağlandığında, strateji long pozisyon açar.
4. Grafikte EMA’lar Gösterilir: EMA 5 (mavi), EMA 8 (yeşil) ve EMA 13 (kırmızı) olarak çizilir.
5. Sinyal Tespiti: Koşullar sağlandığında arka planı yeşil renkle vurgular.
BETA: Smart Investor - Quarterly Earnings by tarunlalwani007A powerful TradingView plugin that displays quarterly and yearly earnings data directly on your charts, with customizable moving averages across multiple timeframes.
Your feedback helps make this plugin better!
Contact Twitter: @ask4tarun or email: tarunlalwani@gmail.com
✨ Key Features
📊 Earnings Analysis
Works with both stocks AND futures contracts
Displays quarterly (FQ) and yearly (FY) financial data
Customizable metrics for each display
Compare QoQ and YoY performance with visual indicators
Position tables anywhere on your chart
📈 Multi-Timeframe Moving Averages
Automatically adapts to chart timeframe
Daily: Up to 5 customizable MAs
Weekly: Up to 4 customizable MAs
Monthly: Up to 3 customizable MAs
Choose between EMA and SMA with custom colors
🏷️ Smart Tags & Company Information
Customizable information tags for quick company insights
Display key metrics like market cap, ROE, 52-week performance
SME status indicator for small/medium enterprises
FNO and lot size information for derivatives
📑 Customizable Financial Metrics
Choose from these metrics for both quarterly and yearly tables:
Sales
EPS (Earnings Per Share)
OPM (Operating Profit Margin)
P/E Ratio
PEG Ratio
Free Float (% and value)
Market Cap
🎨 Display Options
Comparison Visualization
Dots Mode: 🟢 for growth, 🔴 for decline
Percentage Mode: Clear numerical values (+15%, -8%)
Combined Mode: Both indicators (🟢+15%, 🔴-8%)
Customizable Layout
9 different table positions available
Adjustable text size (tiny to huge)
Light and dark theme support
Display up to 8 periods of historical data
🔧 Header Information Options
Display these key company details:
Company description
Market capitalization
Free float information
Listing year
Return on Equity (ROE)
Industry/Sector classification
Performance relative to 52-week high/low
FNO status and lot size
🚀 Getting Started
Add the indicator to your chart
Configure the metrics you want to display
Position the tables where you prefer
Customize colors and display options
Adjust moving averages for your trading style
📣 We Value Your Feedback!
This is a OPEN BETA version available till we make sure this offers you the best experience out there. Your suggestions and feedback will help shape future updates.
Connect with us:
Twitter: @ask4tarun
Email: tarunlalwani@gmail.com