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
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.
RSI with Merged SMA (RSI Shifted)rsi with merged sma and rsi shifted ; you can find out where exactly buy and sell
IndicadorGH EVC v1 [Bielhpp]//@version=6
//Desenvolvido por Bielhpp Indicador Ponto de Entrada em tendencia
indicator(title='IndicadorGH EVC v1 ', overlay=true)
Bars = input.int(defval=8, title="Bars", minval=1, maxval=21, step=1)
MaxPercStop = input.int(defval=20, title="Max Percentual Stop", minval=1)
highValue = ta.highest(high, Bars + 1)
lowValue = ta.lowest(low, Bars + 1)
ColorUP = input.color(#66D8D8, "Buy")
ColorDown = input.color(#F2CC0D, "Sell")
ema9 = ta.ema(close, 9)
sma10 = ta.sma(close, 10)
ema27 = ta.ema(close, 27)
ema57 = ta.ema(close, 57)
ema200 = ta.ema(close, 200)
ema400 = ta.ema(close, 400)
plot(ema9, color=#fffeb4, title="9", linewidth=1)
plot(ema27, color=#1927bf, title="27", linewidth=2)
plot(ema200, color=#2CFFFE, title="200", linewidth=3)
plot(ema400, color=#FC28FC, title="400", linewidth=3)
crossUP = ta.crossover(ema27, ema57)
crossDOWN = ta.crossunder(ema27, ema57)
plotshape(series=crossUP ? ema27 : na, location=location.belowbar, color=#43f16c, style=shape.triangleup, text="BUY")
plotshape(series=crossDOWN ? ema27 : na, location=location.abovebar, color=color.rgb(241, 50, 50), style=shape.triangledown, text="SELL")
plot(ema27, color=color.blue)
plot(ema57, color=color.orange)
crossUPMAX = ta.crossover(ema9, ema400)
crossDOWNMAX = ta.crossunder(ema9, ema400)
plotshape(series=crossUPMAX ? ema9 : na, location=location.belowbar, color=#43f16c, style=shape.triangleup, text="MAX_BUY")
plotshape(series=crossDOWNMAX ? ema9 : na, location=location.abovebar, color=color.rgb(241, 50, 50), style=shape.triangledown, text="MAX_SELL")
// Configurar alertas para os cruzamentos
if (crossUPMAX)
alert("Alerta: Condição MAX_BUY foi ativada! Verifique o gráfico.", alert.freq_once_per_bar)
if (crossDOWNMAX)
alert("Alerta: Condição MAX_SELL foi ativada! Verifique o gráfico.", alert.freq_once_per_bar)
bUP = false
bDown = false
bDestaque = false
fTexto(vMsg, vTrigger, vStop, percStop) =>
syminfo.tickerid + ' ' + timeframe.period + vMsg + str.tostring(vTrigger) + ' Stop: ' + str.tostring(vStop + syminfo.mintick) + ' (' + str.tostring(percStop, format.percent) + ')'
if (sma10 >= sma10 ) and (open < sma10 ) and ((close > sma10) and (ema27 > ema57))
vStop = high - lowValue
pStop = vStop / high * 100
bUP := true
if pStop <= MaxPercStop
alert(fTexto((bDestaque ? ': *** DESTAQUE COMPRA *** ' : ': Compra: '), high, lowValue, pStop), alert.freq_once_per_bar_close)
if (sma10 <= sma10 ) and (open > sma10 ) and ((close < sma10) and (ema27 < ema57))
vStop = highValue - low
pStop = vStop / low * 100
bDown := true
if pStop <= MaxPercStop
alert(fTexto((bDestaque ? ': *** DESTAQUE VENDA *** ' : ': Venda: '), low, highValue, pStop), alert.freq_once_per_bar_close)
barcolor(bUP ? ColorUP : bDown ? ColorDown : na)
Strong Buy/Sell with Demand/Supply and Volume HighlightStrong Buy/Sell with Demand/Supply and Volume Highlight
This indicator combines key technical elements to provide traders with robust buy and sell signals while highlighting significant market zones and volume trends. It's designed for traders seeking clarity and precision in their decision-making process.
Features:
Dynamic Buy/Sell Signals:
Utilizes the crossover of a fast EMA (default: 9) and a slow EMA (default: 21) to generate reliable buy and sell signals.
Buy signals are marked with green upward labels, while sell signals are marked with red downward labels.
Demand and Supply Zone Detection:
Automatically plots demand (support) and supply (resistance) zones based on recent price movements when buy or sell signals are triggered.
Zones are visually marked with lines for quick identification of key price levels.
Volume Analysis:
Highlights candles with high volume relative to the average 20-period volume (adjustable via the volume multiplier input).
High-volume bullish candles are marked green, and bearish candles are marked red, allowing traders to spot significant market activity instantly.
Inputs:
EMA Periods: Customizable fast and slow EMA settings to adjust signal sensitivity.
Demand/Supply Zones: Option to toggle the visibility of demand and supply levels.
Volume Multiplier: Control the threshold for detecting high-volume candles.
How to Use:
Buy Opportunities: Look for buy signals when the fast EMA crosses above the slow EMA, supported by demand zones and high volume.
Sell Opportunities: Observe sell signals when the fast EMA crosses below the slow EMA, reinforced by supply zones and bearish high-volume candles.
Combine this indicator with your trading strategy to enhance decision-making and improve trade timing.
This indicator is suitable for multiple timeframes and markets, making it a versatile tool for scalpers, day traders, and swing traders.
Super Trader by CryptoMitchXDocumentation for "Super Trader by CryptoMitchX"
This indicator combines two powerful trading tools: a swing trading system and a liquidity level detector. Below are strategies, optimization tips, and best practices for using this script effectively on TradingView.
Key Features:
Swing Trader:
Moving averages (MA50 and MA100) to identify trends.
Heiken Ashi style bars for smoothing price action.
SuperTrend indicator for generating delayed buy/sell signals to reduce noise and false signals.
Liquidity Levels:
Detects and visualizes bullish and bearish liquidity zones.
Allows users to choose between "Wicks Only," "Breaks & Retests," or a combined mode.
Configurable zone extension to see how long a zone remains valid.
Strategies for Use:
Trend Following:
Use the MA50 and MA100 to determine the overall trend direction.
Uptrend: MA50 is above MA100.
Downtrend: MA50 is below MA100.
Enter trades in the direction of the trend when buy/sell signals align with liquidity levels.
Liquidity Zone Interaction:
Watch for price interactions with identified liquidity zones.
Bullish Zone: Look for buy signals near bullish zones.
Bearish Zone: Look for sell signals near bearish zones.
Combine this with Heiken Ashi bars to confirm strong momentum before entering trades.
SuperTrend Signals:
Delayed buy/sell signals reduce overtrading and help capture stronger market moves.
Use these signals as confirmation rather than standalone triggers.
Optimization Ideas:
Adjust Swing Sensitivity:
The default swing length is set to 5. Increase it (e.g., to 7-10) for higher timeframes to focus on major price pivots.
Customize Zone Behavior:
Use the "Extend Zones" option to track long-lasting zones and assess market structure.
Adjust the "Maximum Zone Bars" parameter to manage clutter and maintain relevance.
Fine-Tune SuperTrend:
Modify the ATR Period and Factor settings to suit your preferred trading timeframe.
Lower ATR: More reactive to price changes.
Higher Factor: Reduces noise and false signals.
Use Volume Data:
Pay attention to the volume histogram. Zones with high-volume interactions are more significant and likely to hold as support or resistance.
Tips for Buying and Selling:
Buying:
Look for buy signals when price interacts with bullish liquidity zones and the MA50 is above MA100.
Confirm upward momentum with Heiken Ashi candles and high volume.
Use the delayed buy signal to ensure the market has committed to the move.
Selling:
Look for sell signals when price interacts with bearish liquidity zones and the MA50 is below MA100.
Confirm downward momentum with Heiken Ashi candles and increasing volume.
Wait for delayed sell signals to reduce false exits in a volatile market.
Additional Notes:
This indicator is best used on higher timeframes (e.g., 1H, 4H, or Daily) to reduce noise.
Combine with other indicators (e.g., RSI or MACD) for additional confirmation.
Always test and refine settings using the "Replay" mode on TradingView to optimize for your trading style.
Gaussian Channel Strategy v3.0 - CAFGaussian channel strategy using stochastic RSI to mark buy and sell
Trend Retest Strategy1. The Two Lines: Support & Resistance Levels
Red Line (recentHigh):
Plots the highest price level over the last 7 days (42 bars on the 4-hour timeframe). This acts as a dynamic resistance level.
Example: If price approaches this line and reverses, it signals a potential resistance retest.
Green Line (recentLow):
Plots the lowest price level over the last 7 days (42 bars on 4H). This acts as a dynamic support level.
Example: If price bounces off this line, it signals a support retest.
These lines update automatically as new price data forms.
Why 42 bars?
4-hour chart = 6 bars per day (24 hours / 4 = 6).
6 bars/day × 7 days = 42 bars.
2. Entry Signals (Arrows)
The arrows appear when all your strategy’s conditions align:
For Long Entries (▲ Green Triangle Below Bar):
Daily Trend: Daily RSI ≥ 50 (bullish).
MA Crossover: 20-period SMA crosses above 50-period SMA on the 4H chart.
RSI Confirmation: 4H RSI is ≥ 50 and rising (bullish momentum).
Retest: Price is within 0.5% of either the recentHigh (resistance) or recentLow (support).
Volume: Current volume > 20-period average volume.
Candle Confirmation: A bullish candle closes above the open.
For Short Entries (▼ Red Triangle Above Bar):
Daily Trend: Daily RSI < 50 (bearish).
MA Crossover: 20-period SMA crosses below 50-period SMA on the 4H chart.
RSI Confirmation: 4H RSI is ≤ 50 and falling (bearish momentum).
Retest: Price is near recentHigh or recentLow (same 0.5% threshold).
Volume: Volume exceeds its 20-period average.
Candle Confirmation: A bearish candle closes below the open.
3. How It All Fits Together
Step 1: The indicator checks the daily RSI to confirm the broader trend.
Step 2: On the 4H chart, it tracks the moving averages (MA20 and MA50) and RSI for momentum.
Step 3: When price retests the dynamic support/resistance lines (red/green), it waits for volume and candle confirmation to validate the retest.
Step 4: If all rules align, an arrow appears (long or short).
Example Scenario (Long Entry):
Daily Chart: RSI = 60 (bullish).
4H Chart:
MA20 crosses above MA50.
RSI = 55 and rising.
Price dips to the green support line (within 0.5%).
Volume spikes above average.
A bullish candle closes higher.
Result: A green ▲ appears below the bar.
Directional Movement Index - CAFDirectional Movement Index with improved color pattern and 25 point horizontal line
Simple Swing Trader by CryptoMitchX How to Use the Simple Swing Trader by CryptoMitchX
How to Use:
The Simple Swing Trader indicator combines multiple tools to help you identify potential trading opportunities:
Moving Averages (MA 50 & MA 100): These are plotted as yellow and purple lines on the chart. Use these to determine trend direction and crossovers for potential trend changes.
Heiken Ashi Bars: Displayed with volume-based coloring for smoother visualization of trends. Look for changes in bar colors to identify potential shifts in momentum.
SuperTrend Buy/Sell Signals: Labels are placed on the chart to indicate "BUY" or "SELL" opportunities based on the SuperTrend calculation. Green labels signify potential buy zones, and red labels signify potential sell zones.
Volume Histogram: Shown in a separate pane, this provides an adjustable view of market activity. Use the "Volume Histogram Base Multiplier" input to customize its display.
Customization: All elements are editable for your trading preferences. Adjust colors, timeframes, and parameters as needed.
Features:
Multi-Tool Integration:
Combines trend-following, momentum-based, and volume-focused tools in one indicator.
SuperTrend Signals: Generates clear "BUY" and "SELL" labels to assist decision-making.
Heiken Ashi Visualization: Reduces noise and smoothens price data for better clarity.
Customizable Settings: Fully adjustable parameters to suit different trading styles and assets.
Volume Insights: An adaptable histogram that reflects market participation and activity.
Suggested Modifications
Alert Integration: Add alert conditions for BUY and SELL signals to receive real-time notifications.
Dynamic Color Customization: Enable dynamic coloring based on additional indicators, like RSI or MACD.
Optimization for Specific Assets: Fine-tune ATR and factor settings to align with the behavior of specific markets (e.g., crypto, forex, stocks).
Additional Indicators: Consider incorporating a momentum oscillator to enhance confirmation of trade setups.
This indicator is designed to work on any timeframe and asset. Experiment with different settings to optimize it for your trading strategy.
The Code
//@version=6
indicator("Simple Swing Trader by CryptoMitchX", overlay=true)
// Define moving averages
length50 = 50
length100 = 100
ma50 = ta.sma(close, length50)
ma100 = ta.sma(close, length100)
// Plot moving averages with specified colors and thickness
plot(ma50, title="MA 50", color=color.new(color.yellow, 0), linewidth=2)
plot(ma100, title="MA 100", color=color.new(color.purple, 0), linewidth=8)
// Moving Average Crosses
var float last_ma50 = na
var float last_ma100 = na
if (not na(ma50) and not na(ma100))
last_ma50 := ma50
last_ma100 := ma100
// Heiken Ashi style bars with volume-based coloring
ha_open = request.security(syminfo.tickerid, timeframe.period, math.avg(close , open ))
ha_close = math.avg(close, open, high, low)
ha_high = math.max(high, ha_open, ha_close)
ha_low = math.min(low, ha_open, ha_close)
var float last_volume = na
current_volume = volume
// Using plot for bar color indication without specifying color
plot(ha_close, title="HA Close", color=color.new(color.blue, 0), display=display.all, editable=true)
last_volume := current_volume
// Super Trend calculations for labels (but not plotting the line)
atrPeriod = 10
factor = 3.0
src = close
atr = ta.atr(atrPeriod)
upperband = src - (factor * atr)
lowerband = src + (factor * atr)
supertrend = na(upperband) ? na : upperband
supertrend := close > nz(supertrend ) ? math.max(upperband, nz(supertrend )) : math.min(lowerband, nz(supertrend ))
// Buy/Sell signals for SuperTrend with color (labels without plotting the line)
if (supertrend < nz(supertrend ))
label.new(bar_index, low, "BUY", color=color.new(color.green, 0), textcolor=color.new(color.black, 0), size=size.small)
if (supertrend > nz(supertrend ))
label.new(bar_index, high, "SELL", color=color.new(color.red, 0), textcolor=color.new(color.black, 0), size=size.small)
// Define histbase as an input
histbase_value = input.float(0.1, title="Volume Histogram Base Multiplier", minval=0.01, maxval=1, step=0.01)
// Display volume in a separate pane with modifications
plot(volume * histbase_value, title="Volume", color=color.new(color.white, 0), style=plot.style_histogram, linewidth=3, histbase=0, display=display.all)
[GrandAlgo] Candlestick ThemesTransform your TradingView charts with Candlestick Themes, an indicator that customizes candlestick colors using a variety of stunning themes. Whether you’re seeking improved clarity, enhanced personalization, or a fresh visual appeal, this indicator has something for everyone.
Key Features
This indicator offers a wide selection of pre-defined themes:
TradingView Default: The classic, familiar look of TradingView charts.
GrandAlgo: Our exclusive brand theme, blending vibrancy and professionalism for an exceptional charting experience.
MetaTrader-Inspired Themes: Green on Black, Yellow on Black, and Black on White, designed to replicate the iconic MetaTrader aesthetics.
Green Black: A calming and balanced theme for focused trading.
Darkblue Red: A bold and impactful combination with rich tones.
Darkblue Black: A subtle, sleek palette perfect for minimalists.
Lightblue Red: A mix of warm and cool tones for balanced visuals.
Lightblue Red (Gradient): Adds smooth transitions for a modern feel.
Lightblue Black: Crisp and clean for improved readability.
Crimson to Calm: A gradient theme transitioning from bold to tranquil tones.
Robinhood: Inspired by the clean and vibrant look of the popular trading platform.
Warm & Cool Harmony: A seamless blend of warm and cool tones.
Valentine: Passionate reds and pinks for a romantic visual.
Christmas: Festive greens and reds to match the holiday spirit.
Grapes: A playful mix of purples and greens.
Desert: Warm, sandy hues inspired by desert landscapes.
Real Madrid: A sporty theme with iconic colors for fans.
This indicator ensures seamless integration with TradingView charts, offering personalized trading experience. Whether you're a seasoned trader or just starting, these themes will make your charts both functional and visually appealing.
TIME & PRICE THEORY BY ICT ADVANCEDHello
indicator designed and developed by Viper them in ICT Advance channel.
This indicator has some ICT concepts.
This indicator shows daily kil zones along with high and low.
Dynamic Price Change Percentage TrackerSet price in plugin's configuration and watch the percentage change between the configured price and the current ticker's price.
Zero Lag Trend Signals with BacktestThis indicator is designed to identify trend direction and potential entry points using a Zero-Lag Exponential Moving Average (ZLEMA) combined with dynamic volatility bands. It provides multi-timeframe (MTF) analysis, allowing you to monitor trends across different timeframes simultaneously. The indicator also includes a back testing range feature, enabling you to evaluate its historical performance over a specific period.
ROBOT RSI V6 inputRobot (test pas complet) qui prends position en se basant sur un croisement des MM et sur les achats et surventes du RSI
Enhanced Intraday Trading SignalEnhanced Intraday Trading Signal for accurate intraday trade signals
pinstraticoestrategia de compra y venta
................
.............
..........
........
.....
...
..