5 EMA/SMA by LookTajChỉ báo 5 đường MA/EMA
- Đường MA dốc lên thể hiện bằng nét liền
- Đường MA dốc xuống thể hiện bằng nét đứt
- Điểm bắt đầu dốc lên đánh dấu bằng dấu + màu trắng
- Điểm bắt đầu dốc xuống đánh dấu bằng dấu . màu vàng
Moyennes mobiles
Critical MA's for Osiris(50, 111, 200)Indicator Name: Critical MAs for Osiris (50, 111, 200)
This indicator plots three critical Simple Moving Averages (SMA) — 50, 111, and 200 periods — directly on the chart. It provides a clear visual representation of these key moving averages, which are widely used for analyzing market trends, identifying potential support and resistance levels, and assessing overall market direction.
Features:
1-Moving Average Calculation:
50-period SMA: Represents the short-term trend.
111-period SMA: Serves as a medium-term trend line.
200-period SMA: Indicates the long-term trend and is often used as a critical benchmark for trend reversals.
2-Visualization:
The 50-period SMA is displayed in blue, providing a quick reference for short-term price movements.
The 111-period SMA is displayed in orange, offering insights into medium-term price behavior.
The 200-period SMA is displayed in red, signifying the long-term market direction.
3-Customizable Parameters:
Each moving average length is defined as a constant, making it easy to adjust the indicator for different strategies.
Use Cases:
-Trend Analysis:
The alignment and slopes of these moving averages help identify the direction of the trend (bullish, bearish, or sideways).
-Support and Resistance:
Price reactions around these moving averages can signal potential support or resistance levels.
-Market Strength:
The position of the price relative to the moving averages can provide insights into the strength or weakness of the current trend.
This indicator is particularly useful for traders seeking to incorporate a multi-timeframe perspective into their trading strategies. It is simple, effective, and applicable across various financial instruments, including stocks, forex, and cryptocurrencies.
Bull Bear Power EMAAdded an EMA moving average to the built-in BBP indicator to facilitate identification of BBP trends
MTF EMA Cloud // Multi Time Frame Expodential Moving AveragesTo work properly, You should select the option from the dropdown menu >>> PIN TO SCALE > PIN TO RIGHT SCALE.
You can adjust the length of the EMAs and the timeframe to fit Your strategy.
Good Luck, Friends !
Trend Followermix of trader_xo and btc_charlie EMAs.
charlie_slowEMA_period = 50
charlie_fastEMA_period = 10
xo_slowEMA_period = 21
xo_fastEMA_period = 12
uses above EMAs to publish the trend. feel free to copy and update
13 EMA Cross - Next Day High/Low//@version=6
indicator("13 EMA Cross - Next Day High/Low", overlay=true)
// Inputs for EMAs
length1 = input.int(13, title="Short EMA (13 EMA)")
length2 = input.int(34, title="Long EMA (34 EMA)")
// Input for support line properties
supportColor = input.color(#A52A2A, title="Support Line Color") // Brown color
lineWidth = input.int(2, title="Line Width")
// Calculate EMAs
ema13 = ta.ema(close, length1)
ema34 = ta.ema(close, length2)
// Detect Crosses
crossAbove = ta.crossover(ema13, ema34)
crossBelow = ta.crossunder(ema13, ema34)
// Track when a crossover happens
var float nextDayHigh = na
var float nextDayLow = na
var int crossoverBarIndex = na
if crossAbove or crossBelow
crossoverBarIndex := bar_index
nextDayHigh := na
nextDayLow := na
// Capture next day candle's high and low after crossover
if bar_index == crossoverBarIndex + 1
nextDayHigh := high
nextDayLow := low
// Draw horizontal lines at the next day's high and low
if not na(nextDayHigh) and not na(nextDayLow)
line.new(x1=crossoverBarIndex + 1, y1=nextDayHigh, x2=bar_index, y2=nextDayHigh, color=supportColor, width=lineWidth)
line.new(x1=crossoverBarIndex + 1, y1=nextDayLow, x2=bar_index, y2=nextDayLow, color=supportColor, width=lineWidth)
200SMA & 8EMA IndicatorsHere’s a script for TradingView in Pine Script that implements the indicators you requested:
- **SMA (200) of High, Low, and (High + Low + Close)/3**
- **EMA (8) of High, Low, and (High + Low + Close)/3**
Below is the code:
### Explanation of the Code:
1. **Inputs**: Allows customization of the lengths for SMA and EMA.
2. **Calculations**:
- SMA(200) is calculated for High, Low, and (High + Low + Close)/3.
- EMA(8) is calculated for the same parameters.
3. **Plotting**:
- Each SMA and EMA series is plotted on the chart with distinct colors for easy identification.
BT Custom Moving Averages (410, 130, 150, 770 Days)Custom Moving Averages: This refers to a set of moving averages calculated over specific time periods, tailored to unique analytical needs. The moving averages in this case are based on the following day intervals:
410-Day Moving Average: Tracks the trend over a long-term period of 410 days.
130-Day Moving Average: Represents a medium-term trend, offering insight into shorter fluctuations compared to the 410-day average.
150-Day Moving Average: Similar to the 130-day average but slightly longer, providing a nuanced view of medium-term movements.
770-Day Moving Average: Captures ultra-long-term trends, smoothing out the effects of seasonal or cyclical variations.
These moving averages are customized to provide a comprehensive view of trends across multiple time horizons, often used for specialized analysis in fields like finance, trading, or data science.
EMA 50/SMA 200 CrossoverJust your basic Cross Over of the 50EMA and 200SMA with indication of the crossover.
Custom Sell Signal IndicatorThis indicator generates a sell signal when the following conditions are met: #1: The 9-day moving average crosses below the 21-day moving average. #2: RSI is above 70. #3: MACD line crosses below the signal line.
Adjust the settings to fit your desired specifics.
Custom Signal IndicatorThis indicator generates a buy signal when the following conditions are met: #1: The 9-day moving average crosses above the 21-day moving average. #2: RSI is below 30. #3: MACD line crosses above the signal line. #4: Volume is higher than usual. Adjust the parameters to customize.
This is my first script, so bear with me and any suggestions on improving it are highly welcome!
SMA y HMA PersonalizablesEste indicador puede ser útil para observar cómo se comportan diferentes tipos de medios móviles (SMA y HMA) con distintos períodos en un gráfico de precios. Las SMA son buenas para ver tendencias a largo plazo, mientras que la HMA es conocida por su capacidad para reducir el retraso.
SMA 20/50/100/200 by TPThis calculates the SMA 20/50/100/200 and changes the color when it falls through the support level.
EMA 12/26 by TPThis is to provide the EMA 12/26. It essentially changes the color based on the 12 and 26
Relative Strength Index 30 45 55 70 levelsi use this indicator to confirm my trades , u can change the settings and use it as u perefer , the diffrence between the main rsi and this is just added 45 and 55 levels , nothing else good luck
Multi-Timeframe Pattern & Trend Forecast - Akash 1this indicator forecasts and share signals based on multi timeframe and trends based on EMAs.
Customizable EMA 10/20/50/100/200Here is the updated version of the customizable EMAs. You can adjust the EMAs time frame to whatever you want (1D, 1Min etc.) and it will be plotted on your chart at the timeframe you are on. It is all public source code so feel free to make adjustments or let me know if there is anything you would like me change or add. I personally use it while scalping as I have found Daily EMAs tend to be strong levels of support and resistance.
EMA Crossover: 9 EMA and 25 EMA mohit jain9 ema 25 ema it shows crosses over above and crosses down .
by mohit jain
Bitmo cross
//@version=6
indicator('Bitmo Cross', shorttitle = 'Bitmo CROSS - MM', overlay = true, timeframe = '')
// Bitmo GROUP FOR PUBLIC USE - By : Mohsen Mohammadi
//Moving Average Exponential
len = input.int(21, minval = 1, title = 'EMA')
src = close
out = ta.ema(src, len)
//Moving Average
len2 = input.int(50, minval = 1, title = 'MA 1')
src2 = close
out2 = ta.sma(src2, len2)
//Moving Average
len3 = input.int(100, minval = 1, title = 'MA 2')
src3 = close
out3 = ta.sma(src3, len3)
//Moving Average
//Moving Average
len4 = input.int(200, minval = 1, title = 'MA 2')
src4 = close
out4 = ta.sma(src4, len4)
plot(out, title = 'EMA', color = color.new(color.blue, 0))
plot(out2, color = color.new(color.red, 0), title = 'MA 1')
plot(out3, color = color.new(color.green, 0), title = 'MA 2')
plot(out4, color = color.new(color.purple, 0), title = 'MA 3')
Two MA Crossover Spot Strategy with Summary TableIndicator that uses 2 simple moving averages to buy and sell based on momentum (works best in trending markets, worst in stagnant markets). Summary table gives estimated returns.
For alerts, buy when FastMA crosses above the SlowMA and sell when it crosses below upon candle close.