Moving Averages
Medias Móviles - Swing Trading - by addryy58....sdasdsjdhsaidhsauoixhashxuoashxuosahuoxhasohxsaxsaxsa
SMA 5/10/20/50/100/150/200/250//@version=6
indicator (title="SMA8", shorttitle="SMA8", overlay=true)
len1 = input.int(5, minval=1, title="SMA 1")
src1 = input(close, title="Source One")
out1 = ta.sma(src1, len1)
plot(out1, title="SMA 1", color=color.rgb(233, 11, 11), linewidth=1)
len2 = input.int(10, minval=1, title="SMA 2")
src2 = input(close, title="Source Two")
out2 = ta.sma(src2, len2)
plot(out2, title="SMA 2", color=color.orange, linewidth=1)
len3 = input.int(20, minval=1, title="SMA 3")
src3 = input(close, title="Source Three")
out3 = ta.sma(src3, len3)
plot(out3, title="SMA 3", color=color.rgb(250, 226, 12), linewidth=1)
len4 = input.int(50, minval=1, title="SMA 4")
src4 = input(close, title="Source Four")
out4 = ta.sma(src4, len4)
plot(out4, title="SMA 4", color=color.rgb(51, 255, 0), linewidth=1)
len5 = input.int(100, minval=1, title="SMA 5")
src5 = input(close, title="Source Five")
out5 = ta.sma(src5, len5)
plot(out5, title="SMA 5", color=color.rgb(0, 249, 249), linewidth=1)
len6 = input.int(150, minval=1, title="SMA 6")
src6 = input(close, title="Source Six")
out6 = ta.sma(src6, len6)
plot(out6, title="SMA 6", color=#014ff9, linewidth=1)
len7 = input.int(200, minval=1, title="SMA 7")
src7 = input(close, title="Source Seven")
out7 = ta.sma(src7, len7)
plot(out7, title="SMA 7",color=#6c01f9, linewidth=1)
len8 = input.int(250, minval=1, title="SMA 8")
src8 = input(close, title="Source Eight")
out8 = ta.sma(src8, len8)
plot(out8, title="SMA 8",color=color.white, linewidth=1)
Jeromey Dual MAs with SmoothingThis is a powerful 2-in-1 indicator that lets you plot two completely independent moving average systems on your chart at the same time.
Each of the two systems works in two layers:
The Primary MA: This is a standard Exponential Moving Average (EMA) calculated from the price. You choose its length and color (e.g., a blue 20-period EMA).
The Optional Smoothing MA: This is a second moving average that uses the value of the Primary MA as its input. This creates a "moving average of a moving average," resulting in an even smoother line. You can choose its type (like SMA or WMA) and even turn it into Bollinger Bands that wrap around the Primary MA.
In short, it lets you combine two complete trend-following systems (like a fast MA and a slow MA), each with its own optional smoothing, all within a single indicator to keep your chart clean.
Ergin Swing V2"Wealth doesn’t come in a hurry. Be patient with yellow, take a break with purple."
Ergin Swing V2 is a minimalistic yet highly effective visual strategy built on a single indicator: EMA14.
✅ Yellow candle → First close above EMA14 = Buy signal
🟣 Purple candle → First close below EMA14 = Sell signal
🔇 No noisy signals in between. Only the first cross is marked.
Ideal for:
Swing traders who prefer clean charts
Trend-followers who avoid indicator overload
Anyone who wants to "see the signal" clearly without alerts popping every bar
➕ Can be extended with RSI, TP/SL logic, or trend filters
Created by Ergin • Powered by Patience • Verified by Candles
Jeromey Dual MAs with SmoothingThis is a powerful 2-in-1 indicator that lets you plot two completely independent moving average systems on your chart at the same time.
Each of the two systems works in two layers:
The Primary MA: This is a standard Exponential Moving Average (EMA) calculated from the price. You choose its length and color (e.g., a blue 20-period EMA).
The Optional Smoothing MA: This is a second moving average that uses the value of the Primary MA as its input. This creates a "moving average of a moving average," resulting in an even smoother line. You can choose its type (like SMA or WMA) and even turn it into Bollinger Bands that wrap around the Primary MA.
In short, it lets you combine two complete trend-following systems (like a fast MA and a slow MA), each with its own optional smoothing, all within a single indicator to keep your chart clean.
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Trap Watcher (Downside Alert)", overlay=true)
// === Условия ===
rsi = ta.rsi(close, 14)
rsi_down = rsi < ta.sma(rsi, 5)
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Сигнал ===
condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Графика ===
bgcolor(condition ? color.new(color.red, 85) : na)
plotshape(condition, title="DROP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерт ===
alertcondition(condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ NEIROCTO: RSI ↓, Волатильность >3%, объёмы растут. Возможен откат!")
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Combo Watcher (Pump vs Dump)", overlay=true)
// === RSI и его производные ===
rsi = ta.rsi(close, 14)
rsi_sma = ta.sma(rsi, 5)
rsi_up = rsi > rsi_sma
rsi_down = rsi < rsi_sma
// === Волатильность ===
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
// === Объёмы ===
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Условие пампа ===
pump_condition = rsi > 45 and rsi_up and volatility_trigger and volume_up
// === Условие отката ===
dump_condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Фон ===
bgcolor(pump_condition ? color.new(color.green, 85) : na)
bgcolor(dump_condition ? color.new(color.red, 85) : na)
// === Метки ===
plotshape(pump_condition, title="🚀 PUMP Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="🚀")
plotshape(dump_condition, title="⚠️ DUMP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерты ===
alertcondition(pump_condition, title="🚀 NEIROCTO: Возможен памп!", message="🚀 RSI ↑, Волатильность >3%, Объёмы высокие — возможен памп!")
alertcondition(dump_condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ RSI ↓, Волатильность >3%, объёмы растут — возможен откат!")
2025 Stratejik Sinyal İndikatörüThe strategy indicator, which generates buy-sell signals on the chart and can set alarms for indicators such as Supertrend, RSI, Stochastic RSI, Squeeze Momentum, MACD, 10 Moving Average and Price indicator PPO, will guide you while trading.
MT Daily ZonesMT Daily Zones
A precision market structure tool from Mindfluential Trading, combining daily CPR, PDH/PDL zones, EMAs/SMAs - all optimized for intraday traders.
🔹 Core Features
🔵 CPR (Central Pivot Range)
Plots Pivot, TC, and BC from the previous day
Helps define the market's fair value zone and compression/breakout areas
Royal blue color ensures clarity on both light and dark themes
🟠 PDH / PDL Zones
Accurately plots Previous Day’s High and Low
Useful for breakout scalps, reversal traps, and trend continuation setups
🟢 Smart Trend Filters
Toggle EMAs (8, 20, 50) and SMAs (50, 100, 200)
Smooth color-coded display for dynamic trend alignment
✅ Clean Visuals. Real Structure. No Clutter.
⚠️ Disclaimer
This indicator is for educational purposes only. Do your own research before making trading decisions.
May 27
Release Notes
MT Daily Zones
A precision market structure tool from Mindfluential Trading, combining daily CPR, PDH/PDL zones, EMAs/SMAs - all optimized for intraday traders.
🔹 Core Features
🔵 CPR (Central Pivot Range)
Plots Pivot, TC, and BC from the previous day
Helps define the market's fair value zone and compression/breakout areas
Royal blue color ensures clarity on both light and dark themes
🟠 PDH / PDL Zones
Accurately plots Previous Day’s High and Low
Useful for breakout scalps, reversal traps, and trend continuation setups
🟢 Smart Trend Filters
Toggle EMAs (8, 20, 50) and SMAs (50, 100, 200)
Smooth color-coded display for dynamic trend alignment
✅ Clean Visuals. Real Structure. No Clutter.
⚠️ Disclaimer
This indicator is for educational purposes only. Do your own research before making trading decisions.
Asset Statistics Analysis 📊📊 Asset Drawdown Statistics — Full Analysis & Recommendation Tool
This indicator provides an in-depth statistical analysis of an asset’s drawdown behavior over a custom period and offers dynamic trade recommendations based on price action and moving average alignment.
🔍 Main Features:
✅ Drawdown Classification: Real-time classification of the current drawdown into 4 levels:
🟢 Low
🟡 Moderate
🟠 High
🔴 Critical
(Levels are calculated dynamically based on the asset's max drawdown in the selected period.)
⏱️ Average & Max Durations: Tracks how long the asset stays in each drawdown level on average and records the longest streaks (in bars).
📈 Dynamic Price Thresholds: Visual lines on the chart show key drawdown levels derived from peak equity.
📋 Statistical Dashboard: A floating table shows:
Current drawdown and classification
Time spent in each drawdown level (percentage)
Average and max duration per level
Live recommendation based on drawdown context and MA trend
📌 Trade Recommendations:
Based on the current drawdown + position relative to 3 moving averages (SMA):
🟢 Strong Buy / Buy
🟡 Accumulate / Hold
🟠 Reduce
🔴 Sell / Strong Sell
⚙️ Inputs:
Drawdown Period: Defines the number of bars used for peak drawdown calculation
3 customizable moving averages: Short / Medium / Long
✅ How to Use:
Use the drawdown classification to assess long-term risk phases.
Check the "Recommendation" box for guidance on timing entries/exits.
Combine with your own strategy or trend-following approach.
⚠️ Disclaimer
This script is provided for educational and informational purposes only and does not constitute financial, investment, or trading advice.
Always do your own research and consult with a qualified financial advisor before making any trading decisions.
The author assumes no responsibility for any losses or damages resulting from the use of this indicator.
Deep Z pi SP MA + 2 CC + OB + CPR + last 5 Minmy script with proper strike price, if strike price crosses R1, take put ex + hedge, if crosses s1 take call ex. bottom bc call normal and top bc put normal.
PINO EMA Rhythm Pack📌 PINO EMA Rhythm Pack
This indicator provides a multi-layered visual framework for analyzing the **rhythm and structure** of price movements using a customizable combination of EMAs and SMA. It is designed to simplify the interpretation of momentum shifts, pullbacks, and structural alignment across different time frames.
---
🔹 **Purpose & Use**
Use this tool to interpret short-term market rhythm (EMA 10/20/50), detect transitions through mid-term anchors (EMA 21), and align with long-term directional flow (EMA 200, SMA 200), all within one clean overlay.
---
🔹 **Key Features**
- Default view focuses on short-term rhythm:
• EMA 10 / EMA 20 / EMA 50
- Optional anchors and long-term guides:
• EMA 21 / EMA 200 / SMA 200
- Clean line colors and varied thickness for quick visual parsing
- Fully toggleable components to suit your trading framework
- No alerts, no signals — just visual context
---
🔹 **Note**
This open-source script was built for educational purposes and practical chart use. It brings together widely-used moving average concepts into one flexible overlay, aiming to support **structured discretionary analysis** and improve visual clarity.
This open-source script was built for educational purposes and practical chart use.
Simple MA CrossoverGrok made this. A basic example of a simple Moving Average Crossover strategy script.
multi_tf_trendHere is a powerful trend indicator that uses data from 3 different time frames to analyze trend direction and direction switches. You can change the timeframes with the drop down menu. The index adds up all the bull signals and subtracts bear signals. The index can help gauge a trend's longevity and strength. For example, Index of +2 is strongly bullish while an Index of -2 is strongly bearish.
MA of TurnoverThis indicator helps in low liquity markets.
Very simple formula: Volume MA * price * %
Last day results is max suggested entry value.
US30 Stealth StrategyOnly works on US30 (CAPITALCOM) 5 Minute chart
📈 Core Concept:
This is a trend-following strategy that captures strong market continuations by entering on:
The 3rd swing in the current trend,
Confirmed by a volume-verified engulfing candle,
With adaptive SL/TP and position sizing based on risk.
🧠 Entry Logic:
✅ Trend Filter
Uses a 50-period Simple Moving Average (SMA).
Buy only if price is above SMA → Uptrend
Sell only if price is below SMA → Downtrend
✅ Swing Count Logic
For buy: Wait for the 3rd higher low
For sell: Wait for the 3rd lower high
Uses a 5-bar lookback to detect highs/lows
This ensures you’re not buying early — but after trend is confirmed with structure.
✅ Engulfing Candle Confirmation
Bullish engulfing for buys
Bearish engulfing for sells
Candle must engulf previous bar completely (body logic)
✅ Volume Filter
Current candle volume must be greater than the 20-period volume average
Ensures trades only occur with institutional participation
✅ MA Slope Filter
Requires the slope of the 50 SMA over the last 3 candles to exceed 0.1
Avoids chop or flat trends
Adds momentum confirmation to the trade
✅ Session Filter (Time Filter)
Trades only executed between:
2:00 AM to 11:00 PM Oman Time (UTC+4)
Helps avoid overnight chop and illiquidity
📊 Position Sizing & Risk Management
✅ Smart SL (Adaptive Stop Loss)
SL is based on full size of the signal candle (including wick)
But if candle is larger than 25 points, SL is cut to half the size
This prevents oversized risk from long signals during volatile moves.
FIVEX Kombine Trend AnalizörüFIVEX doesn’t look at the market through the lens of just one indicator — it combines the insights of six powerful tools working together in harmony. This system brings together RSI, EMA, Bollinger Bands, OBV, MACD, and Fibonacci-based Pivot levels to deliver highly accurate signals for both trend direction and momentum.
Each indicator evaluates the chart based on its own logic and produces a decision: LONG, SHORT, or NEUTRAL. FIVEX collects these individual insights and only generates a trading signal when at least three indicators agree on the same direction. This significantly reduces false signals caused by random price movements.
At a glance, the table in the top right corner of your chart shows exactly what each indicator is thinking in real-time. Background color changes only occur when the signal is strong and stable — this keeps your screen clean and your decisions clear. If a signal appears, you'll immediately understand why.
Thanks to dynamic parameter adjustments based on timeframes, FIVEX behaves more aggressively on 15-minute charts and more refined on daily charts. It’s compatible with every trading style — from scalping to swing trading.
FIVEX isn’t just an indicator; it’s a consensus engine.
It questions, waits for confirmation, and shows only what’s truly strong.
It doesn’t shout the final word — it delivers the collective judgment of market logic.
FIVEX Kombine Trend AnalizörüFIVEX doesn’t look at the market through the lens of just one indicator — it combines the insights of six powerful tools working together in harmony. This system brings together RSI, EMA, Bollinger Bands, OBV, MACD, and Fibonacci-based Pivot levels to deliver highly accurate signals for both trend direction and momentum.
Each indicator evaluates the chart based on its own logic and produces a decision: LONG, SHORT, or NEUTRAL. FIVEX collects these individual insights and only generates a trading signal when at least three indicators agree on the same direction. This significantly reduces false signals caused by random price movements.
At a glance, the table in the top right corner of your chart shows exactly what each indicator is thinking in real-time. Background color changes only occur when the signal is strong and stable — this keeps your screen clean and your decisions clear. If a signal appears, you'll immediately understand why.
Thanks to dynamic parameter adjustments based on timeframes, FIVEX behaves more aggressively on 15-minute charts and more refined on daily charts. It’s compatible with every trading style — from scalping to swing trading.
FIVEX isn’t just an indicator; it’s a consensus engine.
It questions, waits for confirmation, and shows only what’s truly strong.
It doesn’t shout the final word — it delivers the collective judgment of market logic.
MACDBBThis is a custom modified MACD where some parameters have been customized and Bollinger Band added to the MACD . When the MACD is running above its upper Bollinger Band , it will be depicted as lime, and vice versa red.
Then the second set of histograms is am idea of mine where the opposing parameters of MACD signals are deducted off each other to reveal the underlying "momentum" of the MACD .
Mongoose EMA Ribbon — Pro EditionMongoose EMA Ribbon — Pro Edition
The Mongoose EMA Ribbon is a precision tool designed to support directional bias, trend integrity, and momentum alignment through a structured multi-EMA system. It is built for traders seeking clarity across high-timeframe trend conditions without sacrificing speed or simplicity.
Key Features:
Five customizable EMAs optimized for layered ribbon analysis
Configurable color logic for clean visual separation
Built-in ribbon compression and expansion visibility
Support for ribbon-based trend continuation zones
Optional label and visual tag for real-time trend state
Applications:
Identify trend strength and reversals with ribbon alignment
Detect compression zones that precede directional moves
Support discretionary or system-based trading strategies
Integrates well with price structure and macro overlays
This script is part of the Mongoose Capital toolkit and was developed to meet internal standards for clarity, execution readiness, and cross-asset compatibility.
Version: Pro Edition
Timeframes: Optimized for 1H, 4H, Daily, Weekly