Jakes main INDICATOR really great tool still a work in progress. I'm fine tunning this still mostly around false signals and volitility
Breadth Indicators
Monthly DividerThis Trading View indicator visually marks the beginning of each month starting from January 2024. It draws vertical lines on the chart at the start of each month and labels them with the corresponding month abbreviation (e.g., "Jan", "Feb"). Users can customize the color and thickness of the lines through the indicator settings, allowing for personalized chart aesthetics. This tool is ideal for traders and analysts who want to easily identify month transitions and enhance their technical analysis.
Strategy by Nachi Chennai//@version=5
indicator("EMA Scalping Strategy", overlay=true)
// Input for EMA settings
ema_short = input.int(9, title="Short EMA", minval=1)
ema_medium = input.int(21, title="Medium EMA", minval=1)
ema_long = input.int(50, title="Long EMA", minval=1)
// EMA calculations
shortEMA = ta.ema(close, ema_short)
mediumEMA = ta.ema(close, ema_medium)
longEMA = ta.ema(close, ema_long)
// Input for RSI settings
rsi_length = input.int(14, title="RSI Length", minval=1)
rsi_overbought = input.int(70, title="RSI Overbought Level", minval=50)
rsi_oversold = input.int(30, title="RSI Oversold Level", minval=1)
// RSI calculation
rsi = ta.rsi(close, rsi_length)
// MACD settings
= ta.macd(close, 12, 26, 9)
// Conditions for Buy and Sell
buyCondition = ta.crossover(shortEMA, mediumEMA) and close > longEMA and rsi > 50 and macdLine > signalLine
sellCondition = ta.crossunder(shortEMA, mediumEMA) and close < longEMA and rsi < 50 and macdLine < signalLine
// Plotting EMAs
plot(shortEMA, color=color.new(color.blue, 0), title="Short EMA (9)")
plot(mediumEMA, color=color.new(color.orange, 0), title="Medium EMA (21)")
plot(longEMA, color=color.new(color.red, 0), title="Long EMA (50)")
// Plot Buy and Sell signals
plotshape(series=buyCondition, title="Buy Signal", location=location.belowbar, color=color.new(color.green, 0), style=shape.labelup, text="BUY")
plotshape(series=sellCondition, title="Sell Signal", location=location.abovebar, color=color.new(color.red, 0), style=shape.labeldown, text="SELL")
// Background Highlighting
bgcolor(buyCondition ? color.new(color.green, 90) : na, title="Buy Highlight")
bgcolor(sellCondition ? color.new(color.red, 90) : na, title="Sell Highlight")
Breakout with Volume and RSI FilterCommon Causes of the Error
Unintended Line Breaks:
Pine Script does not allow line breaks in the middle of a statement unless properly formatted.
Missing Parentheses or Brackets:
Ensure all (, ), , {, and } are properly closed.
Improper Use of Commas:
Ensure commas are used correctly in function arguments and arrays.
Unclosed Strings:
Ensure all strings are properly closed with double quotes (").
Fixed Pine Script Code
Here’s the corrected version of the Pine Script code, ensuring no unintended line breaks or syntax errors:
High LowThis is an indicator that labels the highs and lows of the previous day, week, month, and year, and highlights when the price crosses those levels.
Auto Fibonacci LinesThis TradingView script is a modded version of the library called "VisibleChart" created by Pinecoder.
This version has the option for users to change the Fibonacci lines and price labels. This makes the script user-friendly.
Fibonacci extensions are a tool that traders can use to establish profit targets or estimate how far a price may travel after a retracement/pullback is finished. Extension levels are also possible areas where the price may reverse. This study automatically draws horizontal lines that are used to determine possible support and resistance levels.
It's designed to automatically plot Fibonacci retracement levels on chart, aiding in technical analysis for traders.
First, the highest and lowest bars on the chart are calculated. These values are used for Fibonacci extensions.
These values update as traders scroll or zoom their charts, this shows that it is a useful indicator that can dynamically calculate and draw visuals on visible bars only.
EMA with Stochastic Cross Signals and Filtered EMA2/EMA4 Cross tôi dùng AI DeepSeek để tạo ra chỉ báo này, tôi không phải là coder :D
Indicateur Combiné UB et 10YDescription :
L'Indicateur Combiné UB et 10Y est un outil puissant conçu pour analyser les mouvements de l'Ultra Bond (UB) et du taux d'intérêt 10Y en prenant en compte à la fois le volume et les tendances du marché. Il utilise des moyennes mobiles pondérées par le volume (VWMA) et un oscillateur de volume pour identifier les conditions de marché favorables à l'achat ou à la vente.
Caractéristiques principales :
Analyse basée sur le Volume et la VWMA : L'indicateur analyse la relation entre le prix et la VWMA (Volume Weighted Moving Average) pour déterminer les tendances haussières et baissières.
Signaux d'achat et de vente pour l'UB :
Signal d'achat : Lorsque l'oscillateur de volume est positif et que la VWMA est inférieure au prix, indiquant une tendance haussière avec un volume soutenant cette direction.
Signal de vente : Lorsque l'oscillateur de volume est négatif et que la VWMA est supérieure au prix, indiquant une tendance baissière et une pression de vente croissante.
Analyse du 10Y :
Le signal de vente pour le 10Y est déclenché lorsque le volume du 10Y dépasse un seuil de 114 et que le prix du 10Y est supérieur à sa moyenne mobile, signalant un moment propice pour envisager une vente sur l'Ultra Bond.
Affichage clair :
Les signaux d'achat sont indiqués par des triangles verts sous la barre de prix.
Les signaux de vente sont indiqués par des triangles rouges au-dessus de la barre de prix pour l'UB, et des étiquettes rouges "🔻" pour le 10Y.
Volume et seuils dynamiques : Le volume de négociation et un seuil de volume spécifique pour le marché du 10Y sont pris en compte pour éviter les faux signaux pendant les périodes de faible activité.
Comment utiliser cet indicateur :
Utilisez les signaux d'achat et de vente de l'UB pour trader en fonction des tendances du marché et de l'oscillateur de volume.
Surveillez les signaux de vente du 10Y pour repérer des opportunités sur l'Ultra Bond, basées sur des volumes importants et une tendance haussière du 10Y.
Fonctionnalités supplémentaires :
Personnalisable : Vous pouvez ajuster les périodes des moyennes mobiles (VWMA, SMA) et les seuils de volume en fonction de vos préférences.
Outil de trading avancé : Idéal pour les traders utilisant des instruments comme l'Ultra Bond (UB) et souhaitant intégrer l'analyse des taux d'intérêt 10Y dans leur stratégie.
JDF + RSI + ADX (Scalping) MejoradoEste indicador de scalping avanzado combina múltiples herramientas de análisis técnico para ofrecer señales más precisas y confiables en mercados de alta volatilidad. Utiliza el sistema KAMA (Adaptive Moving Average) para detectar tendencias, junto con el RSI y el ADX para confirmar la fortaleza de la tendencia y evitar señales falsas. Además, incorpora un filtro de volatilidad basado en ATR, lo que ayuda a detectar condiciones de mercado óptimas para entrar o salir. Las señales de entrada se confirman solo cuando hay un alineamiento positivo entre estos indicadores, mientras que las señales de salida se generan si la tendencia pierde fuerza o el precio alcanza niveles de sobrecompra o sobreventa. El indicador también incluye una opción de análisis en temporalidades superiores para validar la dirección de la tendencia. Los globos visuales indican claramente las señales de compra (L), venta (S) y salida (SALIR) para facilitar la toma de decisiones en tiempo real. Ideal para traders que buscan precisión y eficiencia.
JDF + RSI + ADX (Scalping) MejoradoIdeal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Ideal para scalping de 5-15m
Dynamic Label Update ProLive Trading with Dynamic Label Update Pro: A Game-Changing Tool
The markets move fast, and trading tools need to keep up. Dynamic Label Update is designed to deliver real-time insights with 7 integrated features, helping traders make smarter decisions in live market conditions.
What’s New?
Dynamic Label Update brings cutting-edge innovation to your charts:
Live Buy/Sell Labels: Stop guessing—get clear, actionable signals based on momentum, volume, and trends.
Multi-Layer Confirmation: Combines 7 key features like EMA, RSI, MFI, and Rolling Volume into one cohesive system.
Adaptive Market Analysis: Say goodbye to outdated static tools—dynamic updates ensure you’re always working with the most accurate, up-to-date data.
✨ Dynamic Label Update with 7 Key Features
Experience a cutting-edge script that streamlines your trading analysis with real-time, dynamic updates and these 7 core features:
1. EMA with RSI and Rolling Volume: Identify trend strength and potential reversals.
2. ADL with MFI and Rolling Volume: Track accumulation/distribution trends to reveal market sentiment.
3. Swing High/Low with MFI and Rolling Volume: Highlight key price action zones for smarter entries and exits.
4. RSI Overbought/Oversold with MFI and Rolling Volume: Pinpoint momentum extremes to capture high-probability moves.
5. MFI Overbought/Oversold with Rolling Volume: Detect potential turning points and divergences with precision.
6. Swing High/Low with ADL and Rolling Volume: Add depth to price action analysis for a complete market view.
7. Live Buy/Sell Label Updates: Stay ahead of the market with dynamic, actionable trade signals.
Why It Works
Dynamic Label Update is built for traders who demand:
Real-time precision: Instantly adapt to momentum shifts and market changes.
Multi-layer insights: Combine trend, volume, and momentum into one system for unparalleled clarity.
Clarity and speed: Stay ahead of the competition with live updates that adjust to current conditions.
This free trial version offers a glimpse into the power of Dynamic Label Update. Explore its 7 layers of confirmation and experience how real-time updates can transform your trading approach.
Disclaimer:
This script and its underlying logic are protected under Patent Pending status. Any unauthorized use, replication, or modification of its functionality may result in legal action.
This script is provided for informational purposes only and does not constitute financial or investment advice. Users assume full responsibility for their trading decisions and associated risks. Past performance is not indicative of future results.
This script is intended for personal use only. Any commercial use, resale, or redistribution without explicit permission from the creator is prohibited.
This publication complies with TradingView’s platform guidelines.
Export Datathis script widmsfsnklfdsmsfklmdklmskldskl;mgfksldmgklsdmglksdfnmgkldsmngvlksdmnvlkdmsnklvndsklvnsdklv ndvdsklvdsklvlksdvmsdklmvsldkkvd
Last Week Close and Current Week Opentrade buy upside breakout of green line and viceversa for sell on opposite side
3 Down, 3 Up Strategy█ STRATEGY DESCRIPTION
The "3 Down, 3 Up Strategy" is a mean-reversion strategy designed to capitalize on short-term price reversals. It enters a long position after consecutive bearish closes and exits after consecutive bullish closes. This strategy is NOT optimized and can be used on any timeframes.
█ WHAT ARE CONSECUTIVE DOWN/UP CLOSES?
- Consecutive Down Closes: A sequence of trading bars where each close is lower than the previous close.
- Consecutive Up Closes: A sequence of trading bars where each close is higher than the previous close.
█ SIGNAL GENERATION
1. LONG ENTRY
A Buy Signal is triggered when:
The price closes lower than the previous close for Consecutive Down Closes for Entry (default: 3) consecutive bars.
The signal occurs within the specified time window (between Start Time and End Time).
If enabled, the close price must also be above the 200-period EMA (Exponential Moving Average).
2. EXIT CONDITION
A Sell Signal is generated when the price closes higher than the previous close for Consecutive Up Closes for Exit (default: 3) consecutive bars.
█ ADDITIONAL SETTINGS
Consecutive Down Closes for Entry: Number of consecutive lower closes required to trigger a buy. Default = 3.
Consecutive Up Closes for Exit: Number of consecutive higher closes required to exit. Default = 3.
EMA Filter: Optional 200-period EMA filter to confirm long entries in bullish trends. Default = disabled.
Start Time and End Time: Restrict trading to specific dates (default: 2014-2099).
█ PERFORMANCE OVERVIEW
Designed for volatile markets with frequent short-term reversals.
Performs best when price oscillates between clear support/resistance levels.
The EMA filter improves reliability in trending markets but may reduce trade frequency.
Backtest to optimize consecutive close thresholds and EMA period for specific instruments.
Lê Đức HiểnTối 4/3, Đen chính thức phát hành sản phẩm âm nhạc Nhạc Của Rừng. Trong ca khúc mới, Đen còn kết hợp cùng Hiền VK (tên thật Nguyễn Thu Hiền), một cô giáo thanh nhạc và thành viên của nhóm bè VK, gây ấn tượng bởi giọng ca thánh thót, trong trẻo.
MV Nhạc Của Rừng được thực hiện bởi đạo diễn Thành Đồng, mang màu sắc tươi mới, sống động nhằm cổ vũ mọi người góp sức bảo vệ thiên nhiên và dành sự quan tâm cho các vấn đề nóng về môi trường.
Buy on 5 day low Strategy█ STRATEGY DESCRIPTION
The "Buy on 5 Day Low Strategy" is a mean-reversion strategy designed to identify potential buying opportunities when the price drops below the lowest low of the previous five days. It enters a long position when specific conditions are met and exits when the price exceeds the high of the previous day. This strategy is optimized for use on daily or higher timeframes.
█ WHAT IS THE 5-DAY LOW?
The 5-Day Low is the lowest price observed over the last five days. This level is used as a reference to identify potential oversold conditions and reversal points.
█ SIGNAL GENERATION
1. LONG ENTRY
A Buy Signal is triggered when:
The close price is below the lowest low of the previous five days (`close < _lowest `).
The signal occurs within the specified time window (between `Start Time` and `End Time`).
2. EXIT CONDITION
A Sell Signal is generated when the current closing price exceeds the high of the previous day (`close > high `). This indicates that the price has shown strength, potentially confirming the reversal and prompting the strategy to exit the position.
█ ADDITIONAL SETTINGS
Start Time and End Time: The time window during which the strategy is allowed to execute trades.
█ PERFORMANCE OVERVIEW
This strategy is designed for mean-reverting markets and performs best when the price frequently oscillates around key support levels.
It is sensitive to oversold conditions, as indicated by the 5-Day Low, and overbought conditions, as indicated by the previous day's high.
Backtesting results should be analyzed to optimize the strategy for specific instruments and market conditions.
3-Bar Low Strategy█ STRATEGY DESCRIPTION
The "3-Bar Low Strategy" is a mean-reversion strategy designed to identify potential buying opportunities when the price drops below the lowest low of the previous three bars. It enters a long position when specific conditions are met and exits when the price exceeds the highest high of the previous seven bars. This strategy is suitable for use on various timeframes.
█ WHAT IS THE 3-BAR LOW?
The 3-Bar Low is the lowest price observed over the last three bars. This level is used as a reference to identify potential oversold conditions and reversal points.
█ WHAT IS THE 7-BAR HIGH?
The 7-Bar High is the highest price observed over the last seven bars. This level is used as a reference to identify potential overbought conditions and exit points.
█ SIGNAL GENERATION
1. LONG ENTRY
A Buy Signal is triggered when:
The close price is below the lowest low of the previous three bars (`close < _lowest `).
The signal occurs within the specified time window (between `Start Time` and `End Time`).
If the EMA Filter is enabled, the close price must also be above the 200-period Exponential Moving Average (EMA).
2. EXIT CONDITION
A Sell Signal is generated when the current closing price exceeds the highest high of the previous seven bars (`close > _highest `). This indicates that the price has shown strength, potentially confirming the reversal and prompting the strategy to exit the position.
█ ADDITIONAL SETTINGS
MA Period: The lookback period for the 200-period EMA used in the EMA Filter. Default is 200.
Use EMA Filter: Enables or disables the EMA Filter for long entries. Default is disabled.
Start Time and End Time: The time window during which the strategy is allowed to execute trades.
█ PERFORMANCE OVERVIEW
This strategy is designed for mean-reverting markets and performs best when the price frequently oscillates around key support and resistance levels.
It is sensitive to oversold conditions, as indicated by the 3-Bar Low, and overbought conditions, as indicated by the 7-Bar High.
Backtesting results should be analyzed to optimize the MA Period and EMA Filter settings for specific instruments.
Bollinger Bands Reversal + IBS Strategy█ STRATEGY DESCRIPTION
The "Bollinger Bands Reversal Strategy" is a mean-reversion strategy designed to identify potential buying opportunities when the price deviates below the lower Bollinger Band and the Internal Bar Strength (IBS) indicates oversold conditions. It enters a long position when specific conditions are met and exits when the IBS indicates overbought conditions. This strategy is suitable for use on various timeframes.
█ WHAT ARE BOLLINGER BANDS?
Bollinger Bands consist of three lines:
- **Basis**: A Simple Moving Average (SMA) of the price over a specified period.
- **Upper Band**: The basis plus a multiple of the standard deviation of the price.
- **Lower Band**: The basis minus a multiple of the standard deviation of the price.
Bollinger Bands help identify periods of high volatility and potential reversal points.
█ WHAT IS INTERNAL BAR STRENGTH (IBS)?
Internal Bar Strength (IBS) is a measure of where the closing price is relative to the high and low of the bar. It is calculated as:
IBS = (Close - Low) / (High - Low)
A low IBS value (e.g., below 0.2) indicates that the close is near the low of the bar, suggesting oversold conditions. A high IBS value (e.g., above 0.8) indicates that the close is near the high of the bar, suggesting overbought conditions.
█ SIGNAL GENERATION
1. LONG ENTRY
A Buy Signal is triggered when:
The IBS value is below 0.2, indicating oversold conditions.
The close price is below the lower Bollinger Band.
The signal occurs within the specified time window (between `Start Time` and `End Time`).
2. EXIT CONDITION
A Sell Signal is generated when the IBS value exceeds 0.8, indicating overbought conditions. This prompts the strategy to exit the position.
█ ADDITIONAL SETTINGS
Length: The lookback period for calculating the Bollinger Bands. Default is 20.
Multiplier: The number of standard deviations used to calculate the upper and lower Bollinger Bands. Default is 2.0.
Start Time and End Time: The time window during which the strategy is allowed to execute trades.
█ PERFORMANCE OVERVIEW
This strategy is designed for mean-reverting markets and performs best when the price frequently deviates from the Bollinger Bands.
It is sensitive to oversold and overbought conditions, as indicated by the IBS, which helps to identify potential reversals.
Backtesting results should be analyzed to optimize the Length and Multiplier parameters for specific instruments.
Average High-Low Range + IBS Reversal Strategy█ STRATEGY DESCRIPTION
The "Average High-Low Range + IBS Reversal Strategy" is a mean-reversion strategy designed to identify potential buying opportunities when the price deviates significantly from its average high-low range and the Internal Bar Strength (IBS) indicates oversold conditions. It enters a long position when specific conditions are met and exits when the price shows strength by exceeding the previous bar's high. This strategy is suitable for use on various timeframes.
█ WHAT IS THE AVERAGE HIGH-LOW RANGE?
The Average High-Low Range is calculated as the Simple Moving Average (SMA) of the difference between the high and low prices over a specified period. It helps identify periods of increased volatility and potential reversal points.
█ WHAT IS INTERNAL BAR STRENGTH (IBS)?
Internal Bar Strength (IBS) is a measure of where the closing price is relative to the high and low of the bar. It is calculated as:
IBS = (Close - Low) / (High - Low)
A low IBS value (e.g., below 0.2) indicates that the close is near the low of the bar, suggesting oversold conditions.
█ SIGNAL GENERATION
1. LONG ENTRY
A Buy Signal is triggered when:
The close price has been below the buy threshold (calculated as `upper - (2.5 * hl_avg)`) for a specified number of consecutive bars (`bars_below_threshold`).
The IBS value is below the specified buy threshold (`ibs_buy_treshold`).
The signal occurs within the specified time window (between `Start Time` and `End Time`).
2. EXIT CONDITION
A Sell Signal is generated when the current closing price exceeds the high of the previous bar (`close > high `). This indicates that the price has shown strength, potentially confirming the reversal and prompting the strategy to exit the position.
█ ADDITIONAL SETTINGS
Length: The lookback period for calculating the average high-low range. Default is 20.
Bars Below Threshold: The number of consecutive bars the price must remain below the buy threshold to trigger a Buy Signal. Default is 2.
IBS Buy Threshold: The IBS value below which a Buy Signal is triggered. Default is 0.2.
Start Time and End Time: The time window during which the strategy is allowed to execute trades.
█ PERFORMANCE OVERVIEW
This strategy is designed for mean-reverting markets and performs best when the price frequently deviates from its average high-low range.
It is sensitive to oversold conditions, as indicated by the IBS, which helps to identify potential reversals.
Backtesting results should be analyzed to optimize the Length, Bars Below Threshold, and IBS Buy Threshold parameters for specific instruments.