Indicateurs et stratégies
Buy/Sell Volume OscillatorBuy volume
Sell volume
will assist with market trend, showing the trend strength
Strategy EngulfingThis script implements a trading strategy that identifies "engulfing" candlestick patterns and uses the Supertrend indicator to enter and exit trades.
9/21 EMA DSWThe 9 and 21 EMA strategy involves using the 9-day and 21-day exponential moving averages to identify potential buy and sell signals. A buy signal is generated when the 9 EMA crosses above the 21 EMA, and a sell signal is generated when the 9 EMA crosses below the 21 EMA. Best for new learner
Manual Average Volume Between Two PointsCalculates average volume (Ord volume) between two swing points as described by Timothy Ord.
9/21 EMA_DSWThe 9 and 21 EMA strategy involves using the 9-day and 21-day exponential moving averages to identify potential buy and sell signals. A buy signal is generated when the 9 EMA crosses above the 21 EMA, and a sell signal is generated when the 9 EMA crosses below the 21 EMA.
9/21 EMA_DSWThe 9 and 21 EMA strategy involves using the 9-day and 21-day exponential moving averages to identify potential buy and sell signals. A buy signal is generated when the 9 EMA crosses above the 21 EMA, and a sell signal is generated when the 9 EMA crosses below the 21 EMA.
Smart EMAThe Dual EMA (Exponential Moving Average) Crossover is a popular technical analysis strategy. Here's a breakdown of how it works:
Key Components:
- Fast EMA (7 periods): Responds more quickly to price changes
- Slow EMA (25 periods): Provides a longer-term trend perspective
- Crossover signals: Generated when the fast EMA crosses above or below the slow EMA
Trading Signals:
1. Bullish Signal (Buy):
- When the fast EMA (7) crosses above the slow EMA (25)
- Indicates potential upward momentum shift
2. Bearish Signal (Sell):
- When the fast EMA (7) crosses below the slow EMA (25)
- Suggests potential downward momentum shift
Advantages:
- Simple to understand and implement
- Helps identify trend changes earlier than simple moving averages
- Reduces noise by giving more weight to recent prices
Limitations:
- Can generate false signals in choppy/sideways markets
- May lag behind rapid price movements
- Best used in conjunction with other indicators for confirmation
Best Usage:
- Most effective in trending markets
- Consider using with volume, RSI, or other momentum indicators
- Works well on multiple timeframes, though longer timeframes typically generate more reliable signals
Remember that no trading strategy is perfect, and it's important to combine this with proper risk management and other forms of analysis for best results.
Support and Resistance Levels MM NOMICSThis indicator, titled "Support and Resistance Levels", is designed to identify and visualize critical price levels on a chart using Pine Script (version 5). It calculates support and resistance based on the highest and lowest prices over a user-defined lookback period (default: 20 bars). The support level represents the lowest low during this period, acting as a potential price floor, while the resistance level represents the highest high, serving as a potential price ceiling. These levels are plotted as green and red lines, respectively. To enhance visualization, dynamic zones are created with semi-transparent background colors—green when the price is near or below the support level, and red when the price is near or above the resistance level. Additionally, the indicator uses visual markers to highlight potential reversals: green triangles appear below bars near the support level, and red triangles above bars near the resistance level. This tool helps traders quickly identify areas of potential price action, aiding in decision-making and strategy development.
Support and Resistance Levels (MMNOMICS)This indicator, titled "Support and Resistance Levels", is designed to identify and visualize critical price levels on a chart using Pine Script (version 5). It calculates support and resistance based on the highest and lowest prices over a user-defined lookback period (default: 20 bars). The support level represents the lowest low during this period, acting as a potential price floor, while the resistance level represents the highest high, serving as a potential price ceiling. These levels are plotted as green and red lines, respectively. To enhance visualization, dynamic zones are created with semi-transparent background colors—green when the price is near or below the support level, and red when the price is near or above the resistance level. Additionally, the indicator uses visual markers to highlight potential reversals: green triangles appear below bars near the support level, and red triangles above bars near the resistance level. This tool helps traders quickly identify areas of potential price action, aiding in decision-making and strategy development.
9/21 EMA_DSWThe 9 and 21 Exponential Moving Average (EMA) crossover is a popular technical indicator used by traders to identify potential buy and sell signals in the market. The 9 EMA is a shorter-term moving average, which responds more quickly to recent price movements, while the 21 EMA is a longer-term moving average that smooths out price action over a longer period. A bullish signal occurs when the 9 EMA crosses above the 21 EMA, suggesting upward momentum and a potential buying opportunity. Conversely, a bearish signal occurs when the 9 EMA crosses below the 21 EMA, indicating downward momentum and a potential selling opportunity. Traders often use this crossover in combination with other indicators, such as volume or RSI, to confirm the strength of the trend. The strategy is commonly applied in various time frames, from intraday charts to longer-term setups, and is widely used for trend-following strategies. However, it’s essential to keep in mind that the EMA crossover strategy can produce false signals in choppy or sideways markets.
Global Trading Sessions [GLIDER]This Script is a marker of global trading session timings particularly Tokyo, London, Newyork
Buy and Sell Signal with Moving Averages//@version=5
indicator("Buy and Sell Signal with Moving Averages", overlay=true)
// Define input parameters for moving averages and RSI
shortTermLength = input.int(9, title="Short-Term Moving Average Length", minval=1)
longTermLength = input.int(21, title="Long-Term Moving Average Length", minval=1)
rsiLength = input.int(14, title="RSI Length", minval=1)
rsiOverbought = input.int(70, title="RSI Overbought Level", minval=1)
rsiOversold = input.int(30, title="RSI Oversold Level", minval=1)
// Calculate short-term and long-term moving averages
shortTermMA = ta.sma(close, shortTermLength)
longTermMA = ta.sma(close, longTermLength)
// Calculate RSI
rsi = ta.rsi(close, rsiLength)
// Define Buy and Sell conditions
buyCondition = ta.crossover(shortTermMA, longTermMA) and rsi < rsiOversold
sellCondition = ta.crossunder(shortTermMA, longTermMA) or rsi > rsiOverbought
// Plot buy and sell signals
plotshape(series=buyCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY")
plotshape(series=sellCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")
// Plot moving averages
plot(shortTermMA, color=color.blue, title="Short-Term Moving Average")
plot(longTermMA, color=color.orange, title="Long-Term Moving Average")
EMA & MA Crossover StrategyEMA & MA Crossover Strategy
The EMA & MA Crossover Strategy is a comprehensive and versatile trading strategy designed to capture trend-following opportunities in the market. This script combines several advanced features, such as moving averages, percentage-based thresholds, swing lookbacks, and adaptive conditions, to provide reliable buy and sell signals. Key features of the strategy include:
Key Highlights:
Dual Moving Averages:
The strategy uses a Simple Moving Average (SMA) and an Exponential Moving Average (EMA) for crossover signals to determine trend direction and momentum.
Hull Moving Average (HMA) Ribbon:
Integrated HMA conditions enhance trend identification by ensuring alignment with momentum.
Dynamic Entry Filtering:
Incorporates a run-up threshold to exclude high-volatility candles and ignores the initial candles of a new day, reducing false signals in volatile markets.
Percentage-Based Calculations:
Utilizes the Williams %R indicator for dynamic upper and lower price levels, enhancing precision in overbought and oversold zones.
Swing High/Low Analysis:
Detects recent swing highs and lows within a customizable lookback period, adding flexibility for different trading styles.
Daily High/Low Monitoring:
Tracks and updates the intraday high and low levels in real time for added context to market conditions.
Buy & Sell Conditions:
Buy: Conditions include price above moving averages, bullish candle patterns, %R improvement, and alignment of EMA ribbons.
Sell: Triggered when prices fall below moving averages or %R hits oversold levels.
Customizable Parameters:
Adjustable lengths for moving averages, percentage thresholds, and swing lookback ensure adaptability to various market conditions and trading preferences.
Visual Enhancements:
Bar Colors: Green bars indicate potential buy zones, while red bars highlight sell zones, aiding quick visual recognition.
Dynamic Levels: Plots higher and lower lines based on %R calculations to provide dynamic support and resistance insights.
This script is a powerful tool for traders seeking a balance between technical indicators and adaptive filtering for improved signal reliability. It can be applied to a wide range of markets, including equities, forex, and cryptocurrencies. Experiment with the customizable settings to tailor the strategy to your trading style!
Reversal Signal Combo RSI/OBV/MAI'm trying to combing the above three indicators to test alignment of all three triggers in one.
2-Candle Breakout StrategyTrade on buy sell signal works on 30min ...hourly timeframe... buy next candle of signal candle corssing high ...opposite for Sell
Bollinger Bands, Williams Alligator & RSI StrategyCombined Bollinger Bands, Williams Alligator & RSI Strategy
VWAP + Fibo + SupertrendVWAP + Fibo + Supertrend
VWAP to wskaźnik analizy technicznej używany przez traderów podczas pojedynczych sesji handlowych w celu określenia średniej ceny papieru wartościowego, która opiera się na cenie i wolumenie. Może zapewnić inwestorom wgląd w płynność i zmiany cen w ciągu dnia.
[Sapphire] Fibonacci Retracement + AlertsFibonacci Retracement
This Fibonacci Retracement Indicator utilizes Fibonacci sequence numbers for moving averages and monitors for a crossover of the 13/55 plots.
The option is available to the user if they would like to toggle between an SMA or an EMA for the Fibonacci moving averages.
There is also a trading window built in so you can filter out a certain time of day to show signals if that is preferred.
The signals have alert conditions as well.
In the example, I am using a range chart. I find that it shows a signal much more efficiently as opposed to a time based bar.
EMA DSWThis Pine Script indicator implements a trading strategy based on the crossover of 5-period and 9-period Exponential Moving Averages (EMA). It generates entry signals when the 5 EMA crosses above the 9 EMA, and exit signals when the 5 EMA crosses below the 9 EMA. The script also calculates and displays stop-loss and target levels for each trade. Users can customize the EMA periods, stop-loss percentage, and target percentage through input parameters. The indicator plots the EMAs on the chart and displays entry and exit markers for visual reference
Jinx Systems - AdvancedWorking solution to the question, "Hey, where the heck is the market going?"
Run this script on as many securities as one can manage.