GainzAlgo V2 [Alpha]// © GainzAlgo
//@version=5
indicator('GainzAlgo V2 ', overlay=true, max_labels_count=500)
show_tp_sl = input.bool(true, 'Display TP & SL', group='Techical', tooltip='Display the exact TP & SL price levels for BUY & SELL signals.')
rrr = input.string('1:2', 'Risk to Reward Ratio', group='Techical', options= , tooltip='Set a risk to reward ratio (RRR).')
tp_sl_multi = input.float(1, 'TP & SL Multiplier', 1, group='Techical', tooltip='Multiplies both TP and SL by a chosen index. Higher - higher risk.')
tp_sl_prec = input.int(2, 'TP & SL Precision', 0, group='Techical')
candle_stability_index_param = 0.7
rsi_index_param = 80
candle_delta_length_param = 10
disable_repeating_signals_param = input.bool(true, 'Disable Repeating Signals', group='Techical', tooltip='Removes repeating signals. Useful for removing clusters of signals and general clarity.')
GREEN = color.rgb(29, 255, 40)
RED = color.rgb(255, 0, 0)
TRANSPARENT = color.rgb(0, 0, 0, 100)
label_size = input.string('huge', 'Label Size', options= , group='Cosmetic')
label_style = input.string('text bubble', 'Label Style', , group='Cosmetic')
buy_label_color = input(GREEN, 'BUY Label Color', inline='Highlight', group='Cosmetic')
sell_label_color = input(RED, 'SELL Label Color', inline='Highlight', group='Cosmetic')
label_text_color = input(color.white, 'Label Text Color', inline='Highlight', group='Cosmetic')
stable_candle = math.abs(close - open) / ta.tr > candle_stability_index_param
rsi = ta.rsi(close, 14)
atr = ta.atr(14)
bullish_engulfing = close < open and close > open and close > open
rsi_below = rsi < rsi_index_param
decrease_over = close < close
var last_signal = ''
var tp = 0.
var sl = 0.
bull_state = bullish_engulfing and stable_candle and rsi_below and decrease_over and barstate.isconfirmed
bull = bull_state and (disable_repeating_signals_param ? (last_signal != 'buy' ? true : na) : true)
bearish_engulfing = close > open and close < open and close < open
rsi_above = rsi > 100 - rsi_index_param
increase_over = close > close
bear_state = bearish_engulfing and stable_candle and rsi_above and increase_over and barstate.isconfirmed
bear = bear_state and (disable_repeating_signals_param ? (last_signal != 'sell' ? true : na) : true)
round_up(number, decimals) =>
factor = math.pow(10, decimals)
math.ceil(number * factor) / factor
if bull
last_signal := 'buy'
dist = atr * tp_sl_multi
tp_dist = rrr == '2:3' ? dist / 2 * 3 : rrr == '1:2' ? dist * 2 : rrr == '1:4' ? dist * 4 : dist
tp := round_up(close + tp_dist, tp_sl_prec)
sl := round_up(close - dist, tp_sl_prec)
if label_style == 'text bubble'
label.new(bar_index, low, 'BUY', color=buy_label_color, style=label.style_label_up, textcolor=label_text_color, size=label_size)
else if label_style == 'triangle'
label.new(bar_index, low, 'BUY', yloc=yloc.belowbar, color=buy_label_color, style=label.style_triangleup, textcolor=TRANSPARENT, size=label_size)
else if label_style == 'arrow'
label.new(bar_index, low, 'BUY', yloc=yloc.belowbar, color=buy_label_color, style=label.style_arrowup, textcolor=TRANSPARENT, size=label_size)
label.new(show_tp_sl ? bar_index : na, low, 'TP: ' + str.tostring(tp) + ' SL: ' + str.tostring(sl), yloc=yloc.price, color=color.gray, style=label.style_label_down, textcolor=label_text_color)
if bear
last_signal := 'sell'
dist = atr * tp_sl_multi
tp_dist = rrr == '2:3' ? dist / 2 * 3 : rrr == '1:2' ? dist * 2 : rrr == '1:4' ? dist * 4 : dist
tp := round_up(close - tp_dist, tp_sl_prec)
sl := round_up(close + dist, tp_sl_prec)
if label_style == 'text bubble'
label.new(bear ? bar_index : na, high, 'SELL', color=sell_label_color, style=label.style_label_down, textcolor=label_text_color, size=label_size)
else if label_style == 'triangle'
label.new(bear ? bar_index : na, high, 'SELL', yloc=yloc.abovebar, color=sell_label_color, style=label.style_triangledown, textcolor=TRANSPARENT, size=label_size)
else if label_style == 'arrow'
label.new(bear ? bar_index : na, high, 'SELL', yloc=yloc.abovebar, color=sell_label_color, style=label.style_arrowdown, textcolor=TRANSPARENT, size=label_size)
label.new(show_tp_sl ? bar_index : na, low, 'TP: ' + str.tostring(tp) + ' SL: ' + str.tostring(sl), yloc=yloc.price, color=color.gray, style=label.style_label_up, textcolor=label_text_color)
alertcondition(bull or bear, 'BUY & SELL Signals', 'New signal!')
alertcondition(bull, 'BUY Signals (Only)', 'New signal: BUY')
alertcondition(bear, 'SELL Signals (Only)', 'New signal: SELL')
廣量指標
ZHUZHUBLCKBKX MACDThis indicator is based on the standard Trading View MACD Indicator with added visual prompts to take the guess work out of buying and selling. Only use this indicator when you decide to get in or get out. Used in conjunction with "BLCKBOX Buying / Selling Sentiment" indicator.
MCMXCIX Sessions### **Trading Sessions**
Intraday trading is marked by clear time frames that
mark areas of increased volatility:
Market Warning Dashboard Enhanced📊 Market Warning Dashboard Enhanced
A powerful macro risk dashboard that tracks and visualizes early signs of market instability across multiple key indicators—presented in a clean, professional layout with a real-time thermometer-style danger gauge.
🔍 Included Macro Signals:
Yield Curve Inversion: 10Y-2Y and 10Y-3M spreads
Credit Spreads: High-yield (HYG) vs Investment Grade (LQD)
Volatility Structure: VIX/VXV ratio
Breadth Estimate: SPY vs 50-day MA (as a proxy)
🔥 Features:
Real-time Danger Score: 0 (Safe) to 100 (Extreme Risk)
Descriptive warnings for each signal
Color-coded thermometer gauge
Alert conditions for each macro risk
Background shifts on rising systemic risk
⚠️ This dashboard can save your portfolio by alerting you to macro trouble before it hits the headlines—ideal for swing traders, long-term investors, and anyone who doesn’t want to get blindsided by systemic risk.
Sector 50MA vs 200MA ComparisonThis TradingView indicator compares the 50-period Moving Average (50MA) and 200-period Moving Average (200MA) of a selected market sector or index, providing a visual and analytical tool to assess relative strength and trend direction. Here's a detailed breakdown of its functionality:
Purpose: The indicator plots the 50MA and 200MA of a chosen sector or index on a separate panel, highlighting their relationship to identify bullish (50MA > 200MA) or bearish (50MA < 200MA) trends. It also includes a histogram and threshold lines to gauge momentum and key levels.
Inputs:
Resolution: Allows users to select the timeframe for calculations (Daily, Weekly, or Monthly; default is Daily).
Sector Selection: Users can choose from a list of sectors or indices, including Tech, Financials, Consumer Discretionary, Utilities, Energy, Communication Services, Materials, Industrials, Health Care, Consumer Staples, Real Estate, S&P 500 Value, S&P 500 Growth, S&P 500, NASDAQ, Russell 2000, and S&P SmallCap 600. Each sector maps to specific ticker pairs for 50MA and 200MA data.
Data Retrieval:
The indicator fetches closing prices for the 50MA and 200MA of the selected sector using the request.security function, based on the chosen timeframe and ticker pairs.
Visual Elements:
Main Chart:
Plots the 50MA (blue line) and 200MA (red line) for the selected sector.
Fills the area between the 50MA and 200MA with green (when 50MA > 200MA, indicating bullishness) or red (when 50MA < 200MA, indicating bearishness).
Threshold Lines:
Horizontal lines at 0 (zero line), 20 (lower threshold), 50 (center), 80 (upper threshold), and 100 (upper limit) provide reference points for the 50MA's position.
Fills between 0-20 (green) and 80-100 (red) highlight key zones for potential overbought or oversold conditions.
Sector Information Table:
A table in the top-right corner displays the selected sector and its corresponding 50MA and 200MA ticker symbols for clarity.
Alerts:
Generates alert conditions for:
Bullish Crossover: When the 50MA crosses above the 200MA (indicating potential upward momentum).
Bearish Crossover: When the 50MA crosses below the 200MA (indicating potential downward momentum).
Use Case:
Traders can use this indicator to monitor the relative strength of a sector's short-term trend (50MA) against its long-term trend (200MA).
The visual fill between the moving averages and the threshold lines helps identify trend direction, momentum, and potential reversal points.
The sector selection feature allows for comparative analysis across different market segments, aiding in sector rotation strategies or market trend analysis.
This indicator is ideal for traders seeking to analyze sector performance, identify trend shifts, and make informed decisions based on moving average crossovers and momentum thresholds.
Macro Time Block (15m przed i po)Indicator zeigt die Macrozeit 15 Minuten vor und 15 minuten nach voller Stunde.
Macro Time Block 15mIndicator zeigt die Macrozeit 15 Minuten vor und 15 Minuten nach voller Stunde an.
EMA Trend Dashboardthis just shows what position the user defined EMAs are on 4 different TFs. also the TF are user defined. and the TXT size is user defined. if you have trouble with bias maybe this is the script you need.
US Bank Earnings IndexThis indicator is a weighted average of the quarterly results of the largest banks in the United States.
Scalping Indicator [Scalping indicator-fikri invite only.2]Update 1. 02.04.25
Update 2. 22.05.25
Update 3. 05.05.25
Description
📊 Scalping Indicator – Fully Automated Trading Indicator 🚀
This indicator is designed, created, and developed by Fikri Production as the result of a combination of dozens of technical analysis elements, ultimately forming a Smart Multi Indicator. It operates automatically, following market movements. By using this indicator, you no longer need to add other indicators to strengthen trading signals, as dozens of key elements are already integrated into one accurate and automated system.
This signal is my highest achievement in analysis, incorporating multiple indicators and decades of trading experience, all distilled into a single powerful, sensitive, complex, and multifunctional signal indicator with high accuracy.
With this indicator, your trading will be more controlled, preventing impulsive entries driven by emotion or confusion about price direction. You will know where the price is moving and when it will stop or reverse.
🎯 Key Features:
✅ Automatic BUY & SELL signals with high accuracy.
✅ Entry points complete with Stop Loss (SL) & three Take Profit (TP) levels.
✅ Automatic trend filter, displaying only valid signals in line with market direction.
✅ Fully automated indicator—you only need to follow what is displayed on the chart.
⚙️ How the Indicator Works
📍 This indicator displays several important elements for trading:
1️⃣ Long-tailed arrow → Main signal for BUY or SELL entry.
2️⃣ Arrowhead without tail → Reversal warning to watch for.
3️⃣ Black circle → Indication of weak trend or sideways market (unclear direction).
4️⃣ Trendline → Measures the strength and direction of price movement.
5️⃣ EMA 30 (Blue) → Determines the primary trend direction.
6️⃣ EMA 10 (Yellow) & EMA 5 (Black) → Identifies the best momentum for entry.
📈 Trading Rules Using This Indicator
📉 SELL Signal
✔️ Formation of bearish patterns (Bearish Engulfing, Bearish Pin Bar, or Doji).
✔️ Price is below EMA30.
✔️ EMA30 is sloping downward → Confirms bearish trend.
🚨 Avoid entries if EMA30 is flat!
📈 BUY Signal
✔️ Formation of bullish patterns (Bullish Engulfing, Bullish Pin Bar, or Doji).
✔️ Price is above EMA30.
✔️ EMA30 is sloping upward → Confirms bullish trend.
🚨 Avoid entries if EMA30 is flat!
⚙️ Trading Conclusion
Only open SELL when the candle is below the blue line. Ignore BUY signals if the candle is below the blue line, and vice versa.
Never open SELL or BUY when the blue line is flat, even if many signals appear. The best entry points occur when the TP, Entry, and SL levels appear for the first time.
Ideal and strong conditions occur when a SELL signal appears while the candle is below the downward-sloping blue line, followed by the entry line—this is the best setup. The same applies to BUY signals.
Arrowheads without tails are not the main signal—they serve as an early warning of a potential reversal. Black circular signals indicate weak price movement and no clear direction, serving as an alert for caution.
🎯 Advantages of This Indicator
✔️ Filters false signals using EMA30 as the main trend filter.
✔️ Combines Price Action & Trend for optimal entry identification.
✔️ Easy to use across multiple time frames.
✔️ Equipped with automatic SL & TP, simplifying risk management.
🚀 Use Fikri Multi Indicator to maximize profits and minimize risks in your trading! 💹
===========================================================================
Regression Analysis Fibonacci ColorThis indicator brings together visual appeal, flexibility, and the power of technical analysis through a comprehensive approach, offering users a robust analytical tool. By utilizing linear regression and slope analysis to evaluate price movements, it provides insight not only into the current trend direction but also into the strength and momentum of the trend. This enables users to make more accurate predictions about trend continuation.
The indicator includes price-based dynamic Fibonacci levels, which are calculated using historical price action. As a result, they generate more precise support and resistance zones compared to traditional fixed levels. The visual transitions between these levels are enhanced with varying color tones, presenting complex data on the chart in a clear and streamlined manner.
In addition, the chart displays clearly marked buy and sell signals, reflecting different conditions through intuitive markers. This significantly accelerates the decision-making process for traders. With multiple types of signals defined for various strategic approaches, users can filter and adapt the indicator to suit different market environments.
The indicator also supports multi-timeframe analysis, incorporating EMA data from various periods to enhance the strength of its signals. This is especially useful in short-term trading strategies where confirmation from higher timeframes is essential.
In conclusion, this indicator serves as a comprehensive, customizable, and professional-grade analytical solution for both beginners and advanced technical analysts. Thanks to its user-friendly interface and solid mathematical foundation, it delivers a charting experience that is not only visually appealing but also highly functional.
Session + FVG + Order Blocks + EMAs1. Overall Purpose
This indicator combines four key functions into one pane to help you:
Highlight major market sessions (Asia, London, New York)
Plot Fair Value Gaps (FVG) and Order Blocks
Display up to four fully customizable Exponential Moving Averages (EMAs)
Shift all times via a configurable UTC offset
Together, these features let you see session activity zones, price imbalances, and underlying trend direction all at a glance.
2. Time Zone
Input: “Time Zone”
Set your chart’s UTC offset (e.g. “UTC+2”) so that each session box aligns with your local clock.
3. Market Sessions
Each session is drawn as a shaded rectangle labeled by name:
Session Default UTC Hours Color Toggle Visibility
Asia 00:00 – 08:15 Light blue fill ☑️ Show Asia session
London 09:00 – 12:00 Light green fill ☑️ Show London session
New York 14:30 – 18:00 Soft red fill ☑️ Show NY session
Enable or disable each session via its checkbox.
Adjust start/end times and the fill color for any session.
Border style and thickness are set in “Box Line Style” and “Box Line Thickness.”
4. Fair Value Gaps & Order Blocks
Controls for identifying imbalances and institutional zones:
Setting Description
Max Blocks Maximum number of gaps/order-blocks to display
Filter Gaps by % Only show gaps larger than this percentage
Lookback Bars How many bars back to scan for gaps and blocks
Bullish OB/FVG Color Fill color for bullish blocks & gaps
Bearish OB/FVG Color Fill color for bearish blocks & gaps
Show Fair Value Gaps Toggle visibility of FVG rectangles
Show Order Blocks Toggle visibility of Order Block rectangles
Fair Value Gaps mark small untraded price areas.
Order Blocks highlight previous zones of major buying or selling.
5. EMAs (Exponential Moving Averages)
Up to four EMAs can be displayed independently:
EMA Enable? Length (periods) Color
EMA 1 ☑️ Show EMA 1 20 Orange
EMA 2 ☑️ Show EMA 2 50 Blue
EMA 3 ☑️ Show EMA 3 100 Green
EMA 4 ☑️ Show EMA 4 200 Red
Tick the box to plot an EMA on your chart.
Change its length to match your strategy’s lookback.
Pick a color that stands out against your background.
6. Recommended Workflow
Set your Time Zone so session boxes align with your local trading hours.
Enable only the sessions you trade (e.g. deselect Asia if you focus on London & NY).
Tweak FVG/Order Block parameters:
Adjust Lookback Bars and Filter Gaps by % to fine-tune the number of zones.
Customize your EMAs (periods and colors) to suit your trend-following or mean-reversion approach.
Combine the layers: watch how price behaves within session boxes, around FVG/Order Blocks, and relative to your EMAs to plan entries and exits.
Scalping Indicator [fikri production]Update 1. 02.04.25
Update 2. 22.05.25
Update 3. 05.05.25
Description
📊 Scalping Indicator – Fully Automated Trading Indicator 🚀
This indicator is designed, created, and developed by Fikri Production as the result of a combination of dozens of technical analysis elements, ultimately forming a Smart Multi Indicator. It operates automatically, following market movements. By using this indicator, you no longer need to add other indicators to strengthen trading signals, as dozens of key elements are already integrated into one accurate and automated system.
This signal is my highest achievement in analysis, incorporating multiple indicators and decades of trading experience, all distilled into a single powerful, sensitive, complex, and multifunctional signal indicator with high accuracy.
With this indicator, your trading will be more controlled, preventing impulsive entries driven by emotion or confusion about price direction. You will know where the price is moving and when it will stop or reverse.
🎯 Key Features:
✅ Automatic BUY & SELL signals with high accuracy.
✅ Entry points complete with Stop Loss (SL) & three Take Profit (TP) levels.
✅ Automatic trend filter, displaying only valid signals in line with market direction.
✅ Fully automated indicator—you only need to follow what is displayed on the chart.
⚙️ How the Indicator Works
📍 This indicator displays several important elements for trading:
1️⃣ Long-tailed arrow → Main signal for BUY or SELL entry.
2️⃣ Arrowhead without tail → Reversal warning to watch for.
3️⃣ Black circle → Indication of weak trend or sideways market (unclear direction).
4️⃣ Trendline → Measures the strength and direction of price movement.
5️⃣ EMA 30 (Blue) → Determines the primary trend direction.
6️⃣ EMA 10 (Yellow) & EMA 5 (Black) → Identifies the best momentum for entry.
📈 Trading Rules Using This Indicator
📉 SELL Signal
✔️ Formation of bearish patterns (Bearish Engulfing, Bearish Pin Bar, or Doji).
✔️ Price is below EMA30.
✔️ EMA30 is sloping downward → Confirms bearish trend.
🚨 Avoid entries if EMA30 is flat!
📈 BUY Signal
✔️ Formation of bullish patterns (Bullish Engulfing, Bullish Pin Bar, or Doji).
✔️ Price is above EMA30.
✔️ EMA30 is sloping upward → Confirms bullish trend.
🚨 Avoid entries if EMA30 is flat!
⚙️ Trading Conclusion
Only open SELL when the candle is below the blue line. Ignore BUY signals if the candle is below the blue line, and vice versa.
Never open SELL or BUY when the blue line is flat, even if many signals appear. The best entry points occur when the TP, Entry, and SL levels appear for the first time.
Ideal and strong conditions occur when a SELL signal appears while the candle is below the downward-sloping blue line, followed by the entry line—this is the best setup. The same applies to BUY signals.
Arrowheads without tails are not the main signal—they serve as an early warning of a potential reversal. Black circular signals indicate weak price movement and no clear direction, serving as an alert for caution.
🎯 Advantages of This Indicator
✔️ Filters false signals using EMA30 as the main trend filter.
✔️ Combines Price Action & Trend for optimal entry identification.
✔️ Easy to use across multiple time frames.
✔️ Equipped with automatic SL & TP, simplifying risk management.
🚀 Use Fikri Multi Indicator to maximize profits and minimize risks in your trading! 💹
===========================================================================
Update 1. 02.04.25
Update 2. 22.05.25
Update 3. 05.05.25
Description
📊 Scalping Indicator – Indikator Trading Serba Otomatis 🚀
Indikator ini dirancang, dibuat, dan dikembangkan oleh Fikri Production, sebagai hasil dari perpaduan puluhan elemen analisis teknikal yang akhirnya menciptakan satu indikator Smart multi indicator. berjalan secara otomatis mengikuti arah pergerakan pasar. Dengan menggunakan indikator ini, Anda tidak perlu lagi menambahkan indikator lain untuk memperkuat sinyal trading, karena puluhan elemen penting telah terintegrasi dalam satu sistem yang otomatis dan akurat.
Signal ini adalah pencapaian tertinggi saya dalam menganalisa dengan berbagi macam indicator dan pengalaman trading puluhan tahun yang mana semua itu aku tuangkan dalam 1 wadah sehingga menjadi 1 indicator signal yang tangguh, sensitif, kompex dan multi fungsi dengan akurasi tinggi.
Dengan indicator ini trading anda akan lebih terkendali tidak bar-bar atau asal entry karena terbawa emosi atau kebingungan menentukan arah harga. anda akan ttau kemana arah harga bergerak dan kapan berhentinya atau balik arahnya.
🎯 Fitur Utama:
✅ Sinyal Otomatis BUY & SELL dengan akurasi tinggi.
✅ Entry point lengkap dengan Stop Loss (SL) & 3 level Take Profit (TP).
✅ Filter tren otomatis, hanya menampilkan sinyal yang valid sesuai arah pasar.
✅ Indikator serba otomatis, Anda hanya perlu mengikuti apa yang ditampilkan di chart.
⚙️ Cara Kerja Indikator
📍 Indikator ini menampilkan beberapa elemen penting untuk trading:
1️⃣ Panah dengan ekor panjang → Sinyal utama untuk entry BUY atau SELL.
2️⃣ Kepala panah tanpa ekor → Tanda pembalikan arah yang perlu diperhatikan.
3️⃣ Bulatan hitam → Indikasi tren sedang lemah atau pasar sideways (tidak jelas arah).
4️⃣ Garis Trendline → Mengukur kekuatan dan arah pergerakan harga.
5️⃣ EMA 30 (Biru) → Menentukan arah tren utama.
6️⃣ EMA 10 (Kuning) & EMA 5 (Hitam) → Menentukan momentum terbaik untuk entry.
📈 Aturan Trading Menggunakan Indikator Ini
📉 Sinyal SELL
✔️ Terbentuk pola bearish (Bearish Engulfing, Bearish Pin Bar, atau Doji).
✔️ Harga berada di bawah EMA30.
✔️ EMA30 condong turun → Konfirmasi tren bearish.
🚨 Hindari entry jika EMA30 datar!
📈 Sinyal BUY
✔️ Terbentuk pola bullish (Bullish Engulfing, Bullish Pin Bar, atau Doji).
✔️ Harga berada di atas EMA30.
✔️ EMA30 condong naik → Konfirmasi tren bullish.
🚨 Hindari entry jika EMA30 datar!
⚙️ Kesimpulan cara trading.
Hanya open sel ketika lilin dibawah garis biru. Abaikan sinyal buy jika lilin dibawah garis biru dan begitu jg sebaliknya.
Jangan sekali2 open sel atau buy ketika garis biru datar biarpun banyak bermunculan signal sel dan buy.
Yang paling bagus open nya adalah ketika tanda TP. Entry dan SL keluar pertama kali. Dan itupun harus juga dilihat keluarnya garis entry itu kondisi lilin harus sesuai aturan. Misal. Jika garis entry menunjukkan sel tapi lilin ada diatas garis biru maka itu kurang kuat. Begitu jg sebaliknya.
Kondisi yg ideal dan kuat adalah ketika keluar sinyal sel kondisi lilin dibawah garis biru yg condong ke bawah lalu disusul keluar garis entry maka itu yg paling bagus. Begitu jg sebaliknya untuk sinyal buy.
Untuk sinyal yg berbentuk kepala panah tanpa ekor, Itu bukan sinyal utama.itu sinyal hanya sebagai aba2 atau pertanda akan ada arah balik. Ingat..... Hanya aba2 atau peringatan untuk melakukan kewaspadaan dan jaga2 itu bukan signal yg utama. Dan sinyal bulat hitam. Itu juga hanya informasi kalo disaat itu kondisi pergerakan sedang lemah tak punya arah. Itu jg sebagai pertanda kewaspadaan.
🎯 Keunggulan Indikator Ini
✔️ Menyaring sinyal palsu dengan EMA30 sebagai filter tren utama.
✔️ Menggabungkan Price Action & Tren untuk identifikasi entry terbaik.
✔️ Mudah digunakan dalam berbagai time frame.
✔️ Dilengkapi dengan SL & TP otomatis, memudahkan pengelolaan risiko.
🚀 Gunakan Fikri Multi Indicator untuk memaksimalkan profit dan meminimalkan risiko dalam trading Anda! 💹🔥
Yesterday's High/Low - Extended 5x with Custom Colors
📌 Indicator Name:
Yesterday’s High/Low Levels — Dynamic Projection
📝 Description:
This indicator automatically plots horizontal lines at yesterday’s high and low prices, starting from the exact candle where those prices occurred.
The lines dynamically extend into the current session and adapt their length based on the chart’s timeframe, up to a maximum of 500 bars (due to TradingView's limitations).
Use it to identify key intraday support and resistance levels derived from the prior day’s price action.
The high level is shown in dark green, and the low level in bright lime for visual clarity.
Works across all intraday timeframes and daily chart. The levels update once per day, precisely at the start of the new daily candle.
✅ Features:
Automatically tracks yesterday's high and low
Lines originate from the exact bar where the high/low occurred
Adaptive line length (up to 500 bars) depending on timeframe
Clean visual display with customizable colors
Works on 5m, 15m, 1H, 4H, and daily timeframes
TTM MSS Dashboardscript is MSS for multi TF user defined up to 4 TF. so if were breaking lows a red line is formed and breakinghighs blue line is formed.
Buying vs Selling Pressure **Buying vs Selling Pressure**
This indicator measures and visualizes intrabar buying and selling pressure using a normalized ATR-based formula. It helps identify which side—buyers or sellers—is currently in control.
🔍 How it works:
Buying Pressure: Calculated from the distance between the close and low, adjusted by ATR.
Selling Pressure: Calculated from the distance between the high and close, also adjusted by ATR.
Histogram bars change color based on which side is stronger:
🟢 Green = Buying pressure dominant
🔴 Red = Selling pressure dominant
🔵 Blue = Potential transition or imbalance
Includes a zero line for easy reference.
This script is useful for spotting intraday momentum shifts and understanding market behavior beyond just candlestick patterns.
Sq9 Gold Scaping Chiem Tinh FX 88"This tool allows users to interactively drag and drop significant high and low price levels on the 1-minute timeframe. Based on the selected five key levels, the script automatically identifies potential entry points and suggests reasonable take-profit zones to support short-term trading strategies."
Breadth Thrust PRO by Martin E. ZweigThe Breadth Thrust Indicator was developed by Martin E. Zweig (1942-2013), a renowned American stock investor, investment adviser, and financial analyst who gained prominence for predicting the market crash of 1987 (Zweig, 1986; Colby, 2003). Zweig defined a "breadth thrust" as a 10-day period where the ratio of advancing stocks to total issues traded rises from below 40% to above 61.5%, indicating a powerful shift in market momentum potentially signaling the beginning of a new bull market (Zweig, 1994).
Methodology
The Breadth Thrust Indicator measures market momentum by analyzing the relationship between advancing and declining issues on the New York Stock Exchange. The classical formula calculates a ratio derived from:
Breadth Thrust = Advancing Issues / (Advancing Issues + Declining Issues)
This ratio is typically smoothed using a moving average, most commonly a 10-day period as originally specified by Zweig (1986).
The PRO version enhances this methodology by incorporating:
Volume weighting to account for trading intensity
Multiple smoothing methods (SMA, EMA, WMA, VWMA, RMA, HMA)
Logarithmic transformations for better scale representation
Adjustable threshold parameters
As Elder (2002, p.178) notes, "The strength of the Breadth Thrust lies in its ability to quantify market participation across a broad spectrum of securities, rather than focusing solely on price movements of major indices."
Signal Interpretation
The original Breadth Thrust interpretation established by Zweig identifies two critical thresholds:
Low Threshold (0.40): Indicates a potentially oversold market condition
High Threshold (0.615): When reached after being below the low threshold, generates a Breadth Thrust signal
Zweig (1994, p.123) emphasizes: "When the indicator moves from below 0.40 to above 0.615 within a 10-day period, it signals an explosive upside breadth situation that historically has led to significant intermediate to long-term market advances."
Kirkpatrick and Dahlquist (2016) validate this observation, noting that genuine Breadth Thrust signals have preceded market rallies averaging 24.6% in the subsequent 11-month period based on historical data from 1940-2010.
Zweig's Application
Martin Zweig utilized the Breadth Thrust Indicator as a cornerstone of his broader market analysis framework. According to his methodology, the Breadth Thrust was most effective when:
Integrated with monetary conditions analysis
Confirmed by trend-following indicators
Applied during periods of market bottoming after significant downturns
In his seminal work "Winning on Wall Street" (1994), Zweig explains that the Breadth Thrust "separates genuine market bottoms from bear market rallies by measuring the ferocity of buying pressure." He frequently cited the classic Breadth Thrust signals of October 1966, August 1982, and March 2009 as textbook examples that preceded major bull markets (Zweig, 1994; Appel, 2005).
The PRO Enhancement
The PRO version of Zweig's Breadth Thrust introduces several methodological improvements:
Volume-Weighted Analysis: Incorporates trading volume to account for significance of price movements, as suggested by Fosback (1995) who demonstrated improved signal accuracy when volume is considered.
Adaptive Smoothing: Multiple smoothing methodologies allow for sensitivity adjustment based on market conditions.
Visual Enhancements: Dynamic color signaling and historical signal tracking facilitate pattern recognition.
Contrarian Option: Allows for inversion of signals to identify potential counter-trend opportunities, following Lo and MacKinlay's (1990) research on contrarian strategies.
Empirical Evidence
Research by Bulkowski (2013) found that classic Breadth Thrust signals have preceded market advances in 83% of occurrences since 1950, with an average gain of 22.4% in the 12 months following the signal. More recent analysis by Bhardwaj and Brooks (2018) confirms the indicator's continued effectiveness, particularly during periods of market dislocation.
Statistical analysis of NYSE data from 1970-2020 reveals that Breadth Thrust signals have demonstrated a statistically significant predictive capability with p-values < 0.05 for subsequent 6-month returns compared to random market entries (Lo & MacKinlay, 2002; Bhardwaj & Brooks, 2018).
Practical Implementation
To effectively implement the Breadth Thrust PRO indicator:
Monitor for Oversold Conditions: Watch for the indicator to fall below the 0.40 threshold, indicating potential bottoming.
Identify Rapid Improvement: The critical signal occurs when the indicator rises from below 0.40 to above 0.615 within a 10-day period.
Confirm with Volume: In the PRO implementation, ensure volume patterns support the breadth movement.
Adjust Parameters Based on Market Regime: Higher volatility environments may require adjusted thresholds as suggested by Faber (2013).
As Murphy (2004, p.285) advises: "The Breadth Thrust works best when viewed as part of a comprehensive technical analysis framework rather than in isolation."
References
Appel, G. (2005) Technical Analysis: Power Tools for Active Investors. Financial Times Prentice Hall, pp. 187-192.
Bhardwaj, G. and Brooks, R. (2018) 'Revisiting Market Breadth Indicators: Empirical Evidence from Global Equity Markets', Journal of Financial Research, 41(2), pp. 203-219.
Bulkowski, T.N. (2013) Trading Classic Chart Patterns. Wiley Trading, pp. 315-328.
Colby, R.W. (2003) The Encyclopedia of Technical Market Indicators, 2nd Edition. McGraw-Hill, pp. 123-126.
Elder, A. (2002) Come Into My Trading Room: A Complete Guide to Trading. John Wiley & Sons, pp. 175-183.
Faber, M.T. (2013) 'A Quantitative Approach to Tactical Asset Allocation', Journal of Wealth Management, 16(1), pp. 69-79.
Fosback, N. (1995) Stock Market Logic: A Sophisticated Approach to Profits on Wall Street. Dearborn Financial Publishing, pp. 112-118.
Kirkpatrick, C.D. and Dahlquist, J.R. (2016) Technical Analysis: The Complete Resource for Financial Market Technicians, 3rd Edition. FT Press, pp. 432-438.
Lo, A.W. and MacKinlay, A.C. (1990) 'When Are Contrarian Profits Due to Stock Market Overreaction?', The Review of Financial Studies, 3(2), pp. 175-205.
Lo, A.W. and MacKinlay, A.C. (2002) A Non-Random Walk Down Wall Street. Princeton University Press, pp. 207-214.
Murphy, J.J. (2004) Intermarket Analysis: Profiting from Global Market Relationships. Wiley Trading, pp. 283-292.
Zweig, M.E. (1986) Martin Zweig's Winning on Wall Street. Warner Books, pp. 87-96.
Zweig, M.E. (1994) Winning on Wall Street, Revised Edition. Warner Books, pp. 121-129.
EMA 13/21/200 + TelegramEMA 13/21 Crossover Indicator generates BUY/SELL signals based on the crossover of EMA13 and EMA21.
JOEL - ATR WITH EMA INDICATORThis Indicator provides best BUY AND SELL for all index and stocks.
Colored VWAP:
Added VWAP calculation using ta.vwap(close).
Colored the VWAP line green when the price is above it and red when below it.
Plotted with a linewidth of 2 for visibility.
9 and 21 EMA:
Added inputs for 9-period and 21-period EMA lengths (default 9 and 21).
Calculated EMAs using ta.ema(close, length).
Plotted the 9 EMA in blue and 21 EMA in orange with a linewidth of 1.
EMA Crossover Signals:
Detected crossovers (9 EMA crossing above 21 EMA) and crossunders (9 EMA crossing below 21 EMA) using ta.crossover and ta.crossunder.
Plotted buy signals (blue triangles below bars) for crossovers and sell signals (orange triangles above bars) for crossunders.
CPR and support and resistance
CPR Inputs:
Added a checkbox show_cpr to toggle CPR display.
Added color inputs for Pivot, BC, TC, R1-R4, S1-S4, and tomorrow's CPR lines (Pivot, BC, TC).
CPR Calculations:
Used request.security to fetch daily high, low, and close for CPR calculations.
Calculated Pivot, BC, TC, R1-R4, and S1-S4 using standard CPR formulas.
For tomorrow's CPR, used the current day's data as a proxy (since exact future data isn't available).
Plotting:
Plotted CPR levels (Pivot, BC, TC, R1-R4, S1-S4) as dotted lines with user-defined colors when show_cpr is enabled.
Added labels for each level on the last confirmed bar.
Plotted tomorrow's CPR as short dotted lines extending 10 bars forward from the last bar, with labels.
Colors and Style:
Default colors: Pivot (yellow), BC/TC (blue), R1-R4 (red), S1-S4 (green), Tomorrow Pivot (orange), Tomorrow BC/TC (purple).
All lines are dotted (style=plot.style_dots for CPR, line.style_dotted for tomorrow's CPR).
Labels show price values with two decimal places.
NIFTY 6 Supertrend Status (3H)This is an indicator, which tells you whether top 6 Nifty Constituents are in buy or sell
ADR FULL - Dynamic Levels Ranges % TargetFull Average Dynamic Daily Range Targets - Open Range
ADR(x) Levels target - 10 days back default recommended
Period ADR selection
%probability levels pullback
Previous High and Low day, week and month lines
Settings initial ranges bar (start and end time bar - 5 minutes example)
Dynamic plotting ADR levels
included:
1) INDICATOR 1: ADR ** AVERAGE DAILY RANGE **
PREVIOUS DAYS CALCULATION = 10 DAYS (max_lines_count=500)
Dynamic Mode ADR Levels (ON/OFF)
Dynamic Mode High-Low Day (ON/OFF)
Show ADR Range for Today Only
Show % ADR Today High-Low Labels
Show Today High-Low Lines
Show Today High-Low Labels Details
INTERNAL HIGH_ADR10 % Target <=100%
INTERNAL LOW_ADR10 % Target <=100%
EXTERNAL HIGH_ADR10 % Target 125% to 225%
EXTERNAL LOW_ADR10 % Target 125% to 225
EXTERNAL HIGH_ADR10 % Target >=250%
EXTERNAL LOW_ADR10 % Target >=250%
initial Bar - High-low Lines - initial Start Day
Extend Initial Bar H-L lines forward (bars)
Extend Lines Range Until XX:YY Hour-Minute
1, 2, 3 and 4 Ranges High-low Lines - Confuigurable Start Sesion time – Logic
2) INDICATOR 2: PREVIOUS DAILY - WEEKLY MONTHLY
PREVIOUS DAILY - WEEKLY MONTHLY Calculations
Extends previous highs and lows in the future
Show a color gradient that highlights the recency of highs and lows
G10 FX Basket ComparisonDescription:
This indicator shows how individual FX major currencies (including CNY) have performed relative to each other. It calculates each currency's performance against a "Trade Weighted" basket of other major currencies.
I created this because I couldn't find it, and I wanted an easy way to see currency behaviour and flows.
Purpose:
It lets you see the relative strength and weakness of each currency, similar to how the DXY measures USD strength, but for all the major currencies. Each basket and currency weights are based on Trade Weighted values from literature/economics.
This way you can maybe decide which crosses / pairs to trade.
Can helps you visualise how events (economic, news or otherwise) affect currency flows.
Features:
Relative Performance: Focuses on how a currency's value has changed over time, rather than its absolute level.
Normalization: Adjusts currency values to a starting date, making it easy to compare their performance.
Adjustable Start Date: You can set the anchor date to choose the starting point for calculating relative performance.
Customizable Weights: The indicator allows you to use custom weights for each currency basket should you wish.