指標和策略
CRT Indicator 1This helps you trade crt with the help of ict and key time with key level from the higher time frame
ICT Dynamic WatermarkA moving watermark anchored to the current candle's closing price. This indicator was specifically created for Michael J. Huddleston (ICT) to help prevent people using his content without authorization.
Support and Resistance all in one The Support and Resistance Indicator (v4) is designed to identify and track key price levels in financial markets. Here's how it works:
Core Functionality
Level Detection
Uses pivot points to identify significant price levels
Looks for swing highs (resistance) and swing lows (support)
Requires price action to pivot over a specified period (default 10 bars)
Dynamic Level Management
Maintains separate arrays for support and resistance levels
Limits maximum displayed levels (default 10) to prevent chart clutter
Removes oldest levels when maximum is reached
Ensures new levels are sufficiently distant from existing ones (minimum 1% separation)
Touch Detection System
Monitors price interaction with established levels
Counts when price comes within 0.1% of any level
Updates touch count and strength classification
Categories: "New" (1 touch), "Moderate" (2 touches), "Strong" (3+ touches)
Visual Representation
Draws horizontal lines at each level
Updates line width based on strength (thicker for stronger levels)
Shows labels with price and strength information
Color coding: Red (new/moderate levels), Green (strong levels)
Displays triangles (▼▲) at pivot points
Trading Applications
Support/Resistance Trading
Strong levels (3+ touches) suggest reliable trading zones
More touches indicate higher probability reversal points
Use for stop loss and target placement
Breakout Trading
Monitor breaks of strong levels
Higher touch count suggests more significant breakouts
Watch for false breakouts at weaker levels
Risk Management
Place stops beyond strong levels
Use level strength to adjust position size
Consider multiple timeframe analysis
Best Practices
Use with other indicators for confirmation
Consider market context and trend
Monitor level strength development
Don't rely solely on touch count
Watch for price reaction at levels
Customization Options
Adjust pivot length for different timeframes
Modify minimum distance between levels
Change required touches for "Strong" classification
Toggle strength labels display
Choose line style (Solid/Dashed/Dotted)
This indicator helps identify key price levels where market participants have shown interest, making it valuable for trade planning and risk management
The CRT Indicator (1/2) @TorioTradesThis helps you trade crt with the help of ict and key levels with key time
8 EMA kevis2//@version=5
indicator("8 EMA Indicator", overlay=true)
// Definir los períodos de las EMAs
ema1_length = input(5, title="EMA 1")
ema2_length = input(10, title="EMA 2")
ema3_length = input(20, title="EMA 3")
ema4_length = input(50, title="EMA 4")
ema5_length = input(100, title="EMA 5")
ema6_length = input(200, title="EMA 6")
ema7_length = input(500, title="EMA 7")
ema8_length = input(1000, title="EMA 8")
// Calcular las EMAs
ema1 = ta.ema(close, ema1_length)
ema2 = ta.ema(close, ema2_length)
ema3 = ta.ema(close, ema3_length)
ema4 = ta.ema(close, ema4_length)
ema5 = ta.ema(close, ema5_length)
ema6 = ta.ema(close, ema6_length)
ema7 = ta.ema(close, ema7_length)
ema8 = ta.ema(close, ema8_length)
// Determinar la tendencia
esAlcista = ema1 > ema2
colorTendencia = esAlcista ? color.green : color.red
// Dibujar las EMAs en el gráfico con colores dinámicos
plot(ema1, title="EMA 1", color=colorTendencia)
plot(ema2, title="EMA 2", color=colorTendencia)
plot(ema3, title="EMA 3", color=colorTendencia)
plot(ema4, title="EMA 4", color=colorTendencia)
plot(ema5, title="EMA 5", color=colorTendencia)
plot(ema6, title="EMA 6", color=colorTendencia)
plot(ema7, title="EMA 7", color=colorTendencia)
plot(ema8, title="EMA 8", color=colorTendencia)
POB RSI Bullish Divergence//@version=5
indicator("RSI Bullish Divergence", overlay=true)
// RSI Settings
rsiLength = input(14, title="RSI Length")
rsiSource = input(close, title="RSI Source")
rsiLevel = input(30, title="RSI Bullish Threshold")
// Calculate RSI
rsiValue = ta.rsi(rsiSource, rsiLength)
// Detecting Bullish Divergence
// We check if the price is making a lower low but the RSI is making a higher low
// Price lows
priceLow = ta.lowest(low, 10)
// RSI lows
rsiLow = ta.lowest(rsiValue, 10)
// Check for Bullish Divergence (price low < previous low, RSI low > previous low)
bullDiv = (priceLow < priceLow ) and (rsiLow > rsiLow )
// Plot the Bullish Divergence signal on the chart
plotshape(bullDiv, title="Bullish Divergence", location=location.belowbar, color=color.green, style=shape.labelup, text="BULL")
// Optional: Plot the RSI line for reference
plot(rsiValue, title="RSI", color=color.blue, linewidth=1, offset=-1)
hline(30, title="RSI Threshold", color=color.red, linestyle=hline.style_dotted)
Volume Zones Internal Visualizer [LuxAlgo]The Volume Zones Internal Visualizer is an alternate candle type intended to reveal lower timeframe volume activity while on a higher timeframe chart.
It displays the candle's range, the highest and lowest zones of accumulated volume throughout the candle, and the Lower Timeframe (LTF) candle close, which contained the most volume in the session (Candle Session).
🔶 USAGE
The indicator is intended to be used as its own independent candle type. It is not a replacement for traditional candlesticks; however, it is recommended that you hide the chart's display when using this indicator. Another option is to display this indicator in an additional pane alongside the normal chart, as displayed above.
The display consists of candle ranges represented by outlined boxes, within the ranges you will notice a transparent-colored zone, a solid-colored zone, and a line.
Each of these displays different points of volume-related information from an analysis of LTF data.
In addition to this analysis, the indicator also locates the LTF candle with the highest volume, and displays its close represented by the line. This line is considered as the "Peak Activity Level" (PAL), since throughout the (HTF) candle session, this candle's close is the outcome of the most volume transacted at the time.
We are further tracking these PALs by continuing to extend them into the future, looking towards them for potential further interaction. Once a PAL is crossed, we are removing it from display as it has been mitigated.
🔶 DETAILS
The indicator aggregates the volume data from each LTF candle and creates a volume profile from it; the number of rows in the profile is determined by the "Row Size" setting.
With this profile, it locates and displays the highest (solid area) and lowest (transparent area) volume zones from the profile created.
🔶 SETTINGS
Row Size: Sets the number of rows used for the calculation of the volume profile based on LTF data.
Intrabar Timeframe: Sets the Lower Timeframe to use for calculations.
Show Last Unmitigated PALs: Choose how many Unmitigated PALs to extend.
Style: Toggle on and off features, as well as adjust colors for each.
Pat EMA StratEMA 21 & 89 Crossover Buy Script.
Using the M30 EMA 21 & M30 EMA 89 to signal a buy signal. From there you can start using the M5 EMA 21 & M5 EMA 89 on the lower time frame for entries.
This EMA script is best to be used with other trading tools and analysis. The EMA buy signal SHOULD NOT be used as an entry point every time.
Time Zone & SessionsDa las sesiones de London, New York, Asia y Austr.
Además un time zone incorporado para marcar días
8 EMA kevi//@version=5
indicator("8 EMA Indicator", overlay=true)
// Definir los períodos de las EMAs
ema1_length = input(5, title="EMA 1")
ema2_length = input(10, title="EMA 2")
ema3_length = input(20, title="EMA 3")
ema4_length = input(50, title="EMA 4")
ema5_length = input(100, title="EMA 5")
ema6_length = input(200, title="EMA 6")
ema7_length = input(500, title="EMA 7")
ema8_length = input(1000, title="EMA 8")
// Calcular las EMAs
ema1 = ta.ema(close, ema1_length)
ema2 = ta.ema(close, ema2_length)
ema3 = ta.ema(close, ema3_length)
ema4 = ta.ema(close, ema4_length)
ema5 = ta.ema(close, ema5_length)
ema6 = ta.ema(close, ema6_length)
ema7 = ta.ema(close, ema7_length)
ema8 = ta.ema(close, ema8_length)
// Determinar la tendencia
isBullish = ta.crossover(ema1, ema2)
isBearish = ta.crossunder(ema1, ema2)
trendColor = isBullish ? color.green : isBearish ? color.red : color.blue
// Dibujar las EMAs en el gráfico con colores dinámicos
plot(ema1, title="EMA 1", color=trendColor)
plot(ema2, title="EMA 2", color=trendColor)
plot(ema3, title="EMA 3", color=trendColor)
plot(ema4, title="EMA 4", color=trendColor)
plot(ema5, title="EMA 5", color=trendColor)
plot(ema6, title="EMA 6", color=trendColor)
plot(ema7, title="EMA 7", color=trendColor)
plot(ema8, title="EMA 8", color=trendColor)
Price Envelope+/- Variable price percentage (realtive to current share price) to assist with earnings release price targets, stop-limits, etc.
Extended RunShows number of bar closing above SMA5 in serie if serie is more than a set value
(default = 6)
kimpahthis is an updated fvg without pre-market detection so the chart stays nice and clean during trades.
Leap KalmanThe Leap Kalman is designed to enhance trend detection and reduce market noise. It applies a Kalman filter to smooth price data, improving the reliability of signals. The indicator integrates **Rate of Change (ROC)** to measure momentum and a **Stochastic Oscillator** to identify overbought or oversold conditions. Additional smoothing techniques help refine signals, making it particularly useful for **mean reversion strategies** and detecting **dips and reversals**. This makes it an effective tool for traders looking to **capitalize on short-term inefficiencies** in crypto markets, especially in pair trading and spread-based strategies.
Update Ijikwa**Fractal Model° - Key Takeaways**
The **Fractal Model° ** by **TTrades** is an advanced algorithmic tool designed to help traders identify momentum shifts, swing formations, and order flow continuations by leveraging price fractals across multiple timeframes.
**Core Features:**
- **Fractal Timeframe Pairing** – Automatically aligns higher and lower timeframe (HTF/LTF) structures for better trend analysis.
- **Customizable History** – View up to 40 past setups to analyze historical price action.
- **Bias Selection** – Filter between bullish, bearish, or neutral setups for targeted market analysis.
- **Change in State of Delivery (CISD)** – Detects momentum shifts and trend reversals.
- **Liquidity Zones & T-Spot Identification** – Highlights engineered liquidity pools and key reversal points.
- **Higher Timeframe Power of Three (PO3)** – Tracks price accumulation, manipulation, and distribution phases.
- **Information Table** – Displays HTF/LTF pairing, next HTF candle close, and selected bias.
- **Fully Automated Framework** – Adapts to different market conditions and timeframes with customizable visualization options.
**Usage:**
1. Add **Fractal Model° ** to your TradingView chart.
2. Select preferred **timeframe pairings**, **historical depth**, and **time filters**.
3. Utilize it alongside your strategy to refine trade entries and exits based on TTrades' methodology.
This **non-repainting** and **adaptive** model ensures reliable market structure analysis, making it a valuable tool for traders aiming to capitalize on price expansions.
Full Strategy with Pivot Points and Previous Day High/LowFull Strategy with Pivot Points and Previous Day High/Low only trade near to important levels
Fibonnaci Crosses Buy/SellIndicator uses Fibonacci numbered ema's that can be toggled on and off to produce buy and sell signals based on the crosses of the moving averages. This indicator allows you to have multiple moving average lines on your chart with the use of one indicator. Also the buy and sell signals allow you to scan the chart quickly to see if there are any trade opportunities available.
Enjoy this indicator. Hope it can help you on your Trading Journey.