buy & sell//@version=5
indicator("Smoothed Heiken Ashi with Signals", " איתותי קנייה + איתותי מכירה", overlay=true, timeframe="", timeframe_gaps=true)
import wallneradam/TAExt/8
//
// User inputs
//
ha_smooth_length = input.int(10, "Smooth Length", minval=1, group="Before HA")
ha_smooth_ma_type = input.string('EMA', 'MA Type', options= , group="Before HA")
ha_after_smooth_length = input.int(10, "After Smooth Length", minval=1, group="After HA")
ha_after_smooth_ma_type = input.string('EMA', 'After MA Type', options= , group="After HA")
//
// Calculation
//
= TAExt.heiken_ashi(smooth_length=ha_smooth_length, smooth_ma_type=ha_smooth_ma_type, after_smooth_length=ha_after_smooth_length)
//
// Support level calculation based on the last 14 candles
//
supportLevel = ta.lowest(l, 14)
//
// Buy/Sell Signals
//
buySignal = ta.crossover(c, o) // Close crosses above Open
sellSignal = ta.crossunder(c, o) // Close crosses below Open
//
// Buy Signal 2 - After returning near support
//
buySignal2 = ta.crossover(c, o) and (l <= supportLevel or l - supportLevel < 0.005 * supportLevel)
//
// Plotting
//
plotcandle(o, h, l, c, title="Smoothed Heiken Ashi",
color=o > c ? color.new(color.red, 60) : color.new(color.lime, 60),
wickcolor=o > c ? color.new(color.red, 20) : color.new(color.lime, 20),
bordercolor=o > c ? color.new(color.red, 10) : color.new(color.lime, 10))
// Plot Buy Signals
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
// Plot Sell Signals
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Plot Buy Signal 2
plotshape(series=buySignal2, title="Buy Signal 2", location=location.belowbar, color=color.blue, style=shape.labelup, text="BUY2")
Циклический анализ
Tunnel SystemDescription and Utility:
The Tunnel System is a technical analysis tool that overlays multiple moving average lines on the price chart, creating "tunnels" that help traders visualize market trends and potential trading opportunities. Each tunnel represents a different trend level, offering insights into short-term to long-term market direction.
Key Functions:
Trend Identification: Helps identify the overall trend by price movement within the tunnels.
Support and Resistance: The tunnels act as dynamic support and resistance levels, highlighting potential reversal zones.
Breakouts and Reversals: Signals potential price breakouts or trend reversals when the price moves outside or crosses the tunnel lines.
The Tunnel System aids traders in making informed decisions about market entries, exits, and risk management.
***********************************************************
Descripción y utilidad:
El sistema de túneles es una herramienta de análisis técnico que superpone múltiples líneas de promedio móvil en el gráfico de precios, creando "túneles" que ayudan a los operadores a visualizar las tendencias del mercado y las oportunidades comerciales potenciales. Cada túnel representa un nivel de tendencia diferente, lo que ofrece información sobre la dirección del mercado a corto y largo plazo.
Funciones:
Identificación de tendencias: ayuda a identificar la tendencia general mediante el movimiento de precios dentro de los túneles.
Soporte y resistencia: los túneles actúan como niveles dinámicos de soporte y resistencia, destacando posibles zonas de reversión.
Rupturas y reversiones: señala posibles rupturas de precios o reversiones de tendencia cuando el precio se mueve fuera o cruza las líneas del túnel.
El sistema de túneles ayuda a los operadores a tomar decisiones informadas sobre entradas y salidas del mercado y gestión de riesgos.
Election Inauguration ScriptAllows to quickly identify significant historical events by marking U.S. presidential inauguration weeks with vertical lines and labels directly on the chart. This script highlights the past 10 inaugurations, helping traders and analysts correlate market movements with political transitions.
Wilder Moving AverageThe Wilder Moving Average (WMA) is a technical analysis tool developed by J. Welles Wilder Jr. It is designed to identify trends and potential entry and exit points in the financial markets2. Unlike the simple moving average (SMA) or the exponential moving average (EMA), the Wilder Moving Average places more emphasis on recent price movements, making it more responsive to short-term changes in the market.
Key Features:
Smoothing Technique: Wilder's Moving Average uses a smoothing technique that gives greater weight to more recent data points. This results in a faster and more responsive moving average2.
Calculation: The calculation involves subtracting the previous average from the current price and adding the resulting difference to the previous average.
Usage: Traders use the Wilder Moving Average to identify trends, support and resistance levels, and potential crossovers, where the price crosses above or below the moving average, indicating a potential trend reversal.
Equilibrium ZonesEquilibrium Zones
This script identifies equilibrium zones within a specified range of bars, providing valuable insights into potential support and resistance levels. By analyzing the highest and lowest prices over a user-defined range, the script calculates the equilibrium price and additional levels around it to highlight demand, supply, and resistance/support zones.
Features:
Equilibrium Zone:
Calculates the equilibrium price as the midpoint between the range's highest and lowest prices.
Highlights key levels around the equilibrium, such as primary and secondary support/resistance levels.
Visual Representation:
Displays horizontal lines for each level with customizable colors and styles.
Adds descriptive labels next to the lines for better clarity on the chart.
User Inputs:
Range Length: Specify the number of bars to analyze for calculating the range.
Offset: Adjust the label placement for better visibility.
Dynamic Updates:
Automatically updates lines and labels to keep the chart clean and focused.
How to Use:
Add the script to your chart.
Customize the Range Length and Offset inputs to fit your analysis style.
Observe the equilibrium zones and use them to identify potential breakout, reversal, or consolidation areas.
SR Channels + Oversold & Overbought + Supertrend (Public)SR Channels + Oversold & Overbought + Supertrend (Public)
CM_Williams_Vix_Fix Top BottomModification to the original CM_Williams_Vix_Fix that also finds the top.
GS_MM_Swing_V12Features Highlight:
Hull Moving Average Variants:
Hma (Hull Moving Average)
Thma (Triple Hull Moving Average)
Ehma (Exponential Hull Moving Average)
Customizable Inputs:
Strategy direction (long, short, or all).
ADR% length and calculation.
Hull line thickness, color, and transparency.
Backtest Period Control:
Users can specify custom start and stop dates for backtesting.
Signal Logic:
Buy when HMA > HMA and sell when HMA < HMA .
Ensures that trades only occur during the backtesting period.
ADR% Display:
Calculates and displays ADR% as a label above the current bar.
Gap Detection:
Highlights gap-up candles based on a user-defined gap percentage using a yellow background.
Usage Suggestions:
Adjust the Hull Moving Average length for your trading style:
Use 180-200 for dynamic support/resistance levels.
Use 55 for swing trading entries.
Fine-tune the ADR% length to better reflect your target timeframe.
Use the gap detection feature to spot potential breakout or momentum setups.
Maverick Henderson Strategy
Maverick Henderson Strategy
A comprehensive technical analysis indicator that combines several powerful tools:
1. Volume Profile with POC (Point of Control)
- Displays volume distribution across price levels
- Shows value areas and POC line
- Helps identify key support/resistance levels
2. Multiple EMAs (10, 50, 100, 200)
- Trend identification and dynamic support/resistance
- Price action confirmation
- Works best with Heikin Ashi candles
3. Swing Detection & Counting System
- Identifies and counts higher highs/lower lows
- Dynamic trend strength measurement
- Automatically resets on EMA200 crossovers
4. RSI Divergence Detection
- Regular bullish/bearish divergences
- Hidden bullish/bearish divergences
- Filtered by EMA200 position
5. Multi-Timeframe Squeeze Momentum
- Analyzes momentum across 1H, 2H, 3H, and 4H timeframes
- Shows momentum convergence/divergence
- Visual color-coded momentum representation
Usage Tips:
- Best performance with Heikin Ashi candles
- Use EMA crossovers for trend confirmation
- Watch for momentum convergence signals
- Monitor RSI divergences for potential reversals
// ═══════════════════════════════════════════════════════════
If you find this indicator helpful, you can support my work:
USDT (BNB Smart Chain - BEP20): 0x0e7fcdcc8939791b48e73882b32df1cddaafa88c
// ═══════════════════════════════════════════════════════════
Estrategia Maverick Henderson
Un indicador de análisis técnico completo que combina varias herramientas poderosas:
1. Perfil de Volumen con POC
- Muestra la distribución del volumen por niveles de precio
- Visualiza áreas de valor y línea POC
- Ayuda a identificar niveles clave de soporte/resistencia
2. Múltiples EMAs (10, 50, 100, 200)
- Identificación de tendencias y soporte/resistencia dinámica
- Confirmación de acción del precio
- Funciona mejor con velas Heikin Ashi
3. Sistema de Detección y Conteo de Swings
- Identifica y cuenta máximos más altos/mínimos más bajos
- Medición dinámica de la fuerza de la tendencia
- Se reinicia automáticamente en cruces de EMA200
4. Detección de Divergencias RSI
- Divergencias regulares alcistas/bajistas
- Divergencias ocultas alcistas/bajistas
- Filtradas por posición respecto a EMA200
5. Momentum Multi-Temporal
- Analiza momentum en marcos de 1H, 2H, 3H y 4H
- Muestra convergencia/divergencia de momentum
- Representación visual codificada por colores
Consejos de Uso:
- Mejor rendimiento con velas Heikin Ashi
- Usar cruces de EMA para confirmación de tendencia
- Observar señales de convergencia de momentum
- Monitorear divergencias RSI para posibles reversiones
// ═══════════════════════════════════════════════════════════
Si encuentras útil este script y deseas apoyar mi trabajo:
USDT (BNB Smart Chain - BEP20): 0x0e7fcdcc8939791b48e73882b32df1cddaafa88c
// ═══════════════════════════════════════════════════════════
ZelosKapital Round NumberThe ZelosKapital Round Number Indicator is a tool designed for traders to easily visualize significant round numbers on their charts. Round numbers, such as 1.20000 or 1.21000 in currency pairs, often act as psychological levels in the market where price action tends to react. This indicator automatically marks these levels across the chart, providing a clear reference for potential support and resistance zones. It is customizable, allowing traders to adjust the visual appearance, such as line style, color, and thickness. By highlighting these key levels, the indicator helps traders make more informed decisions and enhances their overall trading analysis.
KgCandlev2This script is a comprehensive tool designed for traders to analyze candlestick and chart patterns effectively.
ATT #FFSJRCreated using ATT method - www.youtube.com
Set in settings the hour you want to use it.
My prefer using at 10 and 11am NY timezone GMT-5
Method creator: TradeWithWill
Discover the Intraday ATT Method—short for Advanced Time Technique, a groundbreaking day trading strategy designed to optimize your trading time and maximize intraday profits. Whether you're a seasoned trader or just starting out, this exclusive method offers proven techniques for enhancing decision-making, managing risks, and achieving consistent trading success. In this video, you'll learn the fundamentals of the Intraday ATT Method, step-by-step implementation guides, and real-life case studies that demonstrate its effectiveness in today's fast-paced markets.
Volatility Crypto Trading Strategy//@version=5
indicator("Volatility Crypto Trading Strategy", overlay=true)
// Input parameters for Bollinger Bands and MACD
bb_length = input.int(20, title="Bollinger Band Length")
bb_std_dev = input.float(2.0, title="Bollinger Band Standard Deviation")
macd_fast = input.int(12, title="MACD Fast Length")
macd_slow = input.int(26, title="MACD Slow Length")
macd_signal = input.int(9, title="MACD Signal Length")
// Input for higher timeframe
htf = input.timeframe("30", title="Higher Timeframe")
// Bollinger Bands calculation
bb_basis = ta.sma(close, bb_length)
bb_upper = bb_basis + bb_std_dev * ta.stdev(close, bb_length)
bb_lower = bb_basis - bb_std_dev * ta.stdev(close, bb_length)
// MACD calculation
= ta.macd(close, macd_fast, macd_slow, macd_signal)
// Higher timeframe trend confirmation
htf_close = request.security(syminfo.tickerid, htf, close)
htf_trend = ta.sma(htf_close, bb_length)
higher_trend_up = htf_close > htf_trend
higher_trend_down = htf_close < htf_trend
// Entry conditions
long_condition = close < bb_lower and macd_line > signal_line and higher_trend_up
short_condition = close > bb_upper and macd_line < signal_line and higher_trend_down
// Exit conditions
long_exit_condition = close >= bb_basis * 1.1
short_exit_condition = close <= bb_basis * 0.9
// Plot Bollinger Bands
plot(bb_upper, color=color.red, title="Upper Bollinger Band")
plot(bb_lower, color=color.green, title="Lower Bollinger Band")
plot(bb_basis, color=color.blue, title="Bollinger Band Basis")
// Plot Buy/Sell signals
plotshape(series=long_condition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=short_condition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// Alerts
alertcondition(long_condition, title="Long Entry", message="Buy Signal")
alertcondition(short_condition, title="Short Entry", message="Sell Signal")
alertcondition(long_exit_condition, title="Long Exit", message="Exit Long")
alertcondition(short_exit_condition, title="Short Exit", message="Exit Short")
Enhanced RSI Buy & Sell StrategySI (14): The standard RSI (length 14) is calculated for this strategy.
Buy Condition: This is triggered when RSI is below the oversold level (30) and starts increasing, while the price is near the SMA and volume is high.
Sell Condition: This is triggered when RSI is above the overbought level (70) and starts decreasing, while the price is near the SMA and volume is high.
Exit Condition: The strategy will consider exiting when the RSI moves into the overbought zone after a buy signal.
Volume Confirmation: A volume multiplier is used to confirm the strength of the signal.
SMA Plot: The Simple Moving Average (SMA) is plotted to help identify the trend.
RSI Plot: The RSI is plotted alongside the buy and sell levels for easy visualization.
RSI + Chandelier Exit StrategyChandelier Exit Long is plotted in green (above price).
Chandelier Exit Short is plotted in red (below price).
Buy signal occurs only if the price is above the Chandelier Exit Long line.
Sell signal occurs only if the price is below the Chandelier Exit Short line.
Fibonacci RepulseFibonacci Repulse with Trend Table 📉📈
Description: The "Fibonacci Repulse" indicator for TradingView combines Fibonacci retracement levels with dynamic support/resistance detection, providing real-time price action insights. 🔄 This powerful tool plots critical Fibonacci retracement levels (23.6%, 38.2%, and 50%) based on the highest and lowest swing points over a user-defined lookback period. The indicator automatically detects bullish retests, alerting you when the price touches and closes above any of the Fibonacci levels, indicating potential upward momentum. 🚀
Key Features:
Fibonacci Retracement Levels 📊: Plots key levels (23.6%, 38.2%, 50%) dynamically based on the highest and lowest price swings over a customizable lookback period.
Bullish Retests Alerts ⚡: Identifies and marks bullish retests when the price touches the Fibonacci levels and closes above them, signaling potential upward movement.
Real-Time Trend Detection 🔍: Displays the current market trend as "Bullish," "Bearish," or "Sideways" in a clear, easy-to-read table in the bottom right corner of the chart. This is determined based on the price's position relative to the Fibonacci levels.
Customizable Settings ⚙️: Adjust the lookback period and label offsets for optimal visual customization.
How It Works:
The indicator calculates the Fibonacci retracement levels between the highest high and the lowest low within a user-defined period. 🧮
It draws extended lines at the 23.6%, 38.2%, and 50% retracement levels, updating them as the chart moves. 📉
When the price touches a Fibonacci level and closes above it, a "Bullish Retest" label appears, signaling a potential buy opportunity. 💡
A real-time trend status table updates automatically in the chart's bottom-right corner, helping traders quickly assess the market's trend direction: Bullish, Bearish, or Sideways. 🔄
Why Use It: This indicator is perfect for traders looking for a clear and visual way to incorporate Fibonacci levels into their trading strategies, with real-time feedback on trend direction and price action signals. Whether you are a novice or an experienced trader, "Fibonacci Repulse" provides a powerful tool for identifying potential reversal points and confirming trends, enhancing your trading strategy. 📈💪
Logarithmic IndicatorThis logarithmic indicator does the following:
It calculates the logarithm of the chosen price (default is close price) using a user-defined base (default is 10).
It then calculates a Simple Moving Average (SMA) of the logarithmic values.
Both the logarithmic value and its SMA are plotted on the chart.
To improve visibility, it also plots an upper and lower band based on the highest and lowest values over the last 100 periods.
To use this indicator:
Open the TradingView Pine Editor.
Paste the code into the editor.
Click "Add to Chart" or "Save" to apply the indicator to your chart.
Adjust the input parameters in the indicator settings as needed.
You can customize this indicator further by:
Changing the color scheme
Adding more moving averages or other technical indicators
Implementing alerts based on crossovers or other conditions
Remember, logarithmic scales are often used in finance to visualize data that spans several orders of magnitude, making it easier to see percentage changes over time.
CAC40 M15 - Z-Score ScalpingCAC40 M15 Z-Score Scalping Strategy 📊
This strategy employs statistical analysis to identify high-probability trading opportunities on the CAC40 index using the 15-minute timeframe.
Strategy Overview:
• Uses Z-Score statistical measure to identify extreme price movements
• Designed specifically for CAC40's unique volatility patterns
• Optimal for M15 timeframe scalping
• Incorporates ATR for dynamic risk management
Entry Logic:
Long Entries:
- When price reaches statistically significant oversold levels
- Confirmed by bullish price action
- Protected by ATR-based stop loss
Short Entries:
- When price reaches statistically significant overbought levels
- Confirmed by bearish price action
- Protected by ATR-based stop loss
Risk Management:
• Dynamic stop-loss based on ATR
• Take-profit set at 2x ATR
• Position sizing optimized for capital preservation
Best Performance:
• During regular trading hours
• When market shows clear statistical divergences
• During periods of normal to high volatility
Not Recommended:
• During major news events
• In extremely choppy market conditions
• During first and last 15 minutes of trading sessions
Note: This strategy is designed for educational purposes. Always use proper risk management and adapt parameters to your trading style.
Good luck trading! 📈
Enhanced RSI Buy and Sell StrategyVolume Filter:
Only trigger Buy or Sell signals when volume is significantly higher than the average.
Dynamic Exit Signal:
Introduce a clear exit strategy based on RSI conditions and volume trends.
Visualization Improvements:
Use distinct shapes and colors for Buy, Sell, and Exit signals.
Add moving averages to assess trends.
Configurable Parameters:
Allow users to adjust RSI levels, volume thresholds, and other key setting
Enhanced RSI Buy and Sell StrategyVolume Filter:
Only trigger Buy or Sell signals when volume is significantly higher than the average.
Dynamic Exit Signal:
Introduce a clear exit strategy based on RSI conditions and volume trends.
Visualization Improvements:
Use distinct shapes and colors for Buy, Sell, and Exit signals.
Add moving averages to assess trends.
Configurable Parameters:
Allow users to adjust RSI levels, volume thresholds, and other key setting
Squeeze BoxEste é um derivado do indicador de volatilidade "TTM Squeeze" de John Carter, conforme discutido em seu livro "Mastering the Trade".
A Caixa/Box mostram que o mercado acabou de entrar em um squeeze (as Bandas de Bollinger estão dentro do Canal de Keltner). Isso significa baixa volatilidade, com o mercado se preparando para um movimento explosivo (para cima ou para baixo).