8 EMA and 20 EMAThis Pine Script is designed to plot two Exponential Moving Averages (EMAs) on the chart:
8-period EMA (Blue Line):
This is a faster-moving average that reacts more quickly to recent price changes. It uses the last 8 periods (bars) of the price data to calculate the average.
It is plotted in blue to distinguish it from the other EMA.
20-period EMA (Red Line):
This is a slower-moving average that smooths out the price data over a longer period of time, providing a better indication of the overall trend.
It is plotted in red to visually differentiate it from the 8-period EMA.
Key Features:
Version: This script is written in Pine Script version 6.
Overlay: The EMAs are plotted directly on the price chart, allowing for easy visualization of the moving averages relative to the price action.
Visual Appearance:
The 8-period EMA is displayed with a blue line.
The 20-period EMA is displayed with a red line.
Both lines have a thickness of 2 to make them more prominent.
Purpose:
The combination of these two EMAs can be used for trend analysis and trading strategies:
A bullish signal is often seen when the faster (8-period) EMA crosses above the slower (20-period) EMA.
A bearish signal is typically generated when the faster (8-period) EMA crosses below the slower (20-period) EMA.
Traders use these EMAs to help determine market trends, potential entry points, and exit points based on crossovers and price interactions with these moving averages.
Indicateurs et stratégies
Impulse MACD Premium+Send crypto gift to: 0xf417096335b9A9B6Ce73C619fDe1485429521032
Impulse MACD Premium+ is a powerful and advanced technical analysis indicator designed for traders looking for deep insights into market trends, momentum, and volatility. Built on the widely-used MACD (Moving Average Convergence Divergence) tool, this version includes a variety of customizable settings and features to enhance your trading strategy. Here's an overview of its capabilities:
Key Features:
Customizable MACD Settings: Choose your own Fast, Slow, and Signal Lengths, as well as the MACD Source for precise control over your analysis.
Advanced Smoothing Options: Select from multiple smoothing techniques including EMA, ZLEMA, HULL, and VWMA, ensuring the smoothest and most relevant trend data for your needs.
Visual Enhancements: Enjoy enhanced chart visualization with background colors indicating trend direction, MACD crosses, volume profiles, and a trend strength heatmap.
Multi-Timeframe MACD: Incorporate higher timeframe MACD values into your analysis, offering a broader perspective on price action across different timeframes.
Divergence Detection: Get alerts and signals for bullish and bearish divergences to identify potential reversals and market shifts.
Alerts & Signals: Receive automatic alerts for MACD crosses, trend shifts, and divergence conditions. Customize alerts based on your preferences.
Market Filters: Apply trend and volatility filters to ensure you’re trading under the best market conditions, improving the accuracy of your entries and exits.
Buy & Sell Signals: The indicator plots buy and sell signals based on MACD crossovers, trend confirmation, and volatility checks, helping you make timely trading decisions.
Whether you are an experienced trader or just getting started, Impulse MACD Premium+ offers a range of sophisticated tools to help you stay ahead of the market. Its combination of trend-following and divergence-based signals makes it an invaluable tool for anyone serious about technical analysis.
Volatility Stop with Volatility AlertsA volatility stop script with alert functionality that allow for alerts to be custom programmed
Trend-Based Buy/Sell Signals//@version=5
indicator("Trend-Based Buy/Sell Signals", overlay=true)
// Input parameters
ema_short = input(9, title="Short EMA")
ema_long = input(21, title="Long EMA")
// Calculating EMAs
ema1 = ta.ema(close, ema_short)
ema2 = ta.ema(close, ema_long)
// Define buy and sell conditions
buy_condition = ta.crossover(ema1, ema2) // Short EMA crosses above Long EMA
sell_condition = ta.crossunder(ema1, ema2) // Short EMA crosses below Long EMA
// Plot EMAs
plot(ema1, color=color.green, title="Short EMA")
plot(ema2, color=color.red, title="Long EMA")
// Buy and Sell Signals
bgcolor(buy_condition ? color.new(color.green, 90) : na, title="Buy Signal Background")
bgcolor(sell_condition ? color.new(color.red, 90) : na, title="Sell Signal Background")
plotshape(series=buy_condition, style=shape.labelup, color=color.green, location=location.belowbar, title="Buy Signal")
plotshape(series=sell_condition, style=shape.labeldown, color=color.red, location=location.abovebar, title="Sell Signal")
// Basic Trend Visualization
high_line = ta.highest(high, 50)
low_line = ta.lowest(low, 50)
plot(high_line, color=color.blue, linewidth=2, title="High Trend Line")
plot(low_line, color=color.orange, linewidth=2, title="Low Trend Line")
// Alerts
alertcondition(buy_condition, title="Buy Alert", message="Buy Signal Triggered!")
alertcondition(sell_condition, title="Sell Alert", message="Sell Signal Triggered!")
Volatility Stop: Max/Min ExplanationA Volatility Stop Indicator that attempts to track volume changes
Hassan's - Buy Signal with Stop Loss, Volume, and Fibonaccitesting my own indicator to call for buy based on volume, fib 1.68 level and volume multiplier.
MACD + EMA Cross by Mayank
It is 6 indicator in one :
5 ema 5 / 9 / 20/ 50/ 200 & MACD cross
When MACD (5,9,5) is greater than signal (5) and Momentum EMA (5) crosses up the Fast EMA (9), it generates B Signal.
when Signal is greater than MACD and Fast EMA(9) crosses down the Momentum EMA(5) , it generates S Signal.
When MACD (5,9,5): bullish crossover it generate M_B
When MACD (5,9,5): bearish crossover it generates M_S
MACD + EMA Cross 1 by Mayank BhargavMACD + EMA cross by Mayank Bhargava
It is 6 indicator in one :
5 ema 5 / 9 / 20/ 50/ 200 & MACD
Added advantage:
Agressive buy and sell aur defensive buy sell signal generate krta hai
Mazhar ema+vwap v6Here we can use 6 Ema's along with vwap and Bollinger band in just one indicator. Try it and edit as per your need
ATR//@version=6
indicator("ATR", "", true)
// Настройки
atrPeriodInput = input.int(24, "Кол-во свечей", minval = 1, maxval = 24)
atrStopInput = input.int(10, "Stop ATR input")
// Переменные для хранения значений
var float thirdHigh = na
var float curentATR = na
// Получаем данные о дневных свечах
= request.security(syminfo.tickerid, "1D", )
// Условие для обновления thirdHigh
isNewDay = ta.change(time("D")) != 0 // Проверяем, изменился ли день
if (isNewDay or na(thirdHigh)) // Проверяем, если значение na или день изменился
thirdHigh := highDaily // Индекс 2 соответствует третьей свече с конца
// Создание таблицы для отображения
var table atrDisplay = table.new(position.top_right, 2, 5, bgcolor=#4b6ad8, frame_width=2, frame_color=color.black)
if barstate.islast
// Заполняем таблицу
table.cell(atrDisplay, 1, 0, str.tostring(thirdHigh, format.mintick), text_color=color.white, bgcolor=color.rgb(233, 153, 32))
table.cell(atrDisplay, 0, 0, "ATR 1D", text_color=color.white, bgcolor=color.rgb(233, 153, 32))
B4100 - Market SessionsA simple script to highlight London, New York, Hong Kong pre-market, open, close times.
Enhanced Volume Flow
The indicator analyzes volume flow by separating and comparing bullish and bearish volume, where:
Arrows are Push In our out.
The "hills" at the bottom are the delta between the in flow and out flow.
The Red line is out flow.
The Green line is in flow.
• Bullish Volume: Volume on candles that close higher than they open
• Bearish Volume: Volume on candles that close lower than they open
• Multiple Moving Average Types:
- Simple
- Exponential
- Double Exponential
- Zero-Lag
RSI 2.0 By RBRSI ini sudah diperbaharui dan sudah melakukan banyak backtest, RSI 2.0 ini membantu trader untuk menganalisa chart
Trading SessionsChanged session names and times.
Replaced average price with VWAP.
Added the ability to hide weekends.
Stock Terminus ScalperThis indicator can be used as an assisting for scalper, where user can assign desired volume threshold, and it will indicate those candles and based on super trend can be helpful in taking trade.
Investing Zone"Investing Zone" designed to highlight specific market conditions. It calculates the Relative Strength Index (RSI) over a period of 2 and identifies when the RSI value drops below 15, signaling a potential oversold condition. Additionally, it calculates the Exponential Moving Average (EMA) over a period of 14 and checks if the closing price is below the EMA, indicating a bearish trend.
The indicator combines these two conditions, and if both are true, it highlights the chart background in green with a transparency level of 85. This visual cue helps traders identify potential "investing zones" where the market might be oversold in a downtrend, suggesting areas of interest for further analysis or potential buying opportunities.
Triple MA For Loop [SeerQuant]Triple MA For Loop
The Triple MA For Loop (TMA FL) by SeerQuant is an advanced moving average-based indicator designed to dynamically detect trends through a combination of three smoothed moving averages and iterative evaluation using a for-loop mechanism. This innovative approach enhances trend detection while filtering out noise, providing actionable insights into market trends.
--------------------------------------------------------------------------------------------------
⚙️ How It Works
1️⃣ Triple Moving Average Calculation
This indicator calculates three moving averages (MA1, MA2, MA3) using a customizable moving average type, such as SMA, EMA, SMMA, WMA, and more. These are combined mathematically to derive the Triple Moving Average (TMA), which smooths trends while remaining responsive to market shifts.
2️⃣ Iterative For-Loop Evaluation
The TMA is passed through a for-loop, iterating over a user-defined range to calculate a cumulative trend score. This score reflects the balance between bullish and bearish signals across the looped period.
3️⃣ Threshold Logic
The trend score is compared against customizable Uptrend and Downtrend thresholds to determine the current market regime:
Bullish (Uptrend): When the score exceeds the upward threshold.
Bearish (Downtrend): When the score falls below the downward threshold.
Neutral: When the score lies between thresholds.
4️⃣ Dynamic Visual Representation
Line: A colored histogram represents the trend score, dynamically adjusting based on market conditions.
Candlestick Coloring: Optional candle coloring visually enhances trend identification on the chart.
Signals: Arrow markers highlight transitions into bullish or bearish states for clear, actionable signals.
--------------------------------------------------------------------------------------------------
✨ Customizable Settings
1. Moving Average Settings:
Choose from various MA types (SMA, EMA, SMMA, etc.)
Set the length and source for MA calculations.
2. For-Loop Settings:
Define loop start, end, and thresholds for trend detection.
3. Style Settings:
Toggle candle coloring for better visualization.
Select from five unique color schemes to match your chart style.
--------------------------------------------------------------------------------------------------
🚀 Features and Benefits
Dynamic Trend Detection: Detects market trends with precision using iterative for-loop calculations.
Visual Clarity: Color-coded oscillator, candles, and threshold levels for intuitive trend identification.
Highly Customizable: Adapt to your trading style with flexible inputs and multiple moving average options.
--------------------------------------------------------------------------------------------------
📜 Disclaimer
This indicator is for educational purposes only and does not constitute financial advice. Past performance is not indicative of future results. Users should consult with a licensed financial advisor before making trading decisions. Use at your own risk.
--------------------------------------------------------------------------------------------------
RSI50此策略的逻辑是:
1.将RSI周期调整为750.
2.增加一条ma均线,这条ma线是将rsi线进行sma计算 ,并且设置sma周期为15
3.ma均线上穿rsi=50 线,做多
ma均线下穿rsi= 50 线,做空
ma均线上穿rsi=52线,平多
ma均线下穿rsi=48线,平空
此策略暂时适用于btcusdt 15min
The logic of this strategy is as follows:
1. Set the RSI period to 750.
2. Add a moving average (MA) line, which is the simple moving average (SMA) of the RSI line, with a SMA period of 15.
3.Enter a long position when the MA line crosses above the RSI = 50 line.
Enter a short position when the MA line crosses below the RSI = 50 line.
Close the long position when the MA line crosses above the RSI = 52 line.
Close the short position when the MA line crosses below the RSI = 48 line.
this strategy is applied to BTCUSDT on the 15-minute chart.
FABMEL - FVG + RSI + MACD Crossidentificar los cruces del MACD y combinarlo con las condiciones del Fair Value Gap (FVG) y el RSI para marcar las entradas.
Para identificar los cruces del MACD, necesitamos verificar cuándo la línea MACD cruza la línea de señal (o sea, cuando la línea azul cruza la roja hacia arriba para una señal de compra y cuando la línea azul cruza la roja hacia abajo para una señal de venta). Este cruce debe cumplirse junto con las condiciones del FVG y el RSI para generar una señal más precisa.
Volume-Based Circle Below CandleThis indicator check the volume of each candle and highlights or marks the candle that has specific volume mentioned under the settings.