Supertrend + Moving AverageSupertrend indicator with a Moving Average (MA) to provide trading signals and trend analysis. Below is a detailed description of the script:
Indicator Overview
Name: Supertrend + Moving Average
Purpose: This indicator overlays the Supertrend and Moving Average on the price chart to help identify trends, potential buy/sell signals, and trend direction changes.
Overlay: The indicator is plotted directly on the price chart (overlay = true).
Inputs
Supertrend Inputs:
ATR Period: The period for calculating the Average True Range (ATR). Default is 10.
Source: The price source for Supertrend calculations. Default is hl2 (the average of high and low prices).
ATR Multiplier: A multiplier applied to the ATR to determine the Supertrend bands. Default is 3.0.
Change ATR Calculation Method: A toggle to switch between using ta.atr() or ta.sma(ta.tr) for ATR calculation. Default is true (uses ta.atr()).
Show Buy/Sell Signals: A toggle to display buy/sell signals on the chart. Default is true.
Highlighter On/Off: A toggle to enable/disable highlighting of the uptrend and downtrend areas. Default is true.
Moving Average Inputs:
MA Period: The period for the Moving Average. Default is 50.
MA Type: The type of Moving Average to use. Options are SMA (Simple Moving Average) or EMA (Exponential Moving Average). Default is SMA.
Calculations
Supertrend Calculation:
The ATR is calculated using either ta.atr() or ta.sma(ta.tr) based on the Change ATR Calculation Method input.
Upper (up) and lower (dn) bands are calculated using the formula:
up = src - Multiplier * atr
dn = src + Multiplier * atr
The trend direction is determined based on the price crossing the upper or lower bands:
trend = 1 for an uptrend.
trend = -1 for a downtrend.
Moving Average Calculation:
The Moving Average is calculated based on the selected type (SMA or EMA) and period.
Plotting
Supertrend:
The upper band (up) is plotted as a green line during an uptrend.
The lower band (dn) is plotted as a red line during a downtrend.
Buy signals are displayed as green labels or circles when the trend changes from downtrend to uptrend.
Sell signals are displayed as red labels or circles when the trend changes from uptrend to downtrend.
The background is highlighted in green during an uptrend and red during a downtrend (if highlighting is enabled).
Moving Average:
The Moving Average is plotted as a blue line on the chart.
Alert Conditions
Buy Signal: Triggers when the Supertrend changes from a downtrend to an uptrend.
Sell Signal: Triggers when the Supertrend changes from an uptrend to a downtrend.
Trend Direction Change: Triggers when the Supertrend direction changes (from uptrend to downtrend or vice versa).
Key Features
Combines Supertrend and Moving Average for enhanced trend analysis.
Customizable inputs for ATR period, multiplier, and Moving Average type/period.
Visual buy/sell signals and trend highlighting.
Alert conditions for real-time notifications.
This script is useful for traders who want to identify trends, confirm signals with a Moving Average, and receive alerts for potential trading opportunities.
Скользящие средние
CRP Biased (BITX)### **CRP Biased (BITX) Indicator Description:**
The **CRP Biased (BITX)** indicator provides a dynamic, trend-following tool designed to identify market direction and potential trade opportunities. It combines key elements like volatility bands, trend lines, and moving averages to help traders make informed decisions.
- **Trend Identification**: The indicator utilizes a hybrid line that blends key market references, helping to smooth price action and highlight prevailing market trends. The line dynamically changes color to reflect whether the market is bullish or bearish.
- **Support and Resistance Bands**: With adjustable volatility bands, the indicator marks potential support and resistance levels, allowing traders to spot price extremes and areas of potential reversal.
- **Trade Signals**: Buy and sell signals are generated when the price crosses above or below key levels, helping traders capture potential market moves. These signals are displayed as clear markers on the chart for easy identification.
- **Market Insight**: The indicator includes additional visual elements like the **9 EMA** and **VWAP** to provide further insight into market conditions and reinforce signal reliability.
Ideal for traders who want a comprehensive and visually clear indicator for identifying trends, support/resistance levels, and entry signals in real time.
Exit Strategy with 3 Trailing StopsThis strategy allows the user to define three trailing stops which are intended to exit a long position in incremental steps. There is no logic for opening a position, so the strategy settings require the manual input of the bar index number of the candle that is to be used for the long entry order. This number can be found in the data window, under the exit strategy value "bar index". The value will change as you mouse over the candle that you wish to use for the entry.
At each trailing stop, the user can define the percentage of the position that the strategy should close. The third and final value is intended to close the entire position, so it is set to 100.
Datia-PM-ScalperThis script is ideal for scalpers seeking quick entry and exit opportunities. It performs effectively in sideways and indecisive markets . In a clearly trending market, it can help identify potential pullback areas, but trades should always align with the prevailing trend. Thank you!
Power Trend [MacAlgo]Description:
The Power Trend Indicator is a sophisticated technical analysis tool that overlays on your trading charts to identify prevailing market trends. It utilizes a combination of ATR-based trend calculations, moving averages, volume analysis, and momentum indicators to generate reliable buy and sell signals. Additionally, it offers customizable settings to adapt to various trading styles and timeframes.
Key Features:
Adaptive ATR Calculation: Automatically adjusts the ATR (Average True Range) period and multiplier based on the selected timeframe for more accurate trend detection.
Dynamic Trend Lines: Plots continuous trend lines with color-coded bars to visually represent bullish and bearish trends.
Buy/Sell Signals: Generates standard and power buy/sell signals to help you make informed trading decisions.
Volume Analysis: Incorporates average buy and sell volumes to identify strong market movements.
Multiple Timeframe Support: Automatically adjusts the indicator's timeframe or allows for manual selection to suit your trading preferences.
Highlighting: Highlights trending bars for easy visualization of market conditions.
Alerts: Customizable alert conditions to notify you of potential trading opportunities in real-time.
How it Works:
1. ATR-Based Trend Calculation:
ATR Period & Multiplier: Calculates ATR based on user-defined periods and multipliers, dynamically adjusting according to the chart's timeframe.
Trend Determination: Identifies trends as bullish (1) or bearish (-1) based on price movements relative to ATR-based upper (up) and lower (dn) trend lines.
2. Moving Averages:
EMA & SMA: Calculates exponential and simple moving averages to smooth price data and identify underlying trends.
AlphaTrend Line: Combines a 50-period EMA and a 30-period SMA on a 4-hour timeframe to create the AlphaTrend line, providing a robust trend reference.
3. Volume Analysis:
Buy/Sell Volume: Differentiates between buy and sell volumes to gauge market strength.
Average Volume: Compares current volume against average buy/sell volumes to detect significant market movements.
4. Momentum Indicators:
RSI, MACD, OBV: Incorporates Relative Strength Index (RSI), Moving Average Convergence Divergence (MACD), and On-Balance Volume (OBV) to assess momentum and confirm trend strength.
5. Signal Generation:
Standard Signals: Basic buy and sell signals based on trend crossovers.
Power Signals: Enhanced signals requiring multiple conditions (e.g., increased volume, momentum confirmation) for higher confidence trades.
Customization Options:
Tailor the Power Trend Indicator to your specific trading needs with the following settings:
ATR Period: Set the period for ATR calculation (default: 8).
ATR Multiplier: Adjust the ATR multiplier to fine-tune trend sensitivity (default: 3.0).
Source: Choose the price source (e.g., HL2, Close) for calculations.
Change ATR Calculation Method: Toggle between different ATR calculation methods.
Show Buy/Sell Signals: Enable or disable the display of buy and sell signals on the chart.
Highlighting: Turn on or off the bar highlighting feature.
Timeframe Adjustment: Choose between automatic timeframe adjustment or manually set
the indicator's timeframe.
Manual Indicator Timeframe: If manual adjustment is selected, specify the desired timeframe (default: 60 minutes).
Visual Components:
Trend Lines: Continuous lines representing the current trend, color-coded for easy identification (green for bullish, red for bearish, orange for neutral).
Bar Coloring: Bars are colored based on the current trend and its relationship to the AlphaTrend line.
Buy/Sell Triangles: Triangular markers appear on the chart to indicate buy and sell signals.
Power Signals: Larger triangles highlight strong buy and sell opportunities based on multiple confirming factors.
Highlighting: Transparent overlays highlight trending areas to enhance visual clarity.
Alerts:
Stay informed with customizable alerts that notify you of important market movements:
SuperTrend Buy/Sell: Alerts when standard buy or sell signals are generated.
Power Buy/Sell Alerts: Notifications for strong buy or sell signals based on comprehensive conditions.
Trend Direction Change: Alerts when the trend changes from bullish to bearish or vice versa.
How to Use:
Add to Chart: Apply the Power Trend Indicator to your preferred trading chart on TradingView.
Configure Settings: Adjust the input parameters to match your trading style and the timeframe you are analyzing.
Analyze Trends: Observe the trend lines, bar colors, and AlphaTrend line to understand the current market trend.
Follow Signals: Look for buy and sell signals or power signals to identify potential entry and exit points.
Set Alerts: Enable alerts to receive real-time notifications of significant trading opportunities.
Adjust as Needed: Fine-tune the settings based on market conditions and your trading experience.
Important Notes:
Backtesting: While the Power Trend Indicator is built using robust technical analysis principles, it's essential to backtest and validate its performance within your trading strategy.
Market Conditions: The indicator performs best in trending markets. In sideways or highly volatile markets, signal reliability may vary.
Risk Management: Always employ proper risk management techniques when trading based on indicator signals to protect your capital.
Disclaimer:
This indicator is intended for educational purposes only and does not provide financial advice or guarantee future performance. Trading involves risk, and past results are not indicative of future outcomes. Always conduct your own analysis and risk management.
TrendMasterPro_FekonomiTrend Change and Start Signals with Weighted Conditions
The Trend Change and Start Signals with Weighted Conditions indicator leverages various technical analysis tools to generate reliable buy and sell signals. This indicator helps investors more accurately identify trend changes and start signals in the market.
Features:
Utilizes popular technical analysis tools such as MACD, RSI, EMA, and Ichimoku Cloud.
Enhances signal accuracy with additional indicators like ADX and Volume Increase.
Allows users to adjust the weights of each condition to set their importance.
The Confidence Level parameter lets you adjust the accuracy rate of the signals.
Visual Signals make it easy to track buy and sell points directly on the chart.
How It Works:
Condition Weights: Users assign weights to indicators like MACD, RSI, EMA, and Ichimoku Cloud. If you have no idea, use default settings.
Condition Fulfillment: Checks if the conditions for each indicator are met.
Confidence Level: The total weight of the fulfilled conditions must exceed the user-defined confidence level.
Signal Generation: When these conditions are met, a buy or sell signal is generated and visually displayed on the chart.
Customization:
Personalize Signals: By adjusting the weights of the indicators used, you can personalize the signals to match your trading strategy and preferences.
Use Cases:
Short-Term Investments: Identify quick trend changes for short-term trading decisions.
Long-Term Investments: Detect long-term trend starts and changes for strategic investment decisions.
Technical Analysis: Combine different technical analysis tools for more comprehensive and reliable analyses.
With this indicator, you can better understand market movements and make more informed investment decisions. Try it now and enhance your trading strategy!
by Fekonomi
SAR + RSI Strategy with SMA risk controlThis strategy first identifies RSI oversold or overbought and then within 1-3 candles of this condition looks for SAR signal and opens a trade accordingly. When the prices goes back to the 21 candle simple movin average, this closes the trade.
VWAP Suite by Augur - Multi PeriodOverview
The Multi-Timeframe VWAP Suite revolutionizes price analysis by combining institutional-grade volume-weighted pricing with multi-period deviation analytics. This professional toolkit simultaneously tracks VWAP across 5 time horizons (Daily to Yearly) with smart deviation bands, offering traders unparalleled insight into market structure and volatility dynamics.
Key Features
Multi-Timeframe VWAP Matrix
Simultaneous Daily/Weekly/Monthly/Quarterly/Yearly VWAP tracking
Institutional-level volume-weighted calculations
Independent timeframe toggles for focused analysis
Smart Deviation Architecture
Dual-layer standard deviation bands (1σ & 2σ)
Separate colors for upper/lower deviation zones
Adaptive 95% transparency fills for layered visualization
Professional Visual Design
Strategic color coding per timeframe (FIXED palette)
Dark Blue/Yellow/Purple/Pink/Red VWAP hierarchy
Orange-Green-Red-Blue deviation band system
Advanced Calculation Engine
HLC3 price source integration
Cumulative volume-weighting algorithm
Real-time standard deviation updates
Strategy: RSI, EMA, FVGRemoved Duplicate Indicator: Consolidated all components into single script
Fixed Plot Conflicts:
Removed separate RSI plot (use dedicated RSI indicator instead)
Organized visual elements hierarchically
Optimized FVG Logic:
Added both bullish/green and bearish/red FVG zones
Clearer 3-candle imbalance detection
Improved Swing Low Detection:
Now requires confirmation bar after swing low
Multi-Timeframe Handling:
Proper separation of daily conditions (RSI, EMA)
Current timeframe calculations (MACD, VWMA)
VDM Cipher (BTC+ALT)Анализирует ключевые метрики и помогает выявлять оптимальные моменты для сделок.
🔹 Идеально подходит для трейдинга BTC и альткоинов
🔹 Гибкий, адаптивный и надежный
🔹 Разработан с учетом реальных рыночных условий
🔥 Важно! В течение 60 дней индикатор будет активно дорабатываться!
🔜 Следующее обновление:
✅ Автоматическое определение уровней поддержки и сопротивления
✅ Учёт объёмов для ещё большей точности
✅ Связка всех данных для создания мощных сигналов
✅ Автооповещения о возможных входах в Лонг и Шорт
Smart Trading Signals with TP/SL//@version=5
indicator("Smart Trading Signals with TP/SL", shorttitle="STS-TP/SL", overlay=true, max_labels_count=500)
// —————— Input Parameters ——————
// Signal Configuration
signalType = input.string("EMA Crossover", "Signal Type", options= )
emaFastLen = input.int(9, "Fast EMA Length", minval=1)
emaSlowLen = input.int(21, "Slow EMA Length", minval=1)
rsiLength = input.int(14, "RSI Length", minval=1)
rsiOverbought = input.int(70, "RSI Overbought", maxval=100)
rsiOversold = input.int(30, "RSI Oversold", minval=0)
// Risk Management Inputs
useFixedTP = input.bool(true, "Use Fixed TP (%)", tooltip="TP as percentage from entry")
tpPercentage = input.float(2.0, "Take Profit %", step=0.1)
tpPoints = input.float(100, "Take Profit Points", step=1.0)
useFixedSL = input.bool(true, "Use Fixed SL (%)", tooltip="SL as percentage from entry")
slPercentage = input.float(1.0, "Stop Loss %", step=0.1)
slPoints = input.float(50, "Stop Loss Points", step=1.0)
// —————— Calculate Indicators ——————
// EMAs for Trend
emaFast = ta.ema(close, emaFastLen)
emaSlow = ta.ema(close, emaSlowLen)
emaBullish = ta.crossover(emaFast, emaSlow)
emaBearish = ta.crossunder(emaFast, emaSlow)
// RSI for Momentum
rsi = ta.rsi(close, rsiLength)
rsiBullish = ta.crossover(rsi, rsiOversold)
rsiBearish = ta.crossunder(rsi, rsiOverbought)
// —————— Generate Signals ——————
buyCondition = (signalType == "EMA Crossover" and emaBullish) or (signalType == "RSI Divergence" and rsiBullish)
sellCondition = (signalType == "EMA Crossover" and emaBearish) or (signalType == "RSI Divergence" and rsiBearish)
// —————— Calculate TP/SL Levels ——————
var float entryPrice = na
var bool inTrade = false
// Calculate TP/SL based on user input
takeProfitPrice = useFixedTP ? entryPrice * (1 + tpPercentage / 100) : entryPrice + tpPoints
stopLossPrice = useFixedSL ? entryPrice * (1 - slPercentage / 100) : entryPrice - slPoints
// —————— Plot Signals and Levels ——————
if buyCondition and not inTrade
entryPrice := close
inTrade := true
label.new(bar_index, low, "BUY", style=label.style_label_up, color=color.green, textcolor=color.white)
line.new(bar_index, entryPrice, bar_index + 1, entryPrice, color=color.green, width=2)
line.new(bar_index, takeProfitPrice, bar_index + 1, takeProfitPrice, color=color.teal, width=2, style=line.style_dashed)
line.new(bar_index, stopLossPrice, bar_index + 1, stopLossPrice, color=color.red, width=2, style=line.style_dashed)
if sellCondition and inTrade
entryPrice := close
inTrade := false
label.new(bar_index, high, "SELL", style=label.style_label_down, color=color.red, textcolor=color.white)
line.new(bar_index, entryPrice, bar_index + 1, entryPrice, color=color.red, width=2)
line.new(bar_index, takeProfitPrice, bar_index + 1, takeProfitPrice, color=color.teal, width=2, style=line.style_dashed)
line.new(bar_index, stopLossPrice, bar_index + 1, stopLossPrice, color=color.red, width=2, style=line.style_dashed)
// —————— Alerts ——————
alertcondition(buyCondition, title="Buy Signal Alert", message="BUY Signal Triggered")
alertcondition(sellCondition, title="Sell Signal Alert", message="SELL Signal Triggered")
// —————— Plot EMAs and RSI ——————
plot(emaFast, "Fast EMA", color.new(color.blue, 0))
plot(emaSlow, "Slow EMA", color.new(color.orange, 0))
Ultimate RZR Indicator//@version=5
indicator("Ultimate RZR Multi-Indicator Suite", shorttitle="URZR", overlay=true)
// ==== DESCRIPTION ====
/*
**ULTIMATE RZR MULTI-INDICATOR SUITE**
*All-in-One Trading Tool for Trend Analysis & Volume-Based Signals*
▄▀▄ FEATURES ▄▀▄
• **7 Integrated Indicators**
✓ RSI (Overbought/Oversold)
✓ MACD (Momentum)
✓ Volume Spike Detection
✓ Moving Average Filter
✓ Bollinger Bands
✓ Stochastic Oscillator
✓ Fibonacci Retracements
• **Smart Signal Logic**
▶ BUY Conditions:
- RSI Oversold + MACD Bullish
- Price > MA + Volume Spike
- Stochastic Confirmation
▶ SELL Conditions:
- RSI Overbought + MACD Bearish
- Price < MA + Volume Spike
- Stochastic Confirmation
• **Visual Tools**
- Automatic Fibonacci Levels
- Clean Bollinger Band Display
- Non-Repainting Signals
▄▀▄ HOW TO USE ▄▀▄
1. Apply to any chart (Stocks/Crypto/Forex)
2. Customize inputs via Settings:
• Adjust indicator lengths
• Modify Fibonacci levels
• Set volume sensitivity
3. Combine with horizontal S/R levels
▄▀▄ IDEAL FOR ▄▀▄
• Swing Traders (4H-1D Timeframes)
• Crypto Day Traders (15m-1H)
• Pullback Strategy Enthusiasts
⚠️ **Disclaimer**: Educational purpose only. Always backtest strategies.
*/
SCALPING STRATEGY//@version=5
strategy("High Probability Scalping Strategy", overlay=true)
// Indicators
emaFast = ta.ema(close, 9)
emaSlow = ta.ema(close, 21)
vwap = ta.vwap(close)
=
macdLine = ta.ema(close, 12) - ta.ema(close, 26)
signalLine = ta.ema(macdLine, 9)
bbMiddle = ta.sma(close, 20)
bbUpper = bbMiddle + (ta.stdev(close, 20) * 2)
bbLower = bbMiddle - (ta.stdev(close, 20) * 2)
// Buy Entry Conditions
buyCondition = ta.crossover(emaFast, emaSlow) and close > vwap and rsiValue > rsiSignal and macdLine > signalLine
if (buyCondition)
strategy.entry("Long", strategy.long)
// Sell Entry Conditions
sellCondition = ta.crossunder(emaFast, emaSlow) and close < vwap and rsiValue < rsiSignal and macdLine < signalLine
if (sellCondition)
strategy.entry("Short", strategy.short)
// Stop Loss & Take Profit
strategy.exit("Exit Long", from_entry="Long", loss=10, profit=20)
strategy.exit("Exit Short", from_entry="Short", loss=10, profit=20)
Trend Start and Change and Signals by fekonomiTrend Change and Start Signals Indicator
This indicator combines multiple technical analysis tools to generate buy and sell signals based on trend changes and market conditions. It uses the following components:
MACD (Moving Average Convergence Divergence): Identifies trend direction and momentum.
RSI (Relative Strength Index): Measures the speed and change of price movements.
EMA (Exponential Moving Average): Tracks the average price over a specific period, giving more weight to recent prices.
ADX (Average Directional Index): Indicates the strength of a trend.
Ichimoku Cloud: Provides support and resistance levels, trend direction, and momentum.
Volume Increase: Checks for significant increases in trading volume.
How It Works
Buy Signal: Generated when at least three of the following conditions are met:
MACD line crosses above the signal line.
RSI is above 50.
Short EMA crosses above the long EMA and ADX indicates a strong trend.
Price is above the Ichimoku Cloud and volume is significantly higher than the average.
Sell Signal: Generated when at least three of the following conditions are met:
MACD line crosses below the signal line.
RSI is below 50.
Short EMA crosses below the long EMA and ADX indicates a strong trend.
Price is below the Ichimoku Cloud.
Visualization
Buy signals are marked with green "BUY" labels below the bars.
Sell signals are marked with red "SELL" labels above the bars.
The indicator also plots the short and long EMAs, and the Ichimoku Cloud for visual reference.
This indicator helps traders identify potential trend changes and entry/exit points based on a combination of reliable technical indicators.
Feel free to customize the settings to fit your trading strategy! If you have any questions or need further assistance, let me know. Happy trading! 📈
WSGTA IndicatorsThis set of indicators includes all of the items used in the WSGTA trading system. It will have the vwap added eventually, but currently holds the following EMA's -- 9, 15, 30, 65, 200; as well as the previous day/week HLC along with pivots.
ERFAN1RAHMATI...ADX/EMA.1for backtest. this indicator is design for price prediction and anaysis and when the trend is red, two lines are drawn in color and when is is green ....other data can be changed and customized JUST FOR Test
Custom Bollinger Bands & RSI StrategyBollinger Band ve RSI üzerinden AL/SAT sinyalleri oluşturan bir strateji
Engulfing Candles Strategy by ardhankurniawanThis strategy is based on the Engulfing Candlestick pattern and incorporates a Risk-Reward ratio of 1:2. It utilizes two primary indicators:
1. SMA 200 (200-period Simple Moving Average): Used to identify the overall trend, with buy signals occurring above the SMA and sell signals below it.
2. Bollinger Bands: Provides a volatility-based range for price action. Buy signals occur when the price is above both the SMA 200 and the middle Bollinger Band, while sell signals occur when the price is below both.
The strategy executes a long position (buy) when a Bullish Engulfing candle pattern forms above the SMA 200 and the middle Bollinger Band, and it exits the position using a stop loss at the low of the Bullish Engulfing candle and a take profit at a 1:2 risk-reward ratio. Similarly, a short position (sell) is initiated when a Bearish Engulfing pattern appears below the SMA 200 and the middle Bollinger Band, with the stop loss placed at the high of the Bearish Engulfing candle and a take profit at the same 1:2 risk-reward ratio.
The strategy is designed for trend-following trades with clear entry and exit points based on candlestick patterns and key indicators.
Disclaimer:
This trading strategy is for research purposes only and should not be considered as financial or investment advice. The use of this strategy involves risk, and past performance is not indicative of future results. Always conduct your own research and consult with a financial advisor before making any investment decisions. Trading involves significant risk, and you could lose more than your initial investment. By using this strategy, you agree to take full responsibility for any trades executed and the associated risks.
AK-GBT1AK-GBT1 ist eine Test Trading Strategy für automatisiertes Trading mit Cornix. Es ist noch noch in der Beta Phase und befindet sich im intensiven Test.
6 Medias Móviles con RSI, Dólar MEP y Tendencia Tendencia Mayoritaria:
La variable trend se inicializa con el valor "Neutral", de forma explícita.
Usé la palabra clave var para asegurarnos de que el valor de la variable trend se mantenga a través de las barras.
Manejo del na:
Se ha eliminado el uso de na de manera incorrecta y se ha utilizado una forma correcta de asignación, con valores explícitos para variables de tipo string.
Valor del label:
Se ha cambiado la posición del label a una forma más correcta de manejarlo, usando el índice de la barra.
Tendencia:
La variable trend ahora se evalúa correctamente sin errores.
Bollinger Bands ±1σ/±2σ/±3σBollinger Bands (BB) are constructed using the following formula:
±1σ: Simple Moving Average (SMA) ± Standard Deviation
±2σ: Simple Moving Average ± (Standard Deviation × 2)
±3σ: Simple Moving Average ± (Standard Deviation × 3)
The probability of price movement staying within each band is as follows:
±1σ: 68.26%
±2σ: 95.44%
±3σ: 99.74%
Customizable EMA & RSI Indicator TGThis is a customisable EMA indicator. Where 5 Ema values can be set by the user along with their own colors.
Also included is an RSI indicator where RSI levels are depicted in different colors depending on the RSI level. Eaxample RSI is depicted in green if it is breaking out above 60. and is depicted as red if it is falling below 60.