GT's Opening Price LineDraws one opening price line from the timeframe that you select. You're Welcome and may your trading never be the same.
อินดิเคเตอร์และกลยุทธ์
Sesión New York 7:00 am - 10:00 am Costa RicaIndicador basado para la Sesion de New York entre las 7:00am a 10:00 am hora de Costa Rica
EMA 50/SMA 200 CrossoverJust your basic Cross Over of the 50EMA and 200SMA with indication of the crossover.
Custom Signal IndicatorThis indicator generates a buy signal when the following conditions are met: #1: The 9-day moving average crosses above the 21-day moving average. #2: RSI is below 30. #3: MACD line crosses above the signal line. #4: Volume is higher than usual. Adjust the parameters to customize.
This is my first script, so bear with me and any suggestions on improving it are highly welcome!
scan_wt_cross_set_1Bist100 hisselerini wt_cross gözüyle tarar, al veya sat sinyali veren hisseleri grafik üzerinde listeler. Sıkı veya rahat şekilde taramaya izin verir. Sıkı taramada aşırı sat bölgesinde al veya aşırı al bölgesinde sat veren hisseleri bulur.
scan_wt_cross_set_2Bist100 hisselerini wt_cross gözüyle tarar, al veya sat sinyali veren hisseleri grafik üzerinde listeler. Sıkı veya rahat şekilde taramaya izin verir. Sıkı taramada aşırı sat bölgesinde al veya aşırı al bölgesinde sat veren hisseleri bulur.
Prior day and pre-market high/lowLevels for prior day and pre-market high/low.
Prior Day High: Solid Green Line
Pre-Market High: Dashed Green Line
Prior Day Low: Solid Red Line
Pre-Market Low: Dashed Red Line
No extra noise. Just the basics. Simple.
8 Günlük ve 21 Günlük SMA Stratejisi8 gün (bar) ve 13 gün (bar) arasındaki basit hareketli ortalamaya dayalı al sat sinyali üreten bir indikatördür.
Sesión New York 7:00 am - 10:00 am Costa RicaIndicador basado para la Sesion de New York entre las 7:00am a 10:00 am
Estrategia Avanzada - EMA y RSI con ColoresDescripción del Script Mejorado:
Líneas de EMAs:
EMA 20 (Corta) y EMA 50 (Larga) cambian de color según las condiciones:
Verde para la EMA 20 cuando hay una señal de compra (crossover de EMAs).
Roja para la EMA 50 cuando hay una señal de venta (crossunder de EMAs).
Condiciones de Entrada:
Long (Compra): Cuando la EMA 20 cruza hacia arriba la EMA 50 y el RSI está por debajo de 30 (zona de sobreventa).
Short (Venta): Cuando la EMA 20 cruza hacia abajo la EMA 50 y el RSI está por encima de 70 (zona de sobrecompra).
Señales Visuales:
Señal de compra (BUY): Aparece en verde debajo de la vela cuando se cumple la condición de entrada larga.
Señal de venta (SELL): Aparece en rojo arriba de la vela cuando se cumple la condición de entrada corta.
Los colores de las líneas de las EMAs cambian dinámicamente para indicar visualmente la tendencia.
Fondo coloreado: El fondo cambia a verde (compra) o rojo (venta) para indicar claramente la tendencia en tiempo real.
RSI:
Se muestra el RSI en el gráfico para confirmar si el activo está en zonas de sobrecompra o sobreventa.
También se dibujan líneas horizontales de sobrecompra y sobreventa en el gráfico para facilitar la interpretación.
PPO/ADX Pinch Strategy CobyTweak 2 This tool can help analyze the momentum and trend strength of an asset to identify:
Periods of Strong Trends: Indicated by a high ADX.
Potential Reversals or Breakouts: Highlighted during "pinch zones."
Momentum Shifts: Tracked using the PPO Line, Signal Line, and histogram.
The script uses the asset's closing price to calculate all indicators, providing actionable insights for both short-term and long-term trading strategies.\This Pine Script plots two technical indicators, the Percentage Price Oscillator (PPO) and the Average Directional Index (ADX), for the underlying asset (e.g., stock, forex pair, or cryptocurrency). It helps identify periods of trend strength and potential price "pinch" zones, which can signal consolidations or reversals.
BTC Day Trading Strategy//@version=5
indicator("BTC Day Trading Strategy", overlay=true)
// Inputs for Indicators
emaLength1 = input.int(9, title="EMA 1 Length")
emaLength2 = input.int(21, title="EMA 2 Length")
rsiperiod = input.int(14, title="RSI Period")
macdFast = input.int(12, title="MACD Fast Length")
macdSlow = input.int(26, title="MACD Slow Length")
macdSignal = input.int(9, title="MACD Signal Length")
// EMA Calculations
ema1 = ta.ema(close, emaLength1)
ema2 = ta.ema(close, emaLength2)
// RSI Calculation
rsi = ta.rsi(close, rsiperiod)
// MACD Calculation
= ta.macd(close, macdFast, macdSlow, macdSignal)
// Assigning crossover and crossunder to variables for consistency
longCrossover = ta.crossover(ema1, ema2)
shortCrossunder = ta.crossunder(ema1, ema2)
macdCrossover = ta.crossover(macdLine, signalLine)
macdCrossunder = ta.crossunder(macdLine, signalLine)
// Conditions for Long Entry
longCondition = longCrossover and rsi > 40 and macdCrossover
if (longCondition)
label.new(bar_index, high, "BUY", style=label.style_label_up, color=color.green, textcolor=color.white)
// Conditions for Short Entry
shortCondition = shortCrossunder and rsi < 35 and macdCrossunder
if (shortCondition)
label.new(bar_index, low, "SELL", style=label.style_label_down, color=color.red, textcolor=color.white)
// Plot EMAs
plot(ema1, color=color.blue, title="EMA 9")
plot(ema2, color=color.orange, title="EMA 21")
// Alerts
alertcondition(longCondition, title="Long Entry Alert", message="BTCUSD: Señal de compra confirmada.")
alertcondition(shortCondition, title="Short Entry Alert", message="BTCUSD: Señal de venta confirmada.")
IDL This draws levels that can act potential support and resistance on daily weekly or monthly levels
All-in-One: VWAP, Ichimoku, EMAs, ADX, RSI + AlertsTitle: All-in-One: VWAP, Ichimoku, EMAs, ADX, RSI + Alerts
Short Title: Multi-Indicator + Alerts
Description:
This script combines several popular trading tools into a single indicator, giving traders a comprehensive view of market conditions alongside convenient alerts. Whether you are monitoring intraday trends, identifying breakouts, or looking for overbought/oversold zones, this script centralizes all the major signals you need.
Features & Options
VWAP (Volume-Weighted Average Price)
Multi-timeframe VWAP on 1H, 4H, and Daily
Helps identify key support/resistance zones based on volume distribution
EMAs (Exponential Moving Averages)
EMAs of 10, 20, 50, and 200 periods (customizable)
Quick visualization of short-term vs. long-term trends
Ichimoku Cloud
Full Ichimoku suite (Tenkan, Kijun, Senkou A/B, Chikou)
Auto-filled cloud for bullish/bearish scenarios
Detect momentum shifts and potential support/resistance zones
RSI & ADX Table
RSI(14) and ADX(14) displayed on a small on-chart table
Compare values across three custom timeframes for multi-timeframe confluence
Labels on Last Bar
Optional labels for VWAP, EMAs, and Ichimoku values on the latest candle
Keeps critical numeric data in sight
Alerts
RSI Overbought/Oversold : Triggers when RSI crosses above/below user-defined thresholds (default 70/30).
ADX Strong Trend : Fires when ADX surpasses a chosen level (default 25), indicating strong momentum.
EMA Cross : Set an alert whenever a faster EMA crosses over or under a slower EMA (default EMA10 vs. EMA50).
Ichimoku Kumo Breakout : Informs you when price closes above or below the Ichimoku cloud.
With everything in one place, this script helps traders streamline their workflow and spot potential opportunities faster. All alert messages are static to ensure compliance with TradingView’s requirement for constant strings in alerts.
Disclaimer:
All trading involves risk. The signals generated by this script do not guarantee profits or prevent losses. Always combine multiple forms of analysis and exercise your own judgment before making any trading decisions.
cci superrrCCI (Commodity Channel Index), finansal piyasalarda aşırı alım veya aşırı satım seviyelerini belirlemek için kullanılan popüler bir teknik analiz göstergesidir. 500, 100 ve 200 periyotluk CCI ile işlem yapmak, farklı zaman dilimlerinde piyasa trendlerini daha iyi anlamaya yönelik bir stratejidir.
Scalping BTC Ottimizzato - Grafica Chiara---
Scalping BTC Optimized Strategy – Clear Visualization and Dynamic Risk Management
Overview:
The Scalping BTC Optimized Strategy is designed for high-frequency trading on Bitcoin using a 15-minute timeframe. It combines key technical indicators to maximize trading efficiency while maintaining clear visual cues and dynamic risk management.
Key Indicators Used:
1. EMA (Exponential Moving Averages)
- EMA Fast (9 periods): Tracks short-term price momentum.
- EMA Slow (21 periods): Identifies long-term trend direction.
- Purpose: EMA crossovers generate Long and Short signals.
2. RSI (Relative Strength Index)
- Length: 14 periods
- Overbought Level: 70
- Oversold Level: 30
- Purpose: Filters trades in extreme price conditions.
3. ADX (Average Directional Index)
- Length: 14 periods
- Smoothing: 14 periods
- Threshold: 20
- Purpose: Confirms if the market is trending strongly to avoid false signals.
4. ATR (Average True Range)
- Length: 14 periods
- Stop Loss Multiplier: 1.5x ATR
- Take Profit Multiplier: 2.0x ATR
- Purpose: Dynamically adjusts Stop Loss and Take Profit levels based on market volatility.
How the Strategy Works:
1. Long Entry:
- Condition: EMA Fast crosses above EMA Slow.
- Filter: RSI is below 70, ADX is above 20.
- Execution: Place Long order with ATR-based Stop Loss and Take Profit.
2. Short Entry:
- Condition: EMA Fast crosses below EMA Slow.
- Filter: RSI is above 30, ADX is above 20.
- Execution: Place Short order with ATR-based Stop Loss and Take Profit.
3. Exit Rules:
- Positions are automatically closed based on ATR thresholds.
- Manual Exit Trigger: RSI exceeding overbought or oversold levels.
Visual Representation on the Chart:
- EMA Lines: Clearly plotted and anchored to the candles.
- Trade Signals:
- Green Triangles (Long Entry).
- Red Triangles (Short Entry).
- Indicator Panels (Separate):
- RSI Panel: Tracks overbought or oversold zones.
- ADX Panel: Highlights trend strength.
- ATR Panel: Displays market volatility.
Advantages of the Strategy:
- Trend Alignment: EMA crossovers identify trend changes accurately.
- Dynamic Risk Management: ATR adjusts Stop Loss and Take Profit levels based on volatility.
- Momentum Validation: RSI prevents entering overbought or oversold zones.
- Trend Strength Filter: ADX ensures trades are executed in strong trending markets.
- Clear Visualization: Organized layout with distinct panels and chart signals.
Alerts:
Automatic alerts for Long and Short signals ensure you never miss a trading opportunity.
Recommended Settings:
- Timeframe: 15-minute chart
- ATR Multiplier: 1.0–2.5
- ADX Threshold: 20–25
- RSI Length: 7–14
This strategy provides a balanced approach to scalping, combining trend-following signals, momentum filtering, and dynamic risk management. Its clean and intuitive visualization makes it ideal for both manual traders and automated setups.
---
EMA ivis Breakout StrategyEine bewährte Strategie kombiniert gleitende Durchschnitte (EMAs) mit einem Breakout-Filter, um nur bei klaren Markttrends zu handeln. Entwickelt habe ich diese für BTCUSD, funktioniert aber auch in anderen Assets.
Ausstiegsregeln:
Für den Stop-Loss: 1,5-fache ATR unterhalb/oberhalb des Einstiegskurses.
Für den Take-Profit: 2-fache ATR über/unter dem Einstiegspunkt
Zeit Filter:
Der Indikator liefert nur in der definierten Handelszeit Signale. Diese können SIe selbstständig in den Einstellungen verändern.
Die Strategie kann man bestens in 15min anwenden.
RSI StatusSimple anchored text box (bottom-left) that indicates whether RSI in bullish or bearish indication (ie. RSI above or below its ema).
Holiday Cheer 🎄Features:
Snowflakes Animation: Creates a "falling snow" effect with small white circles drifting downwards.
Festive Candlesticks: Green for up candles, red for down candles, matching holiday vibes.
Greeting Label: Displays a cheerful holiday message on the chart
Trend Battery [Phantom]Trend Battery
Visualize Trend Strength with a Dynamic EMA Power Gauge
OVERVIEW
The Trend Battery indicator offers a clear, visual representation of trend strength based on the alignment of multiple Exponential Moving Averages (EMAs). It assigns a color-coded score to each bar, helping traders quickly assess the prevailing trend's power and direction.
CONCEPT
• Trend Strength Using EMAs: The indicator analyzes the alignment of 20 EMAs (8 to 200 periods) to gauge trend strength. The more EMAs align, the stronger the trend.
• Gradient-Based Visualization: Scores are mapped to a color gradient, transitioning from green (bullish) to purple (bearish), providing an intuitive visual representation of trend momentum.
HOW IT WORKS
Trend Battery calculates 20 EMAs and evaluates their alignment. When EMAs align in a strong trend, the bar colors change (as displayed in battery color key on chart) displaying a spectrum of colors from bright green (strong uptrend) to deep purple (strong downtrend).
• Dynamic Bar Colors:
o Green hues: Strong bullish trends.
o Purple hues: Strong bearish trends.
o Red hues: Weaker trends or potential transitions.
FEATURES
• Dynamic Color Coding: Easy-to-read and instantly assess trend.
• Customizable Transparency: Adjust bar color opacity to your preference.
• Optional EMA Display: Toggle individual EMA lines on/off for additional context.
• Compact Battery View: Quick reference table displaying the gradient color mapping.
SETTINGS
• Transparency: Controls the opacity of bar colors.
• Show EMAs on Chart: Enables/disables plotting of EMA lines.
USAGE
• Identify trend strength and direction.
• Confirm trend reversals or continuations.
• Complement other indicators and strategies.
• Monitor multi-timeframe trends.
TRADE IDEAS:
• For larger timeframes purple hues can be used for accumulating and green hues for distribution.
• For smaller timeframes, color transitions could be a signal for trend reversal, or corrections.
• It is a good idea to use larger timeframes for overall trend directions, and smaller timeframes for entries.
LIMITATIONS
• Lagging Indicator: As the Trend Battery relies on Exponential Moving Averages (EMAs), it is inherently a lagging indicator. This means it reflects past price action and may not always provide timely signals for rapid market changes or sudden reversals.
• False Signals in Sideways Markets: In ranging or consolidating markets, the indicator may produce mixed signals (frequent color changes) as EMAs intertwine without a clear trend. This can lead to false interpretations if not considered alongside other market context indicators.
• Not a Standalone System: The Trend Battery is designed to be a visual aid and should not be used as the sole basis for trading decisions. It's most effective when combined with other technical analysis tools, such as oscillators, support/resistance levels, and fundamental analysis.
DISCLAIMER
Use the Trend Battery indicator in conjunction with other forms of analysis and risk management. Past performance is not indicative of future results.