指標和策略
StochRSI Multi-Timeframe AlertsAlert you when StochRSI is overbought or oversold on 15m, 30m, and 1h.
Bullish/Bearish Reversal ArrowsThe Bullish/Bearish Reversal Arrows Indicator is designed to identify potential reversal points in the market based on two key technical analysis tools: the MACD (Moving Average Convergence Divergence) and the RSI (Relative Strength Index).
Bullish Reversal:
A green upward arrow appears below the price bar when the MACD line crosses above the signal line (bullish crossover) and the RSI is in the oversold region (below the specified RSI oversold level).
This indicates a potential shift from a bearish trend to a bullish trend, signaling a possible buy opportunity.
Bearish Reversal:
A red downward arrow appears above the price bar when the MACD line crosses below the signal line (bearish crossunder) and the RSI is in the overbought region (above the specified RSI overbought level).
This indicates a potential shift from a bullish trend to a bearish trend, signaling a possible sell opportunity.
Features:
Combines two popular indicators (MACD and RSI) to increase accuracy.
Plots clear green upward arrows for bullish reversals and red downward arrows for bearish reversals directly on the chart.
Customizable inputs:
Adjust the MACD fast, slow, and signal lengths.
Set the RSI length and thresholds for oversold and overbought conditions.
Use Case:
This indicator is suitable for traders looking for:
Visual cues for potential market reversals.
Confirmation of oversold and overbought conditions using RSI.
An additional layer of decision-making for entry and exit points.
Note: As with all indicators, this tool should not be used in isolation. Combine it with other analysis techniques and risk management strategies for the best results.
Среднее значение баровИндикатор показывает изменение среднего значения свечей ( от минимума до максимума), за определенный период. Можно также настроить либо только падающие свечи, либо растущие.
KP - RSI >= 70 & EMA Trend Filter (Daily trend - buy mode) Explanation of the Code:
Inputs:
You can adjust the RSI length and EMA lengths using the input parameters.
Conditions:
rsiCondition: Checks if RSI is >= 70.
emaCondition: Checks if 9 EMA > 20 EMA > 50 EMA.
trendCondition: Checks if the price is above all three EMAs (confirming a positive trend).
Plotting:
The EMAs and RSI are plotted on the chart for visual confirmation.
Buy Signal:
When all conditions are met, the background is highlighted in green, and a "BUY" label is displayed.
Alerts:
You can set up alerts to notify you when the buy signal is triggered
RSI + MACD Strategy with Alerts//@version=5
indicator("RSI + MACD Strategy with Alerts", overlay=true)
// ตั้งค่า RSI
rsiLength = input.int(14, title="RSI Length")
rsiOverbought = input.int(70, title="RSI Overbought Level")
rsiOversold = input.int(30, title="RSI Oversold Level")
rsiValue = ta.rsi(close, rsiLength)
// ตั้งค่า MACD
fastLength = input.int(12, title="MACD Fast Length")
slowLength = input.int(26, title="MACD Slow Length")
signalLength = input.int(9, title="MACD Signal Length")
= ta.macd(close, fastLength, slowLength, signalLength)
// เงื่อนไขสัญญาณซื้อ (Buy Signal)
buyCondition = ta.crossover(macdLine, signalLine) and rsiValue < rsiOversold
// เงื่อนไขสัญญาณขาย (Sell Signal)
sellCondition = ta.crossunder(macdLine, signalLine) and rsiValue > rsiOverbought
// แสดงสัญญาณบนกราฟ
plotshape(series=buyCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// แจ้งเตือน (Alert)
alertcondition(buyCondition, title="Buy Alert", message="Buy Signal: RSI Oversold และ MACD Bullish Crossover")
alertcondition(sellCondition, title="Sell Alert", message="Sell Signal: RSI Overbought และ MACD Bearish Crossover")
Midnight Opening Ranges [TDL]
Midnight Opening Ranges with Standard Deviations as taught by Micheal J. Huddleston
- Custom colors
- Up to 10 Std dev levels
- Midnight opening price
- Current and previous ranges with dates and midpoints
StochRSI Overbought/Oversold Alert on Multiple TimeframesAlert yourself when it is oversold or overbought on 4 timeframes: 15m, 30m, 1h, and 4h.
Nadaraya-Watson Envelope [MirsaRemix] + 2 EMAsNombre del indicador: Nadaraya-Watson Envelope + 2 EMAs
Descripción:
Este script combina el cálculo avanzado del indicador Nadaraya-Watson Envelope (NWE) con la inclusión de dos medias móviles exponenciales (EMAs) configurables, proporcionando a los traders una herramienta poderosa para el análisis técnico.
Características principales:
Nadaraya-Watson Envelope (NWE):
Utiliza un modelo de suavizado basado en la ventana gaussiana, permitiendo detectar puntos clave de soporte y resistencia dinámica.
Incluye un modo opcional de "repainting" para obtener un suavizado en tiempo real.
Indicaciones visuales de posibles puntos de cruce (flechas hacia arriba y abajo) cuando el precio cruza los límites del envelope.
Medias Móviles Exponenciales (EMAs):
Dos EMAs configurables para ayudar a identificar tendencias y zonas de entrada/salida.
Colores y longitudes personalizables:
EMA 1: Azul (por defecto con una longitud de 20).
EMA 2: Naranja (por defecto con una longitud de 50).
Interfaz intuitiva:
Opciones para ajustar parámetros como el ancho de banda, el factor de multiplicación, y las longitudes de las EMAs.
Indicador compatible con gráficos de TradingView y diseñado para ser utilizado en cualquier marco temporal.
Usos del indicador:
Identificar tendencias generales del mercado con las EMAs.
Detectar posibles niveles de soporte y resistencia dinámicos con la envolvente Nadaraya-Watson.
Encontrar oportunidades de trading con las señales visuales de cruces de límites.
Este indicador es ideal para traders que buscan combinar estrategias basadas en medias móviles con análisis dinámico de precios. Su versatilidad lo hace útil tanto para estrategias de scalping como de swing trading.
Market Sessions and OverlapsMarket Sessions and Overlaps Indicator
This script, titled " Market Sessions and Overlaps ," provides a detailed visualization of major global trading sessions—Asia, Europe, and New York—along with the periods where these sessions overlap. It is designed to assist traders in understanding session timings and overlaps in their local time zone. Key features include:
Session Visualization: Highlights the Asia, Europe, and New York trading sessions directly on the chart with customizable colors and transparency for better clarity.
Overlap Identification: Marks the overlapping periods between Asia-Europe and Europe-New York sessions, where market activity often intensifies, with distinct candle colors.
Time Zone Support: The script allows users to select their local time zone, ensuring all session times are displayed accurately, no matter the user’s location.
Alerts for Key Events: Includes optional alerts to notify users of session openings, closings, and the start or end of overlap periods.
This indicator serves as a visual tool for tracking session-specific activity and liquidity. It is configurable to match individual preferences, enabling better alignment with trading strategies.
Disclaimer: This script is for informational purposes only and does not provide financial advice. Please consult a licensed financial advisor for personalized trading guidance.
MA on OBV OscillatorSMA
OBV
shows the trend of the market
will assist in showing the direction of the market
CryptoMitchX Memecoin ShorterUpdate for "CryptoMitchX Memecoin Shorter" Indicator
New Features & Improvements:
Conditional Hiding of Recommendations:
SHORT Recommendations: These are now hidden when the RSI (Relative Strength Index) falls below 30, preventing signals during potentially oversold conditions.
Take Profit Recommendations: Hidden when the RSI goes above 60, avoiding signals in potentially overbought market conditions.
Refined Alert System:
Alerts for both SHORT and Take Profit signals now only trigger when the RSI conditions are met, ensuring more targeted notifications.
Code Optimization:
The script has been updated to address scope-related errors, improving its reliability and performance on the TradingView platform.
Technical Details:
RSI Implementation: The RSI is calculated with a 14-period length to determine market momentum.
Conditional Plotting: Instead of using direct conditional statements inside plotting functions, we now use boolean variables to control which signals are plotted, avoiding local scope issues.
Signal Tracking: Continues to track consecutive signals, but now with the added condition of RSI thresholds for more nuanced trading signals.
Usage:
Users will see a cleaner chart with signals only appearing when they are most relevant according to RSI levels, reducing false signals and improving the overall trading strategy experience.
I nstallation:
Simply update or replace the existing indicator script with this new version in your TradingView Pine Script editor.
Known Issues & Limitations:
This update does not include real sentiment analysis due to the limitations of Pine Script in accessing external data. The sentiment is simulated based on price volatility and direction.
Feedback:
We're eager to hear your feedback on these changes. If you encounter any issues or have suggestions for further improvements, please let us know.
SQZMOM_LB StrategyUtiliza el indicador sqzmom, abriendo operaciones cuando el indicador cambia al color 3 y cerrandolas cuando cambia al color 1
Price Action + Support/Resistance with LabelsEntry Conditions:
Long Entry (BUY): Based on the bullish engulfing pattern and price being above the resistance level.
Short Entry (SELL): For demonstration, the short entry condition is set as price being below the support level and a bullish candle in the previous bar. You can modify this logic for your own use case.
Stop Loss and Take Profit:
Stoploss is plotted at the calculated stop loss level.
Target is plotted at the calculated take profit level.
Labels:
For long trades, labels are added with "BUY", "STOPLOSS", and "TARGET".
For short trades (if enabled), labels are added with "SELL", "STOPLOSS", and "TARGET".
Labels are placed using label.new at specific locations on the chart (above or below bars).
Alert Conditions:
Alerts are created for both long and short entry signals so you can get notified when the entry conditions are met.
How it works:
BUY label will appear below the bar when a long entry condition is met.
SELL label will appear above the bar when a short entry condition is met.
STOPLOSS and TARGET labels will appear at their respective levels when an entry signal is triggered.
The labels will appear on the chart to give you a clear visual cue of the entry, stop loss, and take profit levels.
How to Use:
Copy the script into your Pine Editor on TradingView and apply it to your chart.
Observe the labels that show up on the chart:
"BUY" will appear below the bar when long conditions are met.
"SELL" will appear above the bar when short conditions are met (if using short logic).
"STOPLOSS" will be plotted at the stop loss level.
"TARGET" will be plotted at the take profit level.
Optional Customization:
You can modify the short entry condition based on your preferred method.
You can adjust the length for the support/resistance calculation, the stopLossRR, and other parameters to fine-tune the strategy for Nifty 50 or any other asset.
Let me know if you have any further questions or need additional modifications!
Auto Fibonacci Extension and Retracement with Visual AlertsThis indicator automatically calculates and plots Fibonacci retracement and extension levels based on recent swing highs and lows, making it a powerful tool for traders who use Fibonacci analysis in their strategies.
Key Features:
• Dynamic Fibonacci Levels: Automatically detects swing highs and lows over a user-defined lookback period to calculate key Fibonacci retracement (e.g., 0.236, 0.382, 0.618, etc.) and extension (e.g., 1.618, 2.618, etc.) levels.
• Visual Alerts: Displays intuitive visual alerts when the price crosses important Fibonacci levels.
• Blue dashed lines for retracement levels.
• Green dashed lines for extension levels.
• Labels with up or down arrows indicating price interactions with these levels.
• Swing High/Low Visualization: Marks recent swing highs and lows with crosses for better clarity.
• Customizable: Adjust the lookback period and Fibonacci levels to suit your trading style.
Who is it for?
This indicator is perfect for:
• Swing Traders: To identify potential reversal or continuation zones.
• Day Traders: For short-term setups based on Fibonacci levels.
• Fibonacci Enthusiasts: To automate the time-consuming process of manually plotting levels.
Usage Ideas:
1. Use retracement levels (e.g., 0.618) to identify areas of potential support or resistance.
2. Use extension levels (e.g., 1.618) to target potential breakout or continuation zones.
3. Combine this indicator with candlestick patterns, volume analysis, or other tools for confirmation.
Limitations:
• This is a standalone indicator and does not provide buy/sell signals. It’s recommended to combine it with other technical analysis tools for best results.
• The lookback period and swing detection rely on past data, so adjustments may be needed based on the asset or timeframe.
Whether you’re looking to streamline your Fibonacci analysis or explore new opportunities in your trading, this indicator is designed to save time, increase accuracy, and enhance your overall trading experience.
Memecoin Shorter Indicator by CryptoMitchXMemecoin Shorter Indicator by CryptoMitchX
Introducing the "Memecoin Shorter Indicator" designed for traders looking to capitalize on the volatile nature of memecoins. This is built on the concept that MemeCoins can't sustain their rallies and that profits move into safer cryptocurrencies like Bitcoin or Stablecoins.
This indicator combines momentum, volume, and sentiment analysis to signal shorting opportunities with a cap at two consecutive signals to manage risk effectively.
Key Features:
Momentum Analysis: Uses Simple Moving Averages (SMA) to detect when the short-term trend crosses below the long-term trend, indicating potential downward momentum.
Volume Spike Detection: Identifies significant volume increases that could signify a reversal or continuation of a downtrend.
Simulated Sentiment Analysis: Monitors price volatility to simulate sentiment, suggesting "Take Profit" when conditions hint at negative market sentiment.
How to Use:
SHORT: The indicator marks "SHORT" on the chart when conditions are met to initiate a short position. This happens when negative momentum, volume spikes, or simulated negative sentiment are combined.
Take Profit: Signals to take profit after initiating a short position, again limited to two consecutive signals.
Strategies and Tips for Optimization:
Backtesting and Forward Testing:
Before live trading, backtest this indicator with historical data to see how it performs over different market conditions, especially during memecoin pump-and-dump cycles.
Use forward testing in a demo account to understand real-time performance without financial risk.
Customization:
Adjust the short_sma_length and long_sma_length according to the asset's volatility. More volatile memecoins might require shorter periods for quicker signals.
Modify volume_spike_threshold to be more or less sensitive to volume changes based on the average trading volume of the asset.
Risk Management:
Since this indicator allows for two consecutive signals, set strict stop-losses to manage risk. Consider the percentage drop from your entry price where you are comfortable cutting losses.
Use this indicator in conjunction with other technical analysis tools like RSI or MACD for confirmation signals to increase the reliability of your trades.
Market Context:
Understand the broader market sentiment towards memecoins. This indicator works best in bearish or highly volatile scenarios. Keep an eye on news and social media trends that could affect memecoin prices.
Trade Sizing:
Due to the speculative nature of memecoins, consider smaller position sizes to manage potential losses. Even with only two consecutive signals, losses can accumulate quickly in volatile markets.
Exit Strategy:
Beyond taking profit on signals, consider setting a trailing stop loss or using a time-based exit strategy if the market doesn't move as expected after your entry.
Alert Utilization:
Set up alerts for both SHORT and Take Profit signals to monitor opportunities without needing constant chart watching.
Remember, trading meme coins involves high risk due to their speculative nature and susceptibility to manipulation. Always trade with what you can afford to lose and use this indicator as part of a broader trading strategy.
Note: This indicator simulates sentiment based on price action; for real sentiment analysis, external data integration would be necessary, which is beyond the scope of Pine Script in TradingView.
Market Sessions (Use On Low TF)The Market Sessions Indicator is designed to highlight the active trading sessions of London, New York, and Hong Kong directly on your TradingView chart. Instead of cluttering the entire chart, this version ensures that session markers are only plotted on the latest candle, keeping your workspace clean and focused.
LIT - Super Indicator by NoronFX - Cup TradesThis is a powerful indicator designed for liquidity traders, bringing together all the essential tools for professional trading. It includes:
The main market sessions
Mitigation minutes
Key liquidity points such as PDH/PDL, PWH/PWL, and PMH/PML
An intelligent checklist
Customizable features like a watermark and configurable labels.
Futures_No-Trade-ZoneMarks the chart with a warning period before Futures market close (yellow) and when the market is actually closed (red).
Reversal Indicator identificar três velas consecutivas verdes ou vermelhas e, dependendo da posição dessas velas em relação à EMA de 21 períodos, exibir uma seta indicando a possível reversão.
Camarilla Pivots + EMA'sMy Script with Camarilla Pivot Points Plus the ability to add 5 EMA's to the chart all built into one
RSI + Auto Support + SMC + MA 20/50+volumCombining Smart Money Concepts (SMC), volume analysis, moving averages, automatic support/resistance detection, and RSI high signals can create a powerful TradingView script for technical analysis and decision-making. Here's an outline of how you can integrate these elements into a Pine Script strategy or indicator:
Smart Money Concepts (SMC):
Identify market structure: Higher highs (HH), higher lows (HL), lower highs (LH), and lower lows (LL).
Highlight key order blocks and liquidity zones.
Volume Analysis:
Use volume as a confirmation tool for breakouts or reversals.
Display relative volume levels to spot unusual activity.
Moving Averages:
Include popular moving averages (e.g., SMA, EMA) for trend detection.
Use crossovers for entry/exit signals.
Auto Support/Resistance:
Automatically plot support and resistance zones based on pivot highs/lows.
Highlight areas of confluence with SMC or volume zones.
RSI High Signals:
Identify overbought/oversold levels on the RSI.
Mark divergence areas for potential reversals.
Here’s a simplified Pine Script to start with:
This script integrates SMC (HH/LL), volume, moving averages, RSI, and auto support/resistance into a single indicator. You can modify it to suit your trading style by adjusting lengths or adding alerts for specific conditions. Let me know if you’d like to refine or expand any part!
Buy/Sell IndicatorSimple Buy Sell script created with Chatgpt
Explanation of Script
Exponential Moving Averages (EMAs): The script calculates a fast EMA and a slow EMA to determine the market trend. A bullish trend is identified when the fast EMA is above the slow EMA, and a bearish trend is identified when the fast EMA is below the slow EMA.
Relative Strength Index (RSI): The RSI is used to measure momentum. A buy signal is generated when the RSI is below 30 (indicating oversold conditions) within a bullish trend, and a sell signal is generated when the RSI is above 70 (indicating overbought conditions) within a bearish trend.
Signal Plotting: The script plots buy and sell signals directly on the chart, represented by green and red labels, respectively. It also plots the fast and slow EMAs for visual reference.