Multi-Period Technical AnalysisThis indicator table provides a comprehensive view of key technical indicators across different time periods. Here's what each component displays:
Layout:
Top row contains headers for each column
Left-most column shows time periods (Current, -2, -4, -6, -8 candles)
Color coding: Current period is highlighted in green, historical periods in gray
Indicators Displayed:
Price: The actual closing price for each period
MFI (Money Flow Index): A momentum indicator combining price and volume, ranging 0-100
CCI (Commodity Channel Index): Shows overbought/oversold conditions and trend strength
Stochastic K & D: Two lines showing momentum, both ranging 0-100
K line: The faster, more sensitive line
D line: The slower, smoothed line
Williams %R: Shows overbought/oversold levels, ranging -100 to 0
MACD: Two lines showing trend direction and momentum
MACD line: The difference between fast and slow moving averages
Signal line: A smoothed version of the MACD line
Purpose:
Allows traders to see how indicators have evolved over the last few periods
Helps identify trends by comparing current values with historical ones
Provides a quick way to spot divergences between price and indicators
Useful for comparing multiple indicators at specific points in time
Chart patterns
HH||LL||KCThis script is written in Pine Script version 5, designed for TradingView. It defines a custom trading indicator named **HH||LL||KC**. Here's a breakdown of its components and functionality:
---
### **Indicator Overview**
- **Purpose**: Combines multiple technical analysis tools to generate trading signals, including Keltner Channels, RSI-based stochastic oscillator, and conditions for buy and sell alerts.
- **Overlay**: The indicator plots directly on the price chart (overlay = `true`).
- **Precision**: Values are displayed with 2 decimal points.
---
### **Key Components**
1. **Keltner Channels**:
- Defined by `ma`, `upper`, and `lower` bands.
- Uses an exponential moving average (EMA) as the basis (`ma`).
- The upper and lower bands are derived from the range of highs and lows over the specified `length` (default is 100), multiplied by a factor (`mult`, default is 0.5).
2. **RSI Stochastic Oscillator**:
- Combines RSI and Stochastic calculations to create `%K` and `%D` lines:
- RSI is calculated over `lengthRSI` (default 14) using the specified source (`close` by default).
- Stochastic uses `lengthStoch` (default 14) smoothed by `smoothK` and `smoothD`.
- `%K` and `%D` are used for overbought/oversold signals and crossovers.
3. **Highs, Lows, and Alerts**:
- Identifies:
- **Highs (HH)** when `%K > 80`.
- **Lows (LL)** when `%K < 20`.
- Generates `red` and `green` points based on crossovers of `%K` with overbought/oversold levels.
- A 36-period EMA is plotted as an additional trend indicator.
4. **Additional Plots**:
- `ta.linreg(close, 21, 0)`: Short-term linear regression line.
- `ta.linreg(close, 375, 0)`: Long-term linear regression line.
- Plots for `red` and `green` points for potential reversal levels.
- Buy and Sell signal markers:
- **Buy**: Appears below the bar when `condi1` is true.
- **Sell**: Appears above the bar when `condi2` is true.
5. **Alerts**:
- Triggered when:
- `%K` crosses `%D` with specific conditions (e.g., close above `green` or below `red`).
- Defined via `alertcondition`.
---
### **Trading Logic**
1. **Buy Signal (condi1)**:
- EMA is above the upper Keltner Channel.
- Red marker (`red`) is above the EMA, and:
- Current or past candles open and close above the marker.
- `%K` is below 20, and `%K` crosses `%D`.
2. **Sell Signal (condi2)**:
- EMA is below the lower Keltner Channel.
- Green marker (`green`) is below the EMA, and:
- Current or past candles open below the marker.
- `%K` is above 80, and `%K` crosses under `%D`.
---
### **Visualization**
- **Keltner Channel**: Blue bands for upper and lower limits, with a gray center line.
- **Trend Lines**:
- Orange for short-term linear regression.
- White for long-term linear regression and EMA.
- **Markers**:
- Green for buy signals.
- Red for sell signals.
- **Cross Points**:
- Green dots (`green`) for potential buy reversals.
- Red dots (`red`) for potential sell reversals.
---
### **Use Case**
Traders can use this indicator for:
- Identifying overbought/oversold conditions.
- Spotting trend reversals and continuation patterns.
- Generating buy/sell alerts based on multi-condition logic.
It is versatile and integrates several technical analysis concepts into a single script.
35% Drop from 251 day High@ DR GSthis indicator capture the 35% drop in a profit making company, preferably a large cap in previous 1 year trading days.
Enhanced Multi-Indicator StrategyEnhance your strategy by incorporating a combination of indicators to improve accuracy. We'll use the Relative Strength Index (RSI) and the Moving Average Convergence Divergence (MACD) along with your moving averages to provide a more robust signal.
Asia Sessions AutoPlotting**Asia Sessions AutoPlotting**
This script is designed to automatically detect and plot the Asia session high and low levels directly on your chart, providing key session data for trading analysis. It is highly customizable, making it an essential tool for traders who rely on session data for decision-making.
### Key Features:
- **Asia Session Detection**: Automatically identifies the Asia session based on user-defined time settings (default: 0000-0845 UTC).
- **High/Low Line Plotting**: Displays high and low price levels for the session with customizable colors and line styles.
- **Line Extensions**: Option to extend session high/low lines for future price action reference.
- **Session Background Fill**: Adds an optional colored background to highlight the Asia session period.
- **Day Labels**: Includes labels for the session high/low levels with the corresponding day of the week.
- **Dynamic Session History**: Limits the display to a user-specified number of past sessions (default: 7) to keep the chart clean and focused.
- **Customizable Colors**: Highlights Mondays with unique colors for easy identification, while other weekdays use a different scheme.
### Use Cases:
- Identify key session levels for trading strategies.
- Monitor Asia session dynamics and their impact on subsequent sessions.
- Spot significant price reactions around session highs/lows.
### Inputs:
- **Session Time**: Adjust the session time to match your preferred Asia trading hours.
- **Toggle High/Low Lines**: Enable or disable the plotting of session highs and lows.
- **Line Extensions**: Extend the session high/low lines into future bars for better visualization.
- **Background Highlight**: Toggle a colored background for the Asia session.
- **Maximum Sessions**: Define how many past sessions to display for clarity.
This script is perfect for intraday traders, scalpers, and swing traders looking to gain insight into the Asia session and its influence on global markets. Fully adjustable and easy to use, it enhances your chart with critical information at a glance.
Simply add it to your TradingView chart, configure your settings, and let it do the work for you!
EMA with Bar CountThis indicator, **"EMA with Bar Count"**, is a comprehensive tool for traders that combines multiple technical analysis techniques to enhance decision-making. Here's a summary of its features:
### Features:
1. **Multiple Timeframe EMA (Exponential Moving Average):**
- Allows traders to visualize EMAs from multiple timeframes, such as 1-minute, 5-minute, 60-minute, daily, and custom intervals.
- EMAs are displayed in different colors for easy differentiation, aiding in identifying key trend directions and support/resistance levels.
2. **Bar Count Tracker:**
- Tracks and labels bars at specific intervals (e.g., every 3 bars) with customizable label size and color.
- Useful for monitoring bar progression and aligning with time-based strategies.
3. **Inside and Outside Bars:**
- Highlights inside bars (bars completely within the range of the previous bar) and outside bars (bars exceeding the range of the previous bar).
- Provides visual markers for potential consolidation (inside bars) or volatility (outside bars) setups.
4. **Trend Candle Analysis:**
- Detects sequences of three consecutive bullish or bearish candles.
- Marks these trends on the chart for potential continuation or reversal strategies.
5. **Micro Gaps:**
- Detects and marks gaps between the current bar's open and the previous bar's close, highlighting potential price inefficiencies.
- Differentiates between bullish (gap up) and bearish (gap down) gaps with unique symbols.
6. **50% Line Visualization:**
- Calculates and optionally displays a midline for each bar, representing 50% of its range.
- Helps traders identify equilibrium levels within individual bars.
7. **Overlap and TR Detector:**
- Measures the overlap between consecutive bars as a proportion of their range.
- Marks TR (Trading Range) bars with significant overlaps, highlighting potential areas of consolidation.
8. **Pattern Alerts:**
- Identifies advanced patterns like IOI (Inside-Outside-Inside), OII (Outside-Inside-Inside), and IOO (Inside-Outside-Outside).
- Includes customizable alerts for these patterns and specific bar counts to improve reaction times.
9. **Customizable Background Highlighting:**
- Option to color the chart background based on specific conditions, like time (e.g., 7:30 AM) or relative position to the 1-hour EMA.
10. **Gap Detector for Fair Value Gaps (FVG):**
- Highlights gaps between bars using shaded boxes.
- Useful for identifying untested price areas that may attract future price action.
11. **Wedge and Flag Patterns:**
- Analyzes pivot points to identify wedges and flag patterns.
- Provides visual guides to aid in breakout or continuation trade setups.
12. **Alerts for Key Events:**
- Customizable alerts for a wide range of trading events, including long wicks, range breakouts, and key bar patterns.
This indicator is designed for traders who want an all-in-one tool that provides actionable insights from multiple technical perspectives, enabling them to spot trends, reversals, breakouts, and consolidation zones effectively.
EMA with Bar CountThis indicator, **"EMA with Bar Count"**, is a comprehensive tool for traders that combines multiple technical analysis techniques to enhance decision-making. Here's a summary of its features:
### Features:
1. **Multiple Timeframe EMA (Exponential Moving Average):**
- Allows traders to visualize EMAs from multiple timeframes, such as 1-minute, 5-minute, 60-minute, daily, and custom intervals.
- EMAs are displayed in different colors for easy differentiation, aiding in identifying key trend directions and support/resistance levels.
2. **Bar Count Tracker:**
- Tracks and labels bars at specific intervals (e.g., every 3 bars) with customizable label size and color.
- Useful for monitoring bar progression and aligning with time-based strategies.
3. **Inside and Outside Bars:**
- Highlights inside bars (bars completely within the range of the previous bar) and outside bars (bars exceeding the range of the previous bar).
- Provides visual markers for potential consolidation (inside bars) or volatility (outside bars) setups.
4. **Trend Candle Analysis:**
- Detects sequences of three consecutive bullish or bearish candles.
- Marks these trends on the chart for potential continuation or reversal strategies.
5. **Micro Gaps:**
- Detects and marks gaps between the current bar's open and the previous bar's close, highlighting potential price inefficiencies.
- Differentiates between bullish (gap up) and bearish (gap down) gaps with unique symbols.
6. **50% Line Visualization:**
- Calculates and optionally displays a midline for each bar, representing 50% of its range.
- Helps traders identify equilibrium levels within individual bars.
7. **Overlap and TR Detector:**
- Measures the overlap between consecutive bars as a proportion of their range.
- Marks TR (Trading Range) bars with significant overlaps, highlighting potential areas of consolidation.
8. **Pattern Alerts:**
- Identifies advanced patterns like IOI (Inside-Outside-Inside), OII (Outside-Inside-Inside), and IOO (Inside-Outside-Outside).
- Includes customizable alerts for these patterns and specific bar counts to improve reaction times.
9. **Customizable Background Highlighting:**
- Option to color the chart background based on specific conditions, like time (e.g., 7:30 AM) or relative position to the 1-hour EMA.
10. **Gap Detector for Fair Value Gaps (FVG):**
- Highlights gaps between bars using shaded boxes.
- Useful for identifying untested price areas that may attract future price action.
11. **Wedge and Flag Patterns:**
- Analyzes pivot points to identify wedges and flag patterns.
- Provides visual guides to aid in breakout or continuation trade setups.
12. **Alerts for Key Events:**
- Customizable alerts for a wide range of trading events, including long wicks, range breakouts, and key bar patterns.
This indicator is designed for traders who want an all-in-one tool that provides actionable insights from multiple technical perspectives, enabling them to spot trends, reversals, breakouts, and consolidation zones effectively.
Raj Daily, Weekly & Monthly OHLC Lines - Bold & ExtendedRAj daily weekly monthly high lo kfsadhsdufho8wejfjwjcoidwjcoijfwicn;dnc;qdihcd8hvhfqwihcqdnqcudhvcwhfqrohf;owihf;owihfowqhf;owefhowhfoqewfohwfh
Leonardo Pereira - Dynamic Levels"Leonardo Pereira - Dynamic Levels" é uma ferramenta desenvolvida por Leonardo Dias Pereira para traders que buscam análises precisas e objetivas no mercado financeiro. Este indicador identifica automaticamente níveis essenciais, como suporte, resistência, alvo e stop-loss, com base em cálculos dinâmicos e parâmetros personalizáveis, como risco percentual e alavancagem.
Com detecção automática de tendência (alta, baixa ou configurável manualmente), o script desenha linhas no gráfico para auxiliar na tomada de decisões estratégicas, fornecendo uma visão clara dos níveis críticos de preço. É ideal tanto para iniciantes quanto para traders experientes que desejam aprimorar suas operações com maior confiança e eficiência.
Recursos Principais:
Identificação automática de suporte, resistência, alvo e stop-loss.
Configuração de tendência (automática ou manual).
Personalização de risco percentual e alavancagem.
Atualização dinâmica das linhas no gráfico.
Indicação visual da tendência detectada.
Maximize seus resultados e simplifique sua análise com esta poderosa ferramenta de suporte à decisão!
AlphaEdge Crypto Tracker [CHE]AlphaEdge Crypto Tracker
This tool is my Christmas gift to all traders. I wish you all a Merry Christmas and successful trades in the coming year!
Efficiently Identify Top Performers and Underperformers Among 40 Crypto Assets at a Glance
In the fast-paced world of cryptocurrency trading, staying ahead requires the ability to quickly assess the performance of multiple assets simultaneously. AlphaEdge Crypto Tracker is an advanced Pine Script™ indicator designed for TradingView that empowers traders to effortlessly monitor and evaluate 40 different crypto assets in real-time.
Why It’s Important to Identify Winners and Losers Among 40 Assets at a Glance:
1. Time Efficiency: Managing a diverse portfolio can be overwhelming. With AlphaEdge Crypto Tracker, traders can swiftly identify which assets are performing exceptionally well (winners) and which are underperforming (losers) without the need to analyze each asset individually.
2. Informed Decision-Making: By having a clear overview of top gainers and losers, traders can make strategic decisions such as reallocating investments, taking profits, or cutting losses, thereby optimizing their trading strategies.
3. Risk Management: Quickly spotting underperforming assets helps in mitigating potential losses and adjusting positions to maintain a balanced and profitable portfolio.
4. Opportunity Identification: Recognizing top-performing assets allows traders to capitalize on emerging trends and maximize their returns by focusing on the most promising opportunities.
Key Features of AlphaEdge Crypto Tracker :
- Comprehensive Asset Tracking: Monitors 40 crypto assets simultaneously, providing a broad view of the market landscape.
- Max Gain and Adjusted Max Loss Calculations: Utilizes a 14-bar (configurable) period to calculate the highest gains and the adjusted maximum losses for each asset, offering insights into potential profitability and risk.
- Dynamic Ranking: Automatically sorts and ranks assets based on their performance, highlighting the top 10 gainers and top 10 losers for easy comparison.
- Customizable Display:
- Table Settings: Adjust the size, position, and colors of the performance table to fit your chart layout.
- Interactive Tooltips: Hover over asset names to view detailed tooltips, enhancing usability and information accessibility.
- Visual Alerts: Changes in asset performance are visually indicated through background color updates, allowing for immediate recognition of significant shifts.
- User-Friendly Interface: Intuitive table layout with clear headers and organized data presentation, making it easy for traders of all levels to interpret the information.
How It Works:
1. Data Calculation: For each of the 40 tracked assets, AlphaEdge Crypto Tracker calculates the maximum gain and adjusted maximum loss over the defined trading period.
2. Sorting and Ranking: The assets are sorted based on their maximum gains and adjusted maximum losses, automatically updating to reflect the latest market movements.
3. Real-Time Display: The top 10 gainers and losers are displayed in a neatly organized table directly on your TradingView chart, providing immediate visual insights.
4. Customization: Users can tailor the tracking period, select specific assets to monitor, and adjust the table’s appearance to match their trading style and preferences.
Conclusion:
AlphaEdge Crypto Tracker is an essential tool for cryptocurrency traders seeking to enhance their market analysis and decision-making processes. By providing a comprehensive and customizable overview of multiple assets, it enables traders to efficiently identify profitable opportunities and manage risks effectively. Whether you’re a seasoned trader or just starting, AlphaEdge Crypto Tracker equips you with the insights needed to navigate the dynamic crypto market with confidence.
Get Started Today:
Integrate AlphaEdge Crypto Tracker into your TradingView setup and take control of your crypto trading strategy with unparalleled clarity and precision.
Disclaimer:
The content provided, including all code and materials, is strictly for educational and informational purposes only. It is not intended as, and should not be interpreted as, financial advice, a recommendation to buy or sell any financial instrument, or an offer of any financial product or service. All strategies, tools, and examples discussed are provided for illustrative purposes to demonstrate coding techniques and the functionality of Pine Script within a trading context.
Any results from strategies or tools provided are hypothetical, and past performance is not indicative of future results. Trading and investing involve high risk, including the potential loss of principal, and may not be suitable for all individuals. Before making any trading decisions, please consult with a qualified financial professional to understand the risks involved.
By using this script, you acknowledge and agree that any trading decisions are made solely at your discretion and risk.
License Information:
This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0. You can view the full license (mozilla.org).
© chervolino
AlphaEdge Crypto Tracker [CHE]AlphaEdge Crypto Tracker
Efficiently Identify Top Performers and Underperformers Among 40 Crypto Assets at a Glance
In the fast-paced world of cryptocurrency trading, staying ahead requires the ability to quickly assess the performance of multiple assets simultaneously. AlphaEdge Crypto Tracker is an advanced Pine Script™ indicator designed for TradingView that empowers traders to effortlessly monitor and evaluate 40 different crypto assets in real-time.
This tool is my Christmas gift to all traders. I wish you all a Merry Christmas and successful trades in the coming year!
Why It’s Important to Identify Winners and Losers Among 40 Assets at a Glance:
1. Time Efficiency: Managing a diverse portfolio can be overwhelming. With AlphaEdge Crypto Tracker, traders can swiftly identify which assets are performing exceptionally well (winners) and which are underperforming (losers) without the need to analyze each asset individually.
2. Informed Decision-Making: By having a clear overview of top gainers and losers, traders can make strategic decisions such as reallocating investments, taking profits, or cutting losses, thereby optimizing their trading strategies.
3. Risk Management: Quickly spotting underperforming assets helps in mitigating potential losses and adjusting positions to maintain a balanced and profitable portfolio.
4. Opportunity Identification: Recognizing top-performing assets allows traders to capitalize on emerging trends and maximize their returns by focusing on the most promising opportunities.
Key Features of AlphaEdge Crypto Tracker :
- Comprehensive Asset Tracking: Monitors 40 crypto assets simultaneously, providing a broad view of the market landscape.
- Max Gain and Adjusted Max Loss Calculations: Utilizes a 14-bar (configurable) period to calculate the highest gains and the adjusted maximum losses for each asset, offering insights into potential profitability and risk.
- Dynamic Ranking: Automatically sorts and ranks assets based on their performance, highlighting the top 10 gainers and top 10 losers for easy comparison.
- Customizable Display:
- Table Settings: Adjust the size, position, and colors of the performance table to fit your chart layout.
- Interactive Tooltips: Hover over asset names to view detailed tooltips, enhancing usability and information accessibility.
- Visual Alerts: Changes in asset performance are visually indicated through background color updates, allowing for immediate recognition of significant shifts.
- User-Friendly Interface: Intuitive table layout with clear headers and organized data presentation, making it easy for traders of all levels to interpret the information.
How It Works:
1. Data Calculation: For each of the 40 tracked assets, AlphaEdge Crypto Tracker calculates the maximum gain and adjusted maximum loss over the defined trading period.
2. Sorting and Ranking: The assets are sorted based on their maximum gains and adjusted maximum losses, automatically updating to reflect the latest market movements.
3. Real-Time Display: The top 10 gainers and losers are displayed in a neatly organized table directly on your TradingView chart, providing immediate visual insights.
4. Customization: Users can tailor the tracking period, select specific assets to monitor, and adjust the table’s appearance to match their trading style and preferences.
Conclusion:
AlphaEdge Crypto Tracker is an essential tool for cryptocurrency traders seeking to enhance their market analysis and decision-making processes. By providing a comprehensive and customizable overview of multiple assets, it enables traders to efficiently identify profitable opportunities and manage risks effectively. Whether you’re a seasoned trader or just starting, AlphaEdge Crypto Tracker equips you with the insights needed to navigate the dynamic crypto market with confidence.
Get Started Today:
Integrate AlphaEdge Crypto Tracker into your TradingView setup and take control of your crypto trading strategy with unparalleled clarity and precision.
Disclaimer:
The content provided, including all code and materials, is strictly for educational and informational purposes only. It is not intended as, and should not be interpreted as, financial advice, a recommendation to buy or sell any financial instrument, or an offer of any financial product or service. All strategies, tools, and examples discussed are provided for illustrative purposes to demonstrate coding techniques and the functionality of Pine Script within a trading context.
Any results from strategies or tools provided are hypothetical, and past performance is not indicative of future results. Trading and investing involve high risk, including the potential loss of principal, and may not be suitable for all individuals. Before making any trading decisions, please consult with a qualified financial professional to understand the risks involved.
By using this script, you acknowledge and agree that any trading decisions are made solely at your discretion and risk.
License Information:
This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0. You can view the full license (mozilla.org).
© chervolino
BTC Multi-Timeframe Perfect SignalsCe script, intitulé "BTC Multi-Timeframe Perfect Signals", est conçu pour détecter des signaux de trading robustes et fiables pour le Bitcoin en utilisant des critères provenant de plusieurs périodes de temps. Voici une description détaillée de ses fonctionnalités et de sa logique :
Objectif Principal
Le script identifie des signaux parfaits longs et courts en combinant des indicateurs techniques (RSI, MACD, EMA, volume) sur trois horizons temporels :
Hebdomadaire (Weekly) – pour analyser la tendance à long terme.
Journalier (Daily) – pour confirmer la dynamique intermédiaire.
Intra-journalier (4H) – pour des points d’entrée précis.
Les Composantes du Script
1. Paramètres Configurables
RSI Period : Période pour calculer l'indicateur RSI.
MACD Fast, Slow, Signal : Périodes utilisées pour les lignes MACD et Signal.
Ces paramètres permettent de personnaliser les signaux en fonction des préférences de l’utilisateur ou des caractéristiques du marché.
2. Indicateurs Multi-Timeframes (MTF)
Le script extrait les données suivantes depuis des périodes spécifiques grâce à request.security :
RSI Hebdomadaire et Journalier : Force relative du prix sur des périodes différentes.
EMA Hebdomadaire (20 et 50) : Moyennes mobiles exponentielles pour la tendance à long terme.
Prix de clôture journalier : Positionnement quotidien par rapport à l'EMA 20.
Volume Hebdomadaire : Pour évaluer l'intérêt du marché sur une longue période.
Pour la période actuelle (4H), il utilise :
MACD (4H) : Détection des croisements MACD/Signal.
RSI (4H) : Confirmation des conditions de surachat ou de survente.
ATR (Average True Range) : Mesure de la volatilité actuelle.
3. Signaux Parfaits
Les signaux se déclenchent si toutes les conditions suivantes sont remplies :
Signal Long :
Hebdomadaire :
RSI < 35 (Survente).
EMA 20 > EMA 50 (Tendance haussière).
Volume > Moyenne mobile du volume (20).
Journalier :
RSI < 40 (Confirmation de la survente intermédiaire).
Clôture > EMA 20 (Prix au-dessus de la moyenne mobile journalière).
4H :
Croisement MACD/Signal vers le haut.
RSI < 35.
Bonne volatilité (ATR supérieur à 80% de sa moyenne).
Signal Court :
Critères inverses : RSI > 65, EMA 20 < EMA 50, etc.
4. Alertes Détaillées
Lorsque les signaux parfaits sont détectés, le script génère une alerte avec :
Les conditions des trois périodes (RSI, tendance, etc.).
Les niveaux de Stop Loss (SL) et de Take Profit (TP1, TP2, TP3).
Une indication de la force maximale du signal et un "Win Rate" théorique.
5. Affichage Visuel
Les signaux longs sont représentés par des triangles verts sous les bougies.
Les signaux courts par des triangles rouges au-dessus des bougies.
Les couleurs de fond (optionnelles) peuvent indiquer un contexte haussier ou baissier.
Forces du Script
Robustesse : Combine plusieurs indicateurs et horizons pour réduire les faux signaux.
Personnalisation : Les paramètres ajustables permettent d’affiner les résultats.
Alertes Pratiques : Donne des détails complets pour agir rapidement.
Fiabilité : En intégrant volume, volatilité et tendance, il maximise la probabilité de réussite des signaux.
Limites et Améliorations Possibles
Complexité des Conditions : Les critères restrictifs peuvent limiter le nombre de signaux.
Manque de Backtesting : Pas de suivi de capital ou d’évaluation des performances historiques.
Dépendance à un seul actif : Conçu spécifiquement pour BTC.
Ce script est particulièrement utile pour des traders recherchant des points d'entrée/sortie précis et basés sur une analyse multi-timeframe complète. Si tu veux des ajustements ou un ajout de backtesting, fais-le-moi savoir !
Single Candle Model-DTFXThe script identifies the candles with engulfing body and marks the 50% of the candle for easy entry based on model of #DTFX single candle entry
Interpreting the Signals:
Look for candles labeled as "BE". These represent significant price action where the range is larger than the previous candle's range.
Pay attention to the 50% line of the "BE" candle:
A green line indicates a bullish "BE" candle.
A red line indicates a bearish "BE" candle.
Watch for Buy ("B") and Sell ("S") labels:
"B": Indicates a potential bullish breakout.
"S": Indicates a potential bearish breakdown.
Alerts:
Configure alerts in TradingView to notify you whenever a "B" or "S" signal is detected. This allows you to act on the signals without constantly monitoring the chart.
Use in Trading Strategies:
Combine this indicator with other tools like support/resistance levels, moving averages, or trend analysis to validate the signals.
Use the midpoint (50% line) of the "BE" candle as a potential reference point for stop-loss or target levels.
Customizations:
Adjust the appearance of labels and lines by modifying their style, color, or placement in the script.
Add filters (e.g., timeframes or volume conditions) to refine the detection of "BE" candles.
This indicator helps traders identify pivotal price movements and act on potential breakouts or breakdowns with clear visual markers and alerts.
Gold Trading Signals + Trendlines + Patterns//@version=5
indicator("Gold Trading Signals + Trendlines + Patterns", overlay=true)
// === تنظیمات ورودی ===
emaShortLength = input.int(50, title="EMA Short Length", minval=1)
emaLongLength = input.int(200, title="EMA Long Length", minval=1)
rsiLength = input.int(14, title="RSI Length", minval=1)
atrMultiplierSL = input.float(1.5, title="ATR Multiplier for Stop Loss", minval=0.1)
tpMultiplier = input.float(2.0, title="Take Profit Multiplier", minval=1.0)
pivotLookback = input.int(5, title="Pivot Lookback Period", minval=2)
// === اندیکاتورها ===
emaShort = ta.ema(close, emaShortLength)
emaLong = ta.ema(close, emaLongLength)
rsi = ta.rsi(close, rsiLength)
atr = ta.atr(14)
// === قوانین ورود ===
longCondition = close > emaShort and emaShort > emaLong and rsi > 40
shortCondition = close < emaShort and emaShort < emaLong and rsi < 60
// === مدیریت ریسک ===
stopLossLong = close - atr * atrMultiplierSL
takeProfitLong = close + atr * atrMultiplierSL * tpMultiplier
stopLossShort = close + atr * atrMultiplierSL
takeProfitShort = close - atr * atrMultiplierSL * tpMultiplier
// === سیگنالهای بصری ===
plotshape(series=longCondition, style=shape.labelup, location=location.belowbar, color=color.green, text="BUY", size=size.small)
plotshape(series=shortCondition, style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL", size=size.small)
if longCondition
line.new(x1=bar_index, y1=stopLossLong, x2=bar_index + 10, y2=stopLossLong, color=color.red, width=1, style=line.style_dotted)
line.new(x1=bar_index, y1=takeProfitLong, x2=bar_index + 10, y2=takeProfitLong, color=color.green, width=1, style=line.style_dotted)
if shortCondition
line.new(x1=bar_index, y1=stopLossShort, x2=bar_index + 10, y2=stopLossShort, color=color.red, width=1, style=line.style_dotted)
line.new(x1=bar_index, y1=takeProfitShort, x2=bar_index + 10, y2=takeProfitShort, color=color.green, width=1, style=line.style_dotted)
// === خطوط روند ===
// محاسبه سقفها و کفها (Pivot Points)
pivotHigh = ta.pivothigh(high, pivotLookback, pivotLookback)
pivotLow = ta.pivotlow(low, pivotLookback, pivotLookback)
// رسم خطوط روند بر اساس سقفها و کفها
var line upTrendline = na
var line downTrendline = na
if (not na(pivotLow))
if (na(upTrendline))
upTrendline := line.new(x1=bar_index , y1=pivotLow, x2=bar_index, y2=low, color=color.green, width=1, style=line.style_solid)
else
line.set_xy2(upTrendline, bar_index, low)
if (not na(pivotHigh))
if (na(downTrendline))
downTrendline := line.new(x1=bar_index , y1=pivotHigh, x2=bar_index, y2=high, color=color.red, width=1, style=line.style_solid)
else
line.set_xy2(downTrendline, bar_index, high)
// === الگوهای قیمتی ===
// شناسایی مثلث (Triangle)
isTriangle = ta.crossover(emaShort, emaLong) or ta.crossunder(emaShort, emaLong)
if isTriangle
label.new(bar_index, high, "Triangle", style=label.style_circle, color=color.orange, textcolor=color.white)
// === نمایش EMAها ===
plot(emaShort, color=color.blue, title="EMA 50", linewidth=2)
plot(emaLong, color=color.red, title="EMA 200", linewidth=2)
// === نمایش RSI ===
hline(70, "Overbought (70)", color=color.gray, linestyle=hline.style_dotted)
hline(30, "Oversold (30)", color=color.gray, linestyle=hline.style_dotted)
PIERCING PATTERNThis indicator identify of piercing Bullish and bearish pattern finding for help you.
Bullish & Bearish Engulfing This indicator is identify of Bullish and bearish Engulfing pattern find
RSI Multi-Timeframes ProviderRSi-MTF pour intégration dans stratégie.
Quand les 4 TF atteignent des seuils, lancer l'achat ou la vente
Percentual Variation This script is an indicator for plotting percentage-based lines using the previous day's closing price. It is useful for traders who want to visualize support and resistance levels derived from predefined percentages. Here's what the script does:
Calculates percentage levels:
It uses the previous day's closing price to calculate two positive levels (above the close) and two negative levels (below the close) based on fixed percentages:
+0.25% and +0.50% (above the close).
-0.25% and -0.50% (below the close).
Plots the lines on the chart:
Draws four horizontal lines representing the calculated levels:
Green lines indicate levels above the closing price.
Red lines indicate levels below the closing price.
Displays labels on the chart:
Adds labels near the lines showing the corresponding percentage, such as "+0.25%", "+0.50%", "-0.25%", and "-0.50%".
This script provides a clear visual representation of key percentage-based levels, which can be used as potential entry, exit, or target points in trading strategies.