CANX Momentum Indicator© CanxStixTrader
CANX Momentum indicator
(Customizable)
An indicator that simply shows you the way the market is trending.
- The cloud fill helps give you a quick and clear indication of the way the market is trending
- Green for Buys
- Red for sells
Keep it simple
Medie mobili
SMA Strategy with Re-Entry Signal (v6 Style)tradingview 指標
//@version=5
indicator("SMA Strategy with Re-Entry Signal (v6 Style)", overlay=true)
// === 可調參數 === //
smaPeriod10 = 10
smaPeriod20 = 20
smaPeriod30 = 30
smaPeriod60 = 60
smaPeriod250 = 250
// === 計算 SMA === //
sma10 = ta.sma(close, smaPeriod10)
sma20 = ta.sma(close, smaPeriod20)
sma30 = ta.sma(close, smaPeriod30)
sma60 = ta.sma(close, smaPeriod60)
sma250 = ta.sma(close, smaPeriod250)
// === 趨勢判斷 === //
isUptrend = close > sma30
// === 加倉訊號邏輯 === //
reentrySignal = isUptrend and ta.crossover(close, sma20)
// === 背景顏色提示 === //
bgColor = isUptrend ? color.new(color.green, 90) :
close < sma30 ? color.new(color.red, 90) : na
bgcolor(bgColor)
// === 畫出加倉符號(↑) === //
plotshape(reentrySignal, title="Re-entry Signal", location=location.belowbar,
color=color.lime, style=shape.labelup, text="↑", textcolor=color.black)
// === 繪製 SMA 線 === //
plot(sma10, color=color.blue, title="SMA 10")
plot(sma20, color=color.orange, title="SMA 20")
plot(sma30, color=color.purple, title="SMA 30")
plot(sma60, color=color.teal, title="SMA 60")
plot(sma250, color=color.gray, title="SMA 250")
MACD Green column buy Red column sell Histogram StrategyThis strategy builds upon the official built-in MACD indicator logic from TradingView.
Buy Condition:
When the MACD Histogram turns from negative to positive (from red bars to green bars), it triggers strategy.entry('MACD_Buy', strategy.long), executing a buy operation.
Sell Condition:
When the MACD Histogram turns from positive to negative (from green bars to red bars), it triggers strategy.close('MACD_Buy'), executing a sell operation.
Plotting remains unchanged:
Green and red bars are displayed correctly, and both the MACD and signal lines are plotted as usual.
This strategy is not intended for real trading.
It is for educational and demonstration purposes only. It should not be considered financial advice, and I take no responsibility for any trading outcomes resulting from its use.
此策略基于 TradingView 官方内置的 MACD 指标逻辑。
买入条件:
当 MACD 柱状图由负转正(从红柱变为绿柱)时,触发strategy.entry('MACD_Buy',strategy.long) 执行买入操作。
卖出条件:
当 MACD 柱状图由正转负(从绿柱变为红柱)时,触发strategy.close('MACD_Buy') 执行卖出操作。
绘图保持不变:
绿柱和红柱均正确显示,MACD 线和信号线均按常规绘制。
此策略不适用于实盘交易。
仅供教育和演示之用。不应将其视为金融建议,本人对使用此策略导致的任何交易结果概不负责。
Ultimate Volume Indicator Labels🔍 Volume Indicator with Buy/Sell Pressure & Trend Labels
Ultimate Volume Indicator Labels is a clean and powerful display tool for real-time trading insight.
🔸 What It Shows:
- 🌡️ Buy/Sell Thermometer: Visual 10-block bar indicating volume control
- 📊 Volume Bars: Current & previous volume with dynamic color vs 20-bar average
- 📈 EMA VWAP Cross: Shows if EMAs (9, 14, 20 or custom) are above/below VWAP
- 💡 MACD Label: Bullish, Bearish, or Neutral signal based on crossovers
🟢 Bullish — when the MACD line crosses above the Signal line and is above zero
(This suggests strong upward momentum is building or continuing.)
🔴 Bearish — when the MACD line crosses below the Signal line
(This typically means momentum is turning downward, or the market is entering a bearish phase.)
⚪ Neutral / No Signal — when there’s no clear crossover
(Price may be consolidating, or the trend is weakening.)
- 🔁 EMA Crossover: Customizable EMA Fast & Slow crossover with timing info
⚙️ Customizable Settings:
- Toggle label visibility (MACD, EMA crossover, VWAP)
- Customize EMA lengths and crossover pairs
- Select which EMAs to include in VWAP cross comparison
🧠 Great For:
- Scalpers & intraday traders looking for real-time pressure shifts
- Trend traders needing quick confirmation from EMAs & MACD
- Anyone wanting an uncluttered snapshot of volume dynamics
📍 Use it in a separate pane to complement your price action setup.
Ichimoku Cloud zxc vercopyright from Ichimoku Cloud
updated info:
add big wheel emoji and red down arrow
when the conversionLine and baseLine cross depends on witch one was below other one
EWMA & EWVar + EWStd Expansion with MTF_V.5EWMA & EWVar + EWStd Expansion with MTF_V.5
This indicator combines adaptive trend smoothing (EWMA), variance estimation (EWVar) and dynamic volatility “bursts” (EWStd Expansion) with optional higher-timeframe confirmation. It’s designed both for visual chart analysis and for automated alerts on regime changes.
Key Features
EWMA (Exponential Smoothing):
• Computes an exponential moving average with either a custom α or a length-derived α = 2/(N+1).
• Option to recalculate only every N bars (reduces CPU load).
EWVar & EWStd (Variance & Standard Deviation):
• Exponentially weighted variance tracks recent price dispersion.
• EWStd (σ) is computed alongside the EWMA.
• Z-score (deviation in σ units) shows how far price has diverged from trend.
Multi-Timeframe Filter (MTF):
• Optionally require the same trend direction on a chosen higher timeframe (e.g. Daily, Weekly, H4).
• Real-time lookahead available (may repaint).
Gradient Around EWMA:
• A multi-layer “glow” zone of ±1σ, broken into up to 10 steps.
• Color interpolates between “upper” and “lower” shades for bullish, bearish and neutral regimes.
Instantaneous Trendline (ITL):
• Ultra-fast trend filter with slope-based coloring.
• Highlights micro-trends and short-lived accelerations.
Cross-Over Signals (ITL ↔ EWMA):
• Up/down triangles plotted when the ITL crosses the main EWMA.
EWStd Expansion (Volatility Bursts):
• Automatically detects σ expansions (σ growth above a set % threshold).
• Price filter: only when price moves beyond EWMA ± (multiplier·σ).
• Optional higher-timeframe confirmation.
Labels & Alerts:
• Text labels and circular markers on bars where a volatility burst occurs.
• Built-in alertcondition calls for both bullish and bearish expansions.
How to Use
Visual Analysis:
• The gradient around EWMA shows the width of the volatility channel expanding or contracting.
• ITL color changes instantly highlight short-term impulses.
• EWMA line color switches (bullish/bearish/neutral) indicate trend state.
Spotting Volatility Breakouts:
• “EWStd Expansion” labels and circles signal the onset of strong moves when σ spikes.
• Useful for entering at the start of new impulses.
Automated Alerts:
• Set alerts on the built-in conditions “Bullish EWStd Expansion Alert” or “Bearish EWStd Expansion Alert” to receive a popup or mobile push when a burst occurs.
This compact tool unifies trend, volatility and multi-timeframe analysis into a single indicator—ideal for traders who want to see trend direction, current dispersion, and timely volatility burst signals all at once.
ADX Trend Strength EnhancedADX Trend Strength Enhanced – Script Summary 📈
What it does:
📊 Visualizes trend strength using the Average Directional Index (ADX)
🔁 Highlights DI+ / DI− crossovers filtered by ADX level and optional higher timeframe trend
📉 Displays ADX slope to show trend acceleration or weakening
🧠 Real-time floating label provides instant trend interpretation
What Makes It Unique:
🎨 Color-coded ADX line: 🟢 uptrend, 🔴 downtrend, ⚪ weak trend, 🟡 indecision
📍 Signal arrows only when trends are confirmed (DI cross + ADX > 20 + optional HTF)
📈 Slope histogram reveals early momentum shifts
💬 Dynamic label shows trend state like “Trending Up” or “No Trend”
🟦 Zone fills for no-trend, trend-starting, and strong-trend areas
Customizable Settings 🛠:
⏱ ADX Length (default: 14)
📐 Smoothing Type: Simple, Exponential, Weighted, Hull, or Wilders
🎯 Threshold Levels: Custom ADX 20 and 25 lines (color + width adjustable)
🧭 Enable HTF Filter to validate signals using higher timeframe trend
⏰ Select any higher timeframe (e.g., 1D, 4H)
🚨 Turn on alerts for trend shifts or DI crossovers
Use Cases 💼:
🚦 Detect when a market is trending vs. ranging
📥 Confirm entry signals after breakouts or pullbacks
🧹 Filter out noise in choppy price action
🔍 Align trades with multi-timeframe trend strength
Fibonacci Trend v6.1 - Bounce Giriş RenkliYeni versiyon yayinlanmis haliyle deneme sürümü olarak düsünebiliriz
Custom Trend MA/EMA Suite by [Crypto Luke]This indicator plots 3 customizable Simple Moving Averages (SMA) and 3 Exponential Moving Averages (EMA) using periods 25, 50, and 200 for multi-timeframe trend analysis.
It includes bullish and bearish crossover signals between the MA 25 and MA 200, displayed directly on the chart with intuitive arrows (↑ / ↓).
✅ Great for spotting trend shifts and potential entry/exit zones.
✅ Open-source under the MPL-2.0 License.
🔗 Telegram: t.me
Composite Trend Signal v4 (Corrected)composite trend signal, combines multiple indicators for aggregate signal. Trend following
3ema time )3 multi-frame ema multi-frame time display can select desired time frames trend defining ema
Color Change Moving Average (MA) with Timefreame and Type InputsThis indicator allows the user to select the timeframe and type of moving average.
It also allows the color of the moving average lint to change depending on if the indicator is Bullish or Bearish.
It also plots an optional shaded area below the moving average indicator line. The shaded area can be a different color and opacity than the moving average line.
Fibonacci Trend v6.4 - TP/SL EtiketliEn güncel haliyle yeni eklemeler ve hedge modunu aktiflestirdim
Stochastic T3
# **Stochastic T3 Indicator and Its Usage**
## **1. Introduction**
In this presentation, we will examine how the **Tilson T3-filtered Stochastic RSI** indicator works and how it can be applied. Stochastic RSI is used as a **momentum indicator**, and with the Tilson T3 filter, it provides smoother and more accurate signals.
## **2. What is Stochastic RSI?**
Stochastic RSI is an enhanced indicator that applies the Stochastic oscillator to the standard RSI calculation. It allows for a **more precise analysis of overbought and oversold levels**.
## **3. Tilson T3 Filtering**
Tilson T3 uses a **6-layer Exponential Moving Average (EMA)** to analyze price data more smoothly. By using Tilson T3 instead of traditional RSI sources, **more reliable and lower-lag signals** can be obtained.
## **4. Using the Indicator with the 200 EMA**
The 200 EMA (Exponential Moving Average) is one of the most commonly used technical indicators for **determining the direction of long-term trends**. Using **Stochastic T3 alongside the 200 EMA** provides the following advantages:
- **Trading in line with the trend**: If the price is **above the 200 EMA, only buy opportunities**, and if it's below, only sell opportunities should be considered.
- **Fewer false signals**: The 200 EMA filter helps identify the best turning points within the trend.
## **5. Using it with Heiken Ashi Candlestick Charts**
**Heiken Ashi** provides smoother transitions compared to classic candlestick charts and **shows trend direction more clearly**. **When combined with Stochastic T3**, it offers:
- **Better trend identification**: Changes in candle color can align with Stochastic T3 signals in overbought/oversold zones.
- **Cleaner charts**: Heiken Ashi candlesticks filter out unnecessary price fluctuations, making analysis more stable.
## **6. Indicator Code Structure**
The code includes the following steps:
✅ **Tilson T3 calculation** → Provides smoother data.
✅ **Stochastic RSI calculation** → Used for momentum analysis.
✅ **Dotted Band Lines** → **Upper, Middle, and Lower bands** are displayed as dotted lines.
✅ **Background Fill** → A transparent color fill is applied between the 80 and 20 levels.
## **7. Code Example**
```pinescript
//@version=6
indicator(title="Stochastic T3", shorttitle="Stochastic T3", format=format.price, precision=2)
smoothK = input.int(3, "K", minval=1)
smoothD = input.int(3, "D", minval=1)
lengthRSI = input.int(14, "RSI Length", minval=1)
lengthStoch = input.int(14, "Stochastic Length", minval=1)
t3Length = input.int(5, "Tilson T3 Length", minval=1) // Tilson T3 length
b = input.float(0.7, "Beta") // Tilson T3 beta parameter
src = input(close, title="RSI Source")
tilsonT3 = ta.ema(ta.ema(ta.ema(ta.ema(ta.ema(ta.ema(src, t3Length), t3Length), t3Length), t3Length), t3Length), t3Length)
rsi1 = ta.rsi(tilsonT3, lengthRSI)
k = ta.sma(ta.stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
d = ta.sma(k, smoothD)
plot(k, "K", color=color.rgb(0, 255, 4))
plot(d, "D", color=color.rgb(255, 0, 0))
// Adding dotted lines
line.new(x1=bar_index, y1=80, x2=bar_index+1, y2=80, width=2, color=color.gray, style=line.style_dotted)
line.new(x1=bar_index, y1=50, x2=bar_index+1, y2=50, width=2, color=color.gray, style=line.style_dotted)
line.new(x1=bar_index, y1=20, x2=bar_index+1, y2=20, width=2, color=color.gray, style=line.style_dotted)
// Background fill
bgColor = color.new(color.blue, 90)
fill(line.new(bar_index, 80, bar_index+1, 80), line.new(bar_index, 20, bar_index+1, 20), color=bgColor)
```
## **8. Conclusion**
This indicator generates **more stable signals thanks to the Tilson T3 filter**. **Using it in combination with the 200 EMA** ensures **trend-aligned trading**. When used alongside **Heiken Ashi candlestick charts**, traders can obtain **clearer and less noisy signals**.
🔹 **Advantages**:
- **Fewer false signals**.
- **Trading in the direction of the trend**.
- **Easier-to-read charts**.
EMAs mit RSI & Candlestick-Signalen (einstellbar)This indicator overlays multiple Exponential Moving Averages (EMAs) and Simple Moving Averages (SMAs) on the chart, including EMA 8, 13, 21, 48, 50, 100, 200, 300, 500, 700 and SMA 200 & 500. Each moving average can be individually toggled on or off.
It also plots RSI signals with customizable upper and lower thresholds, marking overbought and oversold conditions.
Additionally, the indicator detects two popular candlestick patterns — Hammer and Shooting Star — and marks them directly on the chart with intuitive emoji symbols (🛠️ for Hammer below the candle and ⭐ for Shooting Star above the candle). The background of these symbols is transparent for a clean look.
Features:
Multiple EMAs and SMAs with toggle options
Configurable RSI upper and lower levels with visual signals
Detection and display of Hammer and Shooting Star candlestick patterns
Clean, emoji-based markers for candlestick signals without background clutter
Labels for the last bar’s values of each moving average
This tool helps traders quickly visualize trend strength, momentum extremes, and potential reversal candlestick signals all in one chart.
Price Stretch from 50MA (ATR normalized)inspired by @jfsrevg.
measures how far price is deviated from ema50 normalized by ATR%
multi timeframe
Macrodoser MA CloudsThis indicator is an updated version of the Ripster EMA Clouds indicator with the following modifications:
1. Ability to select additional moving average types beyond the SMA & EMA.
2. Ability to change the colors of both the clouds and the ma lines to suit your stylistic preferences.
3. Different default settings for EMAs that I personally prefer.
4. Update script version from 4 to 6 for purely OCD reasons.
Enjoy!
Price/MA Deviation AngleThis indicator visualizes the angular deviation of price from a selected moving average (default: 21 EMA). It calculates the angle, in degrees, formed by the vertical distance between price and the moving average — assuming a one-bar horizontal distance.
Positive angles indicate upward deviation (bullish pressure).
Negative angles reflect downward deviation (bearish pressure).
0° represents perfect alignment between price and the MA.
±45° thresholds can be used as reference for strong momentum.
This tool offers a normalized, intuitive perspective on price momentum using geometric interpretation rather than price-to-price delta.
Relative Strength Index (with MA based cross signals)
This indicator builds on TradingView’s default Relative Strength Index (RSI) by adding real-time alert signals and visual markers whenever the RSI crosses its own Moving Average (MA).
🔍 Features:
✅ Maintains 100% of the original RSI layout, including:
Gradient fill between RSI and overbought/oversold zones
Visible and editable input settings
Customizable RSI length, MA type, smoothing, etc.
🔺 Adds triangle markers at RSI/MA crossovers:
Up triangle: RSI crosses above its MA
Down triangle: RSI crosses below its MA
📢 Includes built-in alerts for both cross up and cross down events
📈 How to Use
This tool is useful for:
Spotting momentum shifts early
Confirming signals in other systems (like price action, moving averages, divergence)
Creating alert-based automation (e.g., webhook bots, SMS/email alerts)
Use it in confluence with price structure or other indicators for best results. RSI/MA crossovers can act as:
Momentum confirmation for trend entries
Exit cues on exhaustion or reversal
Breakout validation when RSI crosses MA from consolidation
⚙️ Inputs & Customization
RSI Length, MA Length, Source, and MA Type are all user-configurable
Triangle marker size, color, and style can be edited in the Style tab
Alerts are pre-built and ready to use
🚨 Alerts Included
"RSI Crossed Above MA" — triggers when RSI crosses up
"RSI Crossed Below MA" — triggers when RSI crosses down
⚠️ Notes for Moderators
This script is a light modification of TradingView’s built-in RSI
No visual layout has been removed — only triangle markers and alerts have been added
All original RSI customization options remain intact
Moving Average Simple x 5Just 5 SMA in 1. By default You'll get SMA 8, 20, 50, 100 and 200. Plot shape when nearest SMAs cross between.
Multi-EnvelopeRMA Multi-Envelope Indicator
The RMA Multi-Envelope Indicator is a technical analysis tool designed for TradingView, utilizing Pine Script v6. It creates eight customizable envelope bands around a 200-period Running Moving Average (RMA) on a 5-minute timeframe, based on current market measurements. Each band has independent upper and lower percentage deviations, preset to: Band 1 (0.42%, 0.46%), Band 2 (0.78%, 0.69%), Band 3 (1.01%, 1.03%), Band 4 (1.36%, 1.39%), Band 5 (1.80%, 1.62%), Band 6 (2.15%, 2.13%), Band 7 (2.93%, 2.81%), and Band 8 (4.65%, 4.18%). Users can adjust the timeframe, moving average type (RMA, SMA, or EMA), length, and colors for the basis line and bands via hex codes (e.g., #FF6D00 for the basis and Band 8) with semi-transparent color.rgb fills. Ideal for identifying support/resistance, overbought/oversold conditions, or trend boundaries on a 5-minute chart.
All SMAs, EMAs, VWAP, & BMSB in 1.Miner's MAs - The All-in-One Moving Average Indicator to save you space on your charts by combining many several popular public indicators into one streamlined tool.
This comprehensive indicator consolidates up to 8 individual moving averages with selectable (SMA or EMA choices) into a single, clean tool to reduce chart clutter and streamline technical analysis setup. Each MA features full customization including type selection, length, source, offset, smoothing options (including Bollinger Band additions), multi-timeframe support, and status line display just as the original Trading View single indicators do.
Additional options include integrated VWAP with multiple anchor periods and the popular Bull Market Support Band (20w SMA + 21w EMA). Perfect for traders who use multiple moving averages for confluence analysis, support/resistance identification, and trend confirmation across different timeframes and desperately need to reduce their large list of indictors on the left side of their charts.
This helpful Indicator also makes it a great option for those users & members on the lower tiered and free plans that may be limited to the amount of indicators they can use at the same time who may be just starting out and need support and help top learn TA on their charts. It also supports all major smoothing types and Bollinger Band setups.
-The Ideal Single indicator for most everyone conducting some general TA for scalping, day trading, swing trading, and long-term analysis to save space on the chart windows.
Features:
8 fully customizable moving averages (SMA or EMA choices)
Integrated VWAP with session/week/month/year anchoring
Bull Market Support Band
Advanced smoothing options including Bollinger Bands
Multi-timeframe support for each MA
Clean, organized settings layout
Hope its helpful to anyone and everyone who may need it, also please feel free to comment or add any input, mention any additional options that you think could be added for everyone's benefit.
Thanks!
Miner Chad
Andy's 3WMAThis indicator consist of 3 Linear Weighted Moving Averages of 8, 38 and 200 which are very good for traders. I would like to thank Andy Wei for teaching me these three indicator values and I am making this indicator with his permission to help other traders in need of it.