Momentum Aggregator to identify Pivot PointsThis indicator takes into account various indicators like RSI, MACD etc.. to identify confluence and divergence which will help to identify pivot points in price.
Legend:
Green candles identify when there is a confluence of momentum to the upside
Red candle identify when there is a confluence of momentum to the downside
Note: These colors do not identify a positive or negative change in price for the candle. The candle outline identifies this
White candles identify when there is a divergence in momentum often identifying a pivot point for price
Yellow candles identify extreme exhaustion often indicating a good time to anticipate a reversal
Forecasting
buy sel StrategyGöstergenin Amacı
Bu gösterge:
Alım ve satım sinyalleri üretmek için MACD ve Bollinger Bantları kombinasyonunu kullanır.
Sinyalleri grafik üzerinde göstermek için oklar (yukarı ve aşağı) çizer.
Önemli sinyal durumlarında kullanıcıyı uyarmak için uyarı mekanizması içerir.
2. Kullanılan Teknik Göstergeler
A) MACD (Moving Average Convergence Divergence)
MACD, iki üstel hareketli ortalama arasındaki farkı ölçer:
Hızlı MACD Periyodu: Kısa dönem EMA (varsayılan: 12).
Yavaş MACD Periyodu: Uzun dönem EMA (varsayılan: 26).
Sinyal MACD Periyodu: MACD hattının yumuşatılmış versiyonu (varsayılan: 9).
Koşullar:
Alım Sinyali: MACD hattı, sinyal hattını yukarı yönde keser (ta.crossover fonksiyonu).
Satım Sinyali: MACD hattı, sinyal hattını aşağı yönde keser (ta.crossunder fonksiyonu).
B) Bollinger Bantları
Bollinger Bantları, fiyatın oynaklığını (volatilite) ölçmek için kullanılır:
Orta Bant: Fiyatın hareketli ortalamasıdır (varsayılan: 20 periyotluk SMA).
Üst Bant: Orta banda, standart sapmanın belirli bir katı eklenir (varsayılan: 2.0).
Alt Bant: Orta bandan, standart sapmanın belirli bir katı çıkarılır (varsayılan: 2.0).
3. Göstergenin İşlevselliği
A) Alım Koşulu (buy_condition):
pinescript
Kopyala
Düzenle
buy_condition = ta.crossover(macd_line, signal_line) and close > bb_lower
Al sinyali, şu iki şart sağlandığında tetiklenir:
MACD hattı, sinyal hattını yukarı yönde keserse (pozitif momentum).
Fiyat, Bollinger Bantları'nın alt bandının üzerine çıkarsa (fiyatın potansiyel dipten yukarı dönüşü).
B) Satım Koşulu (sell_condition):
pinescript
Kopyala
Düzenle
sell_condition = ta.crossunder(macd_line, signal_line) and close < bb_upper
Sat sinyali, şu iki şart sağlandığında tetiklenir:
MACD hattı, sinyal hattını aşağı yönde keserse (negatif momentum).
Fiyat, Bollinger Bantları'nın üst bandının altına düşerse (fiyatın potansiyel zirveden dönüşü).
4. Grafik Üzerindeki Gösterim
A) Bollinger Bantları:
Üst Bant (kırmızı çizgi).
Alt Bant (yeşil çizgi).
Orta Bant (turuncu çizgi).
B) Alım ve Satım Sinyalleri:
Oklar:
Yeşil ok (yukarı): Alım sinyali.
Kırmızı ok (aşağı): Satım sinyali.
C) Plotlama:
plotarrow fonksiyonu, yukarı ve aşağı sinyalleri oklarla grafik üzerinde gösterir:
pinescript
Kopyala
Düzenle
plotarrow(buy_condition ? 1 : sell_condition ? -1 : na, colorup=color.green, colordown=color.red, offset=-1)
5. Uyarılar
Uyarılar, sinyallerle kullanıcıyı bilgilendirir:
Alım Sinyali Uyarısı:
Mesaj: "MACD ve fiyat, Bollinger Bandı'nın alt sınırının üzerine çıktı."
Satım Sinyali Uyarısı:
Mesaj: "MACD ve fiyat, Bollinger Bandı'nın üst sınırının altına indi."
6. Kodun Avantajları
Kombinasyon Stratejisi: MACD ve Bollinger Bantları’nın birleşimi daha doğruluklu sinyaller üretebilir.
Basit ve Görsel: Grafik üzerinde sinyaller net bir şekilde belirtilmiştir.
Uyarı Mekanizması: Otomatik olarak işlem yapmak veya uyarı almak isteyen kullanıcılar için uygundur.
7. Dezavantajlar
Lag (Gecikme): Hem MACD hem de Bollinger Bantları gecikmeli göstergelerdir, bu da sinyalin gecikmesine neden olabilir.
Trend Filtreleme Eksikliği: Yanlış sinyalleri azaltmak için trend yönünü doğrulayan ek bir filtre (ör. EMA 200) faydalı olabilir.
8. Geliştirme Önerileri
Trend Filtresi: Yanlış sinyalleri azaltmak için EMA (200) gibi bir trend filtresi eklenebilir.
Fazla Sinyallerin Azaltılması: RSI gibi bir gösterge ile daha fazla doğrulama katmanı eklenebilir.
Zaman Aralığı Testi: Bu strateji en iyi 15 dakika, 1 saat veya 1 günlük zaman aralıklarında test edilerek optimize edilebilir.
Bu kod, daha sofistike stratejiler oluşturmak için güçlü bir başlangıç noktasıdır. Doğru parametre ayarlarıyla etkili bir ticaret aracı haline gelebilir.
Daily Open LineIndicator Goal/Objective:
This is a Simple Code to show Daily Open Level in chart
This script plots a circle at the open price of the current day on the chart.
It marks the first bar's open price of each new trading day and
keeps the same value for the rest of the day until a new trading day begins.
It is only for analysis purpose only.
it is not a new indicator and can be replica of any other persons indicator.
The purpose of making indicator as an individual indicator is only for easiness.
Neural Network Proxy Strategy Alt by NHBprodHey, this is a trading strategy I’ve been working on. It uses a combination of three technical indicators: Bollinger Bands (to measure price volatility), Average True Range (ATR, to gauge price movement range), and Chaikin Money Flow (CMF, to check the flow of money in and out of an asset). The script normalizes each of these indicators which is essentially a simplified version of machine learning to create a single combined score, which is kind of like a neural network proxy. If this score goes above 0.5, it signals a potential buy, and if it goes below -0.5, it signals a potential sell. It’s pretty cool because you can tweak the weights of each indicator to suit different market conditions. It even plots the combined score on the chart to help visualize the signals!
This strategy is built for Bitcoin specifically, and it's applied on the 3 hour chart. Check out the results yourself. If you traded this strategy using Long only, then it yielded a staggering ~3% per trade, and there are hundreds of trades in this dataset!
Commission and slippage are included by the way!
If you want to trade this strategy in real time, I also have a pairing indicator script, and you can easily right click on the chart to create a 'buy' alert or a 'sell' alert that can be sent directly to your phone, or email. You can also set it up so that it sends a message to your trading broker so that it automatically purchases and sells based on this strategy. If you'd like help setting that up, let me know!
TrendFusion ReversalUma combinação de lógica de rastreamento de tendências e detecção de topos/fundos para identificar sinais de possível reversão no mercado. Abrange gerenciamento de alvos, stop loss e alertas de pontos críticos, auxiliando na análise técnica e na tomada de decisões de entrada e saída de trades
Fvs-indicatorEle usa 3 médias para acompanhamento, um canal com Upper e Lower e uma média que cruza as linhas definindo compra e venda
Price Projection by Linear RegressionPurpose:
This is a TradingView Pine Script indicator that performs a linear regression on historical price data to project potential future price levels. It's designed to help traders visualize long-term price trends and potential future price targets.
Key Components:
User Inputs:
Historical Data Points (default 1000 bars) - The amount of historical data used to calculate the trend
Years to Project (default 10 years) - How far into the future to project the price
Technical Implementation:
Uses linear regression (ta.linreg) to calculate the trend slope
Converts years to trading days using 252 trading days per year
Limits visible projection to 500 bars due to TradingView's drawing limitations
Projects prices using the formula: current_price + (slope × number_of_bars)
Visual Elements:
Blue line showing actual historical prices
Red projection line showing the expected price path
Label showing the projected price at the visible end of the line
Information table in the top-right corner showing:
Current price
Final projected price after the full time period
Limitations:
Can only display projections up to 500 bars into the future (about 2 years) due to TradingView limitations
The full projection value is still calculated and shown in the table
Past performance doesn't guarantee future results - this is a mathematical projection based on historical trends
Usage:
Traders can use this to:
Visualize potential long-term price trends
Set long-term price targets
Understand the historical trend's trajectory
Compare current prices with projected future values
ATR and RSI-Based Trading StrategyOverview
This strategy aims to capitalize on market opportunities by combining the power of volatility analysis and momentum indicators. By utilizing the Average True Range (ATR), Relative Strength Index (RSI), and Simple Moving Average (SMA), the strategy seeks to identify potential entry and exit points.
Key Indicators
Simple Moving Average (SMA): The SMA provides a general trend direction by smoothing out price data over a specified period.
Relative Strength Index (RSI): The RSI measures the speed and change of price movements, helping to identify overbought and oversold conditions.
Average True Range (ATR): The ATR measures the average true range of an asset's price over a specified period, providing a gauge of volatility.
Strategy Logic
Volatility Bands: The ATR is used to create upper and lower bands around a simple moving average. These bands represent a dynamic range of expected price movement.
Momentum Analysis: The RSI is used to measure the strength and direction of price movements.
Entry Signals:
Long Entry: A long position is entered when the price closes above the lower band and the RSI is below a predefined oversold level.
Short Entry: A short position is entered when the price closes below the upper band and the RSI is above a predefined overbought level.
Advantages
Versatility: The strategy can be applied to various markets and timeframes.
Adaptability: By adjusting the parameters, the strategy can be customized to different market conditions.
Clear signals: The combination of price action and momentum indicators provides clear entry and exit signals.
Disadvantages
False signals: The strategy may generate false signals, especially during periods of high volatility or sideways markets.
Parameter optimization: The performance of the strategy is highly dependent on the chosen parameters, which may require ongoing optimization.
Market conditions: The effectiveness of the strategy can vary depending on the overall market environment.
Conclusion
The ATR and RSI-based trading strategy offers a robust framework for identifying potential trading opportunities. However, like any trading strategy, it is essential to conduct thorough backtesting and consider implementing risk management techniques such as stop-loss and take-profit orders.
Additional Considerations:
Customization: Traders can customize the strategy by adjusting the parameters of the indicators (e.g., SMA length, RSI period, ATR multiplier) and adding additional indicators or filters.
Backtesting: It is crucial to backtest the strategy on historical data to assess its performance and identify potential weaknesses.
Risk Management: Implementing stop-loss and take-profit orders can help to limit potential losses and protect profits.
kyle trend v1(Tony Bii?)Kyle Trend v1 is a powerful multi-functional trading indicator designed to assist traders in identifying trends, reversals, and optimal entry/exit points. It combines the precision of a modified Supertrend strategy with the flexibility of custom Keltner Channels and dynamic EMA layers, making it suitable for traders of all styles.
MACD DETTAEste indicador é uma versão personalizada do clássico MACD (Moving Average Convergence Divergence), projetado para se ajustar automaticamente às configurações ideais de médias móveis exponenciais (EMAs) e da linha de sinal com base no timeframe do gráfico. Ele combina flexibilidade e automação para simplificar a análise técnica, adaptando-se automaticamente às condições específicas de diferentes períodos.
Bitcoin 1H-15M Breakout StrategyKey Features
1H and 15M Timeframes:
The script uses the 1-hour timeframe for the range and 15-minute timeframe for breakout conditions.
request.security is used to fetch the higher timeframe data.
Risk Management:
Variables entry_price, sl_price, and tp_price are declared explicitly as float with na initialization to handle dynamic assignment.
Stop-loss and take-profit levels are calculated based on the specified Risk-Reward Ratio (RRR) and buffer (in pips).
Trade Logic:
Long trade triggered when the 15-minute candle closes above the 1-hour high.
Short trade triggered when the 15-minute candle closes below the 1-hour low.
Visualization:
The range_high and range_low (previous 1-hour high and low) are plotted on the chart using dashed lines.
Debugging:
Enabling the show_debug input displays labels showing stop-loss and take-profit values for easier troubleshooting.
Indicators Table[Robinson0707]
I try to make a table for simple indicator. I hope you lile it. For now I just add classic, fibonacci and wodie pivont point. And ı use Exponanctal moving avera. If you want you can open it as a plot. Also I ad Benjamin GRAHAM's valuation formula
Moving Average Convergence DivergenceTake your trading to the next level with this enhanced Moving Average Convergence Divergence (MACD) indicator. Featuring clear visual signals for "Buy" and "Sell" points, this MACD is designed to simplify your decision-making process. Pair it with our Dynamic SMA Pro Chart for trend confirmation and our Stochastic Indicator for momentum analysis to get a well-rounded view of market trends. Whether you're a beginner or a seasoned trader, this tool helps you spot key opportunities with confidence. Perfect for identifying reversals and optimizing your entries and exits!
Quasimodo PatternWhat is a Quasimodo Pattern?
A Quasimodo Pattern is a chart pattern traders look for to predict possible price reversals in the market:
- Bullish Quasimodo: Signals a possible price increase (buying opportunity).
- Bearish Quasimodo: Signals a potential price decrease (selling opportunity).
How the Script Works
1. Bullish Quasimodo:
- Checks if the price pattern shows signs of a potential upward movement:
- The current low price is higher than a previous price point (suggesting fair value gap).
- The previous candle closed higher than it opened (bullish candle).
- The candle before that closed lower than it opened (bearish candle).
2. Bearish Quasimodo:
- Looks for signs of a downward movement:
- The current high price is lower than a previous price point (suggesting fair value gap).
- The previous candle closed lower than it opened (bearish candle).
- The candle before that closed higher than it opened (bullish candle).
Visual Indicators
- Yellow Candles: Indicate a bullish Quasimodo pattern.
- Pink Candles: Indicate a bearish Quasimodo pattern.
Alerts
If a Quasimodo pattern is detected, the script sends an alert:
- The alert says: "A Quasimodo Pattern has appeared!"
Purpose
Traders can use this tool to quickly spot potential trend changes without manually analyzing every chart, saving time and improving decision-making for trades.
RM Elephant Bar Strategy with Dynamic StopRM Elephant Bar Strategy with Dynamic Stop
Based on elephant bars (or ignition).
Results vary greatly depending on graphics time and settings.
Poor results at very short graphics times (1m, 5m).
Developed by Rodrigo Martins
contato@rodrigo.inf.br / +55 62992250895
------------------------------------------------------------------------------------------
RM Estratégia Barra Elefante com Stop Dinâmico
Baseada em barras elefantes (ou ignição).
Os resultados variam muito conforme o tempo gráfico e configurações.
Resultados fracos em tempos gráficos muito curtos (1m, 5m).
Desenvolvido por Rodrigo Martins
contato@rodrigo.inf.br / whats: +55 62992250895
ETI IndicatorThe Ensemble Technical Indicator (ETI) seeks to combine numerous technical indicators into a single figure that reflects whether a stock is bullish or bearish. Specifically the ETI consists of the following indicators:
SMA 10
WMA 10
RSI
Stochastic Oscillator K%
Stochastic Oscillator D%
MACD
Williams R%
A/D Oscillator
Commodity Channel Index (CCI)
These indicators are converted to either -1 or +1, depending on whether the indicator's value suggests a bullish trend, or bearish trend. These values are then added up and summed across 20 timeframes to derive a single figure.
It is suggested that stocks -40 and below are oversold, while those that are +50 and above are overbought.
Ichimoku Cloud Buy Strategy (Non-Repainting)
Here's a well-structured TradingView description for your Ichimoku Cloud Buy Strategy:
Ichimoku Cloud Buy Strategy (Non-Repainting)
📈 Optimized for Live Trading | No Repainting | Works on Multiple Timeframes 📉
Overview
This Ichimoku Cloud Buy Strategy is designed for traders looking to capitalize on trend-following signals generated by the Ichimoku Cloud indicator. It detects bullish and bearish breakouts based on crossovers of key Ichimoku components, ensuring high-probability trade entries.
🔹 Non-Repainting: Trades execute only on confirmed bar closes, eliminating fake signals.
🔹 Optimized Ichimoku Cloud: Future projection of Lead Lines for accurate cloud visualization.
🔹 Entry & Exit Signals: Buy and sell conditions based on Ichimoku’s trend confirmation rules.
📊 Best Timeframes for Use
This strategy is highly effective on trending markets and is best suited for the following timeframes:
✅ Swing Trading:
🕒 1H, 4H, Daily – Ideal for mid-term trades capturing major trends.
📅 Weekly – Great for position trading and long-term trend following.
✅ Day Trading & Scalping:
⏳ 5m, 15m, 30m – Works well in volatile assets with strong momentum.
⚠️ Avoid 1-minute timeframes due to market noise; instead, use 5m+ for better results.
🎯 Strategy Logic
This strategy utilizes Ichimoku Cloud principles to generate buy and sell signals:
📌 Buy Conditions:
✅ The price crosses above the Baseline (red)
✅ The price crosses above Lead Line A (green)
✅ The price is above the Conversion Line (blue)
📌 Sell Conditions:
❌ The price crosses below the Baseline
❌ The price crosses below Lead Line A
❌ The price is below the Conversion Line
🎯 Trades are only triggered at bar close, ensuring signals remain valid and preventing false breakouts.
📈 Visual Enhancements
✅ Buy signals: Green Up Triangle
✅ Sell signals: Red Down Triangle
✅ Ichimoku Cloud Fill: Green (Bullish) & Red (Bearish)
⚠️ Important Notes
🔹 Repainting Prevention: This script does not repaint – all signals execute on confirmed bar closes.
🔹 Trending Markets Only: Works best in strong uptrends or downtrends. Avoid using in sideways/choppy markets.
🔹 Backtesting & Live Trading: Always test on historical data and adjust parameters for optimal performance.
🚀 Use this strategy as a confirmation tool with other indicators (e.g., RSI, MACD) for best results!
💡 How to Use
1️⃣ Apply the script to your chart (TradingView Strategy Tab)
2️⃣ Select a trending asset & optimal timeframe (1H, 4H, Daily)
3️⃣ Watch for buy & sell signals based on Ichimoku conditions
4️⃣ Use alerts for real-time trade notifications
🔥 Trade smarter with the Ichimoku Cloud Buy Strategy! 🔥
Year-over-Year % Change for PCEPILFEHello, traders!
This indicator is specifically for FRED:PCEPILFE , which is a 'Personal Consumption Expenditures (PCE) Index excluding food and energy.'
What this indicator does is compare the monthly data to that of the same month last year to see how it has changed over the year. This comparison method is widely known as YoY(Year-over-Year).
While I made this indicator to use for FRED:PCEPILFE , you may use it for different charts as long as they show monthly data.
FRED:PCEPILFE is one of the main measures of inflation the Federal Reserve uses.
You can see the YoY % change of the PCE Index excluding food and energy in the official website for the Bureau of Labor Statistics, but unfortunately, I couldn't find one in TradingView.
So instead, I decided to make my own indicator showing the changes using FRED:PCEPILFE .
The code is very simple: it compares the data to the data 12 points ago because 12 points would mean 12 months in this chart. We then multiply the result by 100 for percentage.
Doing so, we compare the current month to the same month of the previous year.
Because I am only interested in the YoY % Change of the index, I pulled the indicator all the way up, covering the original chart data entirely. (Or you could achieve the same by simply moving your indicator to the pane above. But this way, the original chart data is also visible.)
I hope this indicator helps you with your analysis. Feel free to ask questions if have any!
God bless!
Maia Day Trade and Swing TradeGeneral Explanation:
While developing Maia, we wanted to reflect more than 30 indicators on a single screen in different time frames or different base settings.
There are two features you can use on your analysis:
Different Value Fixed Time (1 Hour Timeframe)
In this feature, you will see three lines on your graph which are Fast Legnth (period of 7) Base Legnth (period of 14) and Slow Legnth (period 21). Also you can change and period's which can be fit better to your strategy.
Fixed Value Different Time (1/5/15/30/60/240 Minute Timeframe)
In this features, you will see six lines on your graph, these lines calculates by Base Length or Base Calculation which can be change at setting screen.
Indicator List:
Parabolic SAR
Relative Strength Index ( RSI )
Commodity Channel Index ( CCI )
Money Flow Index ( MFI )
Rate of Change ( ROC )
Average True Range ( ATR )
Aroon
Arnaud Legoux Moving Average ( ALMA )
Bollinger Band Width ( BBW )
Coppock Curve
Chande Momentum Oscillator ( CMO )
Center of Gravity ( COG )
Positive Directional Movement ( +DI )
Negative Directional Movement ( -DI )
Average Directional Movement Index ( ADX )
Ease of Movement ( EOM )
Fractal Adaptive Moving Average ( FRAMA )
Hilbert Transform ( HT )
Hull Moving Average ( HMA )
Inverse Fisher Transform ( IFT )
Keltner Channels Width ( KCW )
Linear Regression Curve ( LINREG )
Momentum ( MOM )
Super Trend
Super Trend ( Signal )
Sentiment Zone Oscillator ( SZO )
Standard Deviation
True Strength Index ( TSI )
Ultimate Oscillator ( UO )
Volume Zone Oscillator ( VZO )
Wave Period Oscillator ( WPO )
Weighted Moving Average ( WMA )
Williams %R
Important Notice:
* Indicator, core data and decision function is designed based on Bitcoin futures market. Signals may not work properly for other equities.
Tips & Tricks:
* Don't forget, every positions has own risks and profits but trade in main trend is crucial.
ICT CRT Model Range with EquilibriumICT CRT Model Range with Equilibrium Indicator
This indicator calculates and displays the high, low, and equilibrium levels within a custom-defined session (9:00 am to 10:00 am New York Time and the lines will stop appearing at 16:00pm ). It draws horizontal lines to represent the session's range and marks the equilibrium point as a reference.
What is CRT (Candle Range Theory)?
Candle Range Theory (CRT) is based on the concept that every candle on any timeframe forms its own range. These ranges can either be manipulated—through strategies like Turtle Soup—or broken, resulting in price movements such as engulfing patterns, breakouts, and retests beyond the candle's high or low.
CRT is commonly visualized as a 3-candle model, but it can include more candles due to the presence of inside bars. An inside bar is a candle whose high is not higher than the previous candle's high and whose low is not lower than the previous candle's low.
The CRT model follows the A-M-D structure:
Accumulation (A): The first candle or group of candles (inside bars) represents market consolidation.
Manipulation (M): The second candle signals a false move, often a Turtle Soup setup designed to trap traders.
Distribution (D): The third candle confirms the true market move, breaking out of the range and establishing the trend.
Customizable Settings:
Line Colors: Choose your preferred colors for the high, low, and equilibrium lines.
Line Widths: Adjust the thickness of the lines for better visibility.
Line Styles: Select from solid, dotted, or dashed styles for each line.
Label Settings: Customize the text and colors of the labels for the high, low, and equilibrium points.
Traders can easily modify these settings to suit their visual preferences and trading strategies. This indicator is ideal for identifying price action within a specific range, offering clear visual cues for potential CRT Setup.
ALERTA - SALVADOR🚀 ALERTA - SALVADOR 🚀
Monitore seus ativos com precisão e agilidade! Este indicador poderoso utiliza o **cruzamento de médias móveis** no timeframe de 5 minutos para identificar oportunidades claras de COMPRA e VENDA.
REQUISITOS:
✔️ Alertas visuais diretamente no gráfico.
✔️ Alertas sonoros automáticos para não perder nenhuma oportunidade.
✔️ Cálculo instantâneo da porcentagem de lucro no momento da venda, exibido
diretamente no gráfico com um design limpo e objetivo.
👉 Ideal para traders que buscam decisões rápidas e bem fundamentadas!