Indicateurs et stratégies
Шорт или ЛонгЕсли до конца не уверены лонговать или шортить индикатор подскажет. (не финансовый совет)
Jc Position Size CalculatorPosition Size Calculator
設定說明:
1:需要自行輸入該商品一個整數點值多少美元(圖中範例為MNQ 一個整數點$2)
2:手數變化跳動單位(期貨手數沒有小數點所以設為1,算法為除後無條件捨去)
3.1:文字是否顯示固定風險模式
3.2:固定風險值設定
4.1:文字是否顯示固定手數模式
4.2:固定手數值設定
Horizon of GuruAll credits go to Mr.Guru who has guided through the creation on this script.
A Purely Intraday based Script designed for 5 min Time Frame.
30 EMA Breakout Strategy with Stop Loss and Target30 EMA Breakout Strategy with Stop Loss and Target this Strategy Give you 1:3 Reward on you risk and Hit Ratio of this Strategy is 71 %
CI, RSI & EMA StrategyTo be used with simple lines and triangles to confirm enter and exit strategy. Currently testing this script for when market is more choppy due to low volume eg. during weekends. Choppiness Index can give you an overall view on whether the market is hard or easy to trade. Script is originally written by LLM.
Combined ADX, RSI, and Stochastic Indicator
이 지표는 ADX (Average Directional Index), RSI (Relative Strength Index), 및 Stochastic Oscillator를 결합한 기술적 분석 도구입니다. 각 구성 요소는 시장 추세와 모멘텀을 분석하기 위해 사용됩니다.
ADX는 영역으로 표시하고 -DI만 표시해서 하락에 대한 추세와 힘을 표시했고 거기에 RSI가 40~50사이를 기어다닐때 스토캐스틱 선이 끝에 있으면 무조건 반전된다는 것을 보면서 추세를 보려고 만든 것
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 !
RM - VWMA -> ZscoreRM - VWMA -> Zscore Indicator
The VWMA -> Zscore Indicator blends volume-weighted moving averages (VWMA) with Z-score analysis, offering traders a robust method to evaluate market dynamics and identify momentum shifts with precision.
Key Features
Volume-Weighted Moving Average (VWMA):
Incorporates price and True Range (TR) for weighted averages.
Smoothing option with triple exponential moving average (TEMA) for cleaner signals.
Z-Score Analysis:
Quantifies deviations of VWMA from the mean using standard deviation.
Detects overbought (positive Z-scores) or oversold (negative Z-scores) conditions.
Diversified VWMA Inputs:
Applies VWMA across multiple lengths (+/- offsets) to reflect short-term and long-term trends.
Averages results for a comprehensive market assessment.
Dynamic Bar Visualization:
Customizable red or green bars based on trend direction.
Gradient intensity reflects Z-score strength.
How It Works
VWMA Calculation:
Utilizes price and True Range to calculate VWMA, factoring in both volume and volatility.
Optional smoothing reduces noise for a refined display.
Z-Score Conversion:
Converts VWMA data into Z-scores for relative strength measurement.
Positive Z-scores suggest bullish pressure.
Negative Z-scores indicate bearish pressure.
Scoring Mechanism:
Evaluates multiple VWMA inputs for directional trends.
Aggregates scores into an average for overall market.
Bar Coloring:
Red or green bars represent market conditions (bullish or bearish).
Gradient bar colors show the strength of Z-score deviations.
How to Use
Spot Momentum Shifts:
Monitor Z-scores crossing above or below 0 for potential trend reversals.
Confirm Market Trends:
Use bar colors and average scores to validate market direction.
Green bars indicate upward momentum; red bars signal downward momentum.
Customization Options:
Adjust VWMA lengths, Z-score lengths, and smoothing settings to fit your strategy.
Enable or disable specific bar color options for visual preference.
Example Use Cases
Trend Confirmation:
Validate the market direction before entering a trade.
Reversal Points:
Identify overbought/oversold zones using extreme Z-score values.
Market Pressure Visualization:
Use gradient colors to gauge the intensity of buying or selling pressure.
Disclaimer
The VWMA -> Zscore Indicator is a tool for technical analysis and does not provide guaranteed results. Always complement its insights with other indicators and risk management practices.
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
SUPER ALGOSUPER ALGO WORK IN GIFTNIFTY, MIDCAP NIFTY, BANK NIFTY, AND US30 INDEX ALSO
1. Elder Impulse System
The Elder Impulse System uses two indicators:
EMA (to determine trend direction)
MACD Histogram (to measure momentum)
Application:
Green bar: Trend is upward, and momentum is increasing (buy signal).
Red bar: Trend is downward, and momentum is decreasing (sell signal).
Blue bar: Indecision or range-bound movement.
2. VWAP (Volume Weighted Average Price)
VWAP is used to assess whether the price is overvalued or undervalued relative to volume.
Application:
Price above VWAP: Indicates bullish bias.
Price below VWAP: Indicates bearish bias.
Often used as a dynamic support/resistance level during intraday trading.
3. Bollinger Bands
Bollinger Bands consist of:
A simple moving average (SMA, often 20 periods).
Two standard deviation bands (upper and lower) above and below the SMA.
Application:
Price near the upper band: Overbought condition.
Price near the lower band: Oversold condition.
Band contractions signal low volatility, potentially preceding a breakout.
4. EMA (Exponential Moving Average)
EMA gives more weight to recent prices, making it more responsive than SMA.
Application:
Short EMA (e.g., 9 or 12 periods): Identifies short-term trends.
Long EMA (e.g., 26 or 50 periods): Identifies long-term trends.
EMA crossover strategies can signal buy/sell opportunities.
Strategy Combining These Indicators
Trend Confirmation:
Use Elder Impulse System to confirm the direction of the trend.
Dynamic Support/Resistance:
Use VWAP to assess whether the price is likely to reverse or continue its current trend.
Volatility & Reversal Signals:
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)
Скользящие средние EMA 10, 30, 200Cкрипт для определения смены тренда с использованием пересечения EMA (Exponential Moving Average)
three Supertrend EMA Strategy by Prasanna +DhanuThe indicator described in your Pine Script is a Supertrend EMA Strategy that combines the Supertrend and EMA (Exponential Moving Average) to create a trend-following strategy. Here’s a detailed breakdown of how this indicator works:
1. EMA (Exponential Moving Average):
The EMA is a moving average that places more weight on recent prices, making it more responsive to price changes compared to a simple moving average (SMA). In this strategy, the EMA is used to determine the overall trend direction.
Input Parameter:
ema_length: This is the period for the EMA, set to 50 periods by default. A shorter EMA will respond more quickly to price movements, while a longer EMA is smoother and less sensitive to short-term fluctuations.
How it's used:
If the price is above the EMA, it indicates an uptrend.
If the price is below the EMA, it indicates a downtrend.
2. Supertrend Indicator:
The Supertrend indicator is a trend-following tool based on the Average True Range (ATR), which is a volatility measure. It helps to identify the direction of the trend by setting a dynamic support or resistance level.
Input Parameters:
supertrend_atr_period: The period used for calculating the ATR, set to 10 periods by default.
supertrend_multiplier1: Multiplier for the first Supertrend, set to 3.0.
supertrend_multiplier2: Multiplier for the second Supertrend, set to 2.0.
supertrend_multiplier3: Multiplier for the third Supertrend, set to 1.0.
Each Supertrend line has a different multiplier, which affects its sensitivity to price changes. The ATR period defines how many periods of price data are used to calculate the ATR.
How the Supertrend works:
If the Supertrend value is below the price, the trend is considered bullish (uptrend).
If the Supertrend value is above the price, the trend is considered bearish (downtrend).
The Supertrend will switch between up and down based on price movement and ATR, providing a dynamic trend-following signal.
3. Three Supertrend Lines:
In this strategy, three Supertrend lines are calculated with different multipliers and the same ATR period (10 periods). Each line is more or less sensitive to price changes, and they are plotted on the chart in different colors based on whether the trend is bullish (green) or bearish (red).
Supertrend 1: The most sensitive Supertrend with a multiplier of 3.0.
Supertrend 2: A moderately sensitive Supertrend with a multiplier of 2.0.
Supertrend 3: The least sensitive Supertrend with a multiplier of 1.0.
Each Supertrend line signals a bullish trend when its value is below the price and a bearish trend when its value is above the price.
4. Strategy Rules:
This strategy uses the three Supertrend lines combined with the EMA to generate trade signals.
Entry Conditions:
A long entry is triggered when all three Supertrend lines are in an uptrend (i.e., all three Supertrend lines are below the price), and the price is above the EMA. This suggests a strong bullish market condition.
A short entry is triggered when all three Supertrend lines are in a downtrend (i.e., all three Supertrend lines are above the price), and the price is below the EMA. This suggests a strong bearish market condition.
Exit Conditions:
A long exit occurs when the third Supertrend (the least sensitive one) switches to a downtrend (i.e., the price falls below it).
A short exit occurs when the third Supertrend switches to an uptrend (i.e., the price rises above it).
5. Visualization:
The strategy also plots the following on the chart:
The EMA is plotted as a blue line, which helps identify the overall trend.
The three Supertrend lines are plotted with different colors:
Supertrend 1: Green (for uptrend) and Red (for downtrend).
Supertrend 2: Green (for uptrend) and Red (for downtrend).
Supertrend 3: Green (for uptrend) and Red (for downtrend).
Summary of the Strategy:
The strategy combines three Supertrend indicators (with different multipliers) and an EMA to capture both short-term and long-term trends.
Long positions are entered when all three Supertrend lines are bullish and the price is above the EMA.
Short positions are entered when all three Supertrend lines are bearish and the price is below the EMA.
Exits occur when the third Supertrend line (the least sensitive) signals a change in trend direction.
This combination of indicators allows for a robust trend-following strategy that adapts to both short-term volatility and long-term trend direction. The Supertrend lines provide quick reaction to price changes, while the EMA offers a smoother, more stable trend direction for confirmation.
The indicator described in your Pine Script is a Supertrend EMA Strategy that combines the Supertrend and EMA (Exponential Moving Average) to create a trend-following strategy. Here’s a detailed breakdown of how this indicator works:
1. EMA (Exponential Moving Average):
The EMA is a moving average that places more weight on recent prices, making it more responsive to price changes compared to a simple moving average (SMA). In this strategy, the EMA is used to determine the overall trend direction.
Input Parameter:
ema_length: This is the period for the EMA, set to 50 periods by default. A shorter EMA will respond more quickly to price movements, while a longer EMA is smoother and less sensitive to short-term fluctuations.
How it's used:
If the price is above the EMA, it indicates an uptrend.
If the price is below the EMA, it indicates a downtrend.
2. Supertrend Indicator:
The Supertrend indicator is a trend-following tool based on the Average True Range (ATR), which is a volatility measure. It helps to identify the direction of the trend by setting a dynamic support or resistance level.
Input Parameters:
supertrend_atr_period: The period used for calculating the ATR, set to 10 periods by default.
supertrend_multiplier1: Multiplier for the first Supertrend, set to 3.0.
supertrend_multiplier2: Multiplier for the second Supertrend, set to 2.0.
supertrend_multiplier3: Multiplier for the third Supertrend, set to 1.0.
Each Supertrend line has a different multiplier, which affects its sensitivity to price changes. The ATR period defines how many periods of price data are used to calculate the ATR.
How the Supertrend works:
If the Supertrend value is below the price, the trend is considered bullish (uptrend).
If the Supertrend value is above the price, the trend is considered bearish (downtrend).
The Supertrend will switch between up and down based on price movement and ATR, providing a dynamic trend-following signal.
3. Three Supertrend Lines:
In this strategy, three Supertrend lines are calculated with different multipliers and the same ATR period (10 periods). Each line is more or less sensitive to price changes, and they are plotted on the chart in different colors based on whether the trend is bullish (green) or bearish (red).
Supertrend 1: The most sensitive Supertrend with a multiplier of 3.0.
Supertrend 2: A moderately sensitive Supertrend with a multiplier of 2.0.
Supertrend 3: The least sensitive Supertrend with a multiplier of 1.0.
Each Supertrend line signals a bullish trend when its value is below the price and a bearish trend when its value is above the price.
4. Strategy Rules:
This strategy uses the three Supertrend lines combined with the EMA to generate trade signals.
Entry Conditions:
A long entry is triggered when all three Supertrend lines are in an uptrend (i.e., all three Supertrend lines are below the price), and the price is above the EMA. This suggests a strong bullish market condition.
A short entry is triggered when all three Supertrend lines are in a downtrend (i.e., all three Supertrend lines are above the price), and the price is below the EMA. This suggests a strong bearish market condition.
Exit Conditions:
A long exit occurs when the third Supertrend (the least sensitive one) switches to a downtrend (i.e., the price falls below it).
A short exit occurs when the third Supertrend switches to an uptrend (i.e., the price rises above it).
5. Visualization:
The strategy also plots the following on the chart:
The EMA is plotted as a blue line, which helps identify the overall trend.
The three Supertrend lines are plotted with different colors:
Supertrend 1: Green (for uptrend) and Red (for downtrend).
Supertrend 2: Green (for uptrend) and Red (for downtrend).
Supertrend 3: Green (for uptrend) and Red (for downtrend).
Summary of the Strategy:
The strategy combines three Supertrend indicators (with different multipliers) and an EMA to capture both short-term and long-term trends.
Long positions are entered when all three Supertrend lines are bullish and the price is above the EMA.
Short positions are entered when all three Supertrend lines are bearish and the price is below the EMA.
Exits occur when the third Supertrend line (the least sensitive) signals a change in trend direction.
This combination of indicators allows for a robust trend-following strategy that adapts to both short-term volatility and long-term trend direction. The Supertrend lines provide quick reaction to price changes, while the EMA offers a smoother, more stable trend direction for confirmation.
The indicator described in your Pine Script is a Supertrend EMA Strategy that combines the Supertrend and EMA (Exponential Moving Average) to create a trend-following strategy. Here’s a detailed breakdown of how this indicator works:
1. EMA (Exponential Moving Average):
The EMA is a moving average that places more weight on recent prices, making it more responsive to price changes compared to a simple moving average (SMA). In this strategy, the EMA is used to determine the overall trend direction.
Input Parameter:
ema_length: This is the period for the EMA, set to 50 periods by default. A shorter EMA will respond more quickly to price movements, while a longer EMA is smoother and less sensitive to short-term fluctuations.
How it's used:
If the price is above the EMA, it indicates an uptrend.
If the price is below the EMA, it indicates a downtrend.
2. Supertrend Indicator:
The Supertrend indicator is a trend-following tool based on the Average True Range (ATR), which is a volatility measure. It helps to identify the direction of the trend by setting a dynamic support or resistance level.
Input Parameters:
supertrend_atr_period: The period used for calculating the ATR, set to 10 periods by default.
supertrend_multiplier1: Multiplier for the first Supertrend, set to 3.0.
supertrend_multiplier2: Multiplier for the second Supertrend, set to 2.0.
supertrend_multiplier3: Multiplier for the third Supertrend, set to 1.0.
Each Supertrend line has a different multiplier, which affects its sensitivity to price changes. The ATR period defines how many periods of price data are used to calculate the ATR.
How the Supertrend works:
If the Supertrend value is below the price, the trend is considered bullish (uptrend).
If the Supertrend value is above the price, the trend is considered bearish (downtrend).
The Supertrend will switch between up and down based on price movement and ATR, providing a dynamic trend-following signal.
3. Three Supertrend Lines:
In this strategy, three Supertrend lines are calculated with different multipliers and the same ATR period (10 periods). Each line is more or less sensitive to price changes, and they are plotted on the chart in different colors based on whether the trend is bullish (green) or bearish (red).
Supertrend 1: The most sensitive Supertrend with a multiplier of 3.0.
Supertrend 2: A moderately sensitive Supertrend with a multiplier of 2.0.
Supertrend 3: The least sensitive Supertrend with a multiplier of 1.0.
Each Supertrend line signals a bullish trend when its value is below the price and a bearish trend when its value is above the price.
4. Strategy Rules:
This strategy uses the three Supertrend lines combined with the EMA to generate trade signals.
Entry Conditions:
A long entry is triggered when all three Supertrend lines are in an uptrend (i.e., all three Supertrend lines are below the price), and the price is above the EMA. This suggests a strong bullish market condition.
A short entry is triggered when all three Supertrend lines are in a downtrend (i.e., all three Supertrend lines are above the price), and the price is below the EMA. This suggests a strong bearish market condition.
Exit Conditions:
A long exit occurs when the third Supertrend (the least sensitive one) switches to a downtrend (i.e., the price falls below it).
A short exit occurs when the third Supertrend switches to an uptrend (i.e., the price rises above it).
5. Visualization:
The strategy also plots the following on the chart:
The EMA is plotted as a blue line, which helps identify the overall trend.
The three Supertrend lines are plotted with different colors:
Supertrend 1: Green (for uptrend) and Red (for downtrend).
Supertrend 2: Green (for uptrend) and Red (for downtrend).
Supertrend 3: Green (for uptrend) and Red (for downtrend).
Summary of the Strategy:
The strategy combines three Supertrend indicators (with different multipliers) and an EMA to capture both short-term and long-term trends.
Long positions are entered when all three Supertrend lines are bullish and the price is above the EMA.
Short positions are entered when all three Supertrend lines are bearish and the price is below the EMA.
Exits occur when the third Supertrend line (the least sensitive) signals a change in trend direction.
This combination of indicators allows for a robust trend-following strategy that adapts to both short-term volatility and long-term trend direction. The Supertrend lines provide quick reaction to price changes, while the EMA offers a smoother, more stable trend direction for confirmation.
cme big boyKết luận chiến lược:
1. Hỗ trợ:
o Vùng 2620 (OGF5): Tận dụng cơ hội mua khi thị trường kỳ vọng phục hồi ngắn hạn.
2. Kháng cự:
o Vùng 2640 (OGG5): Xem xét bán khống khi có dấu hiệu suy yếu.
o Vùng 2650 (OGF5 & OGG5): Đây là mức giá quan trọng, cần theo dõi sát để thực hiện chiến lược Buy nếu giá vượt kháng cự.
13 EMA Cross - Daily Supportwhen 13 ema cross 34 ema mark next day candle high and low. when high breaks wait for retest when retest happens after breakout go for 1:2 ratio
Multi-EMA Indicatorit is a multi EMA indicator where it shows 20, 50, 100, 200 EMAs which can be used for potential market reversal and breakout trading and etc. The colour of each can be changed.
Multi-EMA Indicatorit is a multi-EMA indicator showing 20, 50, 100, 200 EMAs and can be used for potential market reversal, breakout trading and etc. the lines color can be changed as well
Multi-EMA Indicatorit is a multi-EMA indicator showing 20, 50, 100, 200 EMAs and can be used for potential market reversal, breakout trading and etc. the lines color can be changed as well
20 EMA Indicatorit is a 20 ema indicator where it is shown by a red line (the colour can be changed) and it moves, it is not stable. it can be used to indicate potential market reversal
3 EMA Cross 9 EMA with Close ConfirmationThe 3x Exponential Moving Average Crosses the 9x Exponential Moving Average. Once the 3x closes above the 9x and then a subsequent candle closes above the 9x, this strategy goes long. This strategy exits once the candle closes below the 9x.