Multi-Indicator [ADX, MACD, Stoch, OBV] alamis custom multi-indicator combines several popular technical analysis tools in one view:
- ADX (Average Directional Index): Measures trend strength
- MACD (Moving Average Convergence Divergence): Shows momentum and trend changes
- Stochastic: Identifies overbought/oversold conditions
- OBV (On Balance Volume): Volume-based momentum indicator
Features:
- All indicators are normalized to the same scale for easy comparison
- Color-coded lines for clear visualization
- Reference lines for better readability
- Optimized scaling for each indicator
Settings:
ADX Length: 14
MACD: (12, 26, 9)
Stochastic: (14, 3, 3)
Lines:
Blue: ADX
Green: MACD Line
Red: MACD Signal
Orange: Stochastic K
Purple: Stochastic D
Yellow: Scaled OBV
Version: PineScript™ v6
Indicators and strategies
Relative Strength Index With Range ZoneRSI (Relative Strength Index) with 45-55 Range Zone
1. Introduction and Historical Background
The Relative Strength Index (RSI) is a momentum indicator developed in 1978 by J. Welles Wilder Jr. It measures the speed and magnitude of price changes to assess overbought and oversold conditions of an asset. This widely used oscillator ranges between 0 and 100.
Historically, the RSI was mainly used to detect trend reversals by identifying extreme levels: above 70 (overbought) and below 30 (oversold). However, its application has evolved, and new approaches refine its interpretation, such as adding a 45-55 neutral zone to identify consolidation (range) periods.
2. RSI Calculation
The RSI is calculated using the following formula:
RSI=100−(1001+RS)RSI=100−(1+RS100)
Where:
RS=Average gain over N periodsAverage loss over N periodsRS=Average loss over N periodsAverage gain over N periods
• RS (Relative Strength) is the ratio between the average gains and the average losses over N periods (typically 14 periods).
• Gains and losses are calculated based on daily price variations.
Example calculation with a 14-day period:
1. Compute daily gains and losses.
2. Take an exponential or simple moving average of these values over 14 days.
3. Apply the formula to get the RSI value.
3. Classic RSI Usage
The RSI is typically interpreted as follows:
• RSI > 70: Overbought → Possible correction or bearish reversal.
• RSI < 30: Oversold → Possible rebound or bullish reversal.
• RSI between 50 and 70: Bullish momentum.
• RSI between 30 and 50: Bearish momentum.
4. Adding the 45-55 Zone to Identify Range Phases
Adding a neutral zone between 45 and 55 helps identify consolidation periods, when price moves sideways without a strong trend.
• RSI between 45 and 55: The market is in a range, meaning neither buyers nor sellers dominate.
• RSI breaking out of this zone:
o Above 55: Indicates the start of a bullish trend.
o Below 45: Indicates the start of a bearish trend.
This zone is particularly useful for:
• Avoiding false signals by waiting for trend confirmation.
• Identifying ranging markets, favoring range trading strategies (buying at support, selling at resistance).
• Filtering trend-based entries, waiting for the RSI to exit the 45-55 zone.
5. Trading Strategies Using RSI with the 45-55 Range Zone
1. Range Trading:
• When the RSI oscillates between 45 and 55, it signals a lack of strong trend.
• Strategy:
o Identify a support and resistance level.
o Buy near support when the RSI touches 45.
o Sell near resistance when the RSI touches 55.
2. Breakout Trading:
• If the RSI exits the 45-55 zone:
o Above 55 → Buy (start of a bullish trend).
o Below 45 → Sell (start of a bearish trend).
• This breakout can be used as a confirmed entry signal.
3. Confirmation with Divergences:
• A bullish divergence (price making lower lows while RSI makes higher lows) is more relevant if the RSI moves above 55.
• A bearish divergence (price making higher highs while RSI makes lower highs) is stronger if the RSI drops below 45.
6. Conclusion
The RSI is a powerful tool for analyzing price momentum. Adding a 45-55 zone enhances its usage by clearly distinguishing:
• Consolidation phases (range markets).
• Trend beginnings when RSI breaks out of this range.
This approach improves RSI reliability by filtering out false signals and allowing traders to adapt their strategy based on market conditions.
waves█ OVERVIEW
This library intended for use in Bar Replay provides functions to generate various wave forms (sine, cosine, triangle, square) based on time and customizable parameters. Useful for testing and in creating oscillators, indicators, or visual effects.
█ FUNCTIONS
• getSineWave()
• getCosineWave()
• getTriangleWave()
• getSquareWave()
█ USAGE EXAMPLE
//@version=6
indicator("Wave Example")
import kaigouthro/waves/1
plot(waves.getSineWave(cyclesPerMinute=15))
█ NOTES
* barsPerSecond defaults to 10. Adjust this if not using 10x in Bar Replay.
* Phase shift is in degrees.
---
Library "waves"
getSineWave(cyclesPerMinute, bar, barsPerSecond, amplitude, verticalShift, phaseShift)
`getSineWave`
> Calculates a sine wave based on bar index, cycles per minute (BPM), and wave parameters.
Parameters:
cyclesPerMinute (float) : (float) The desired number of cycles per minute (BPM). Default is 30.0.
bar (int) : (int) The current bar index. Default is bar_index.
barsPerSecond (float) : (float) The number of bars per second. Default is 10.0 for Bar Replay
amplitude (float) : (float) The amplitude of the sine wave. Default is 1.0.
verticalShift (float) : (float) The vertical shift of the sine wave. Default is 0.0.
phaseShift (float) : (float) The phase shift of the sine wave in radians. Default is 0.0.
Returns: (float) The calculated sine wave value.
getCosineWave(cyclesPerMinute, bar, barsPerSecond, amplitude, verticalShift, phaseShift)
`getCosineWave`
> Calculates a cosine wave based on bar index, cycles per minute (BPM), and wave parameters.
Parameters:
cyclesPerMinute (float) : (float) The desired number of cycles per minute (BPM). Default is 30.0.
bar (int) : (int) The current bar index. Default is bar_index.
barsPerSecond (float) : (float) The number of bars per second. Default is 10.0 for Bar Replay
amplitude (float) : (float) The amplitude of the cosine wave. Default is 1.0.
verticalShift (float) : (float) The vertical shift of the cosine wave. Default is 0.0.
phaseShift (float) : (float) The phase shift of the cosine wave in radians. Default is 0.0.
Returns: (float) The calculated cosine wave value.
getTriangleWave(cyclesPerMinute, bar, barsPerSecond, amplitude, verticalShift, phaseShift)
`getTriangleWave`
> Calculates a triangle wave based on bar index, cycles per minute (BPM), and wave parameters.
Parameters:
cyclesPerMinute (float) : (float) The desired number of cycles per minute (BPM). Default is 30.0.
bar (int) : (int) The current bar index. Default is bar_index.
barsPerSecond (float) : (float) The number of bars per second. Default is 10.0 for Bar Replay
amplitude (float) : (float) The amplitude of the triangle wave. Default is 1.0.
verticalShift (float) : (float) The vertical shift of the triangle wave. Default is 0.0.
phaseShift (float) : (float) The phase shift of the triangle wave in radians. Default is 0.0.
Returns: (float) The calculated triangle wave value.
getSquareWave(cyclesPerMinute, bar, barsPerSecond, amplitude, verticalShift, dutyCycle, phaseShift)
`getSquareWave`
> Calculates a square wave based on bar index, cycles per minute (BPM), and wave parameters.
Parameters:
cyclesPerMinute (float) : (float) The desired number of cycles per minute (BPM). Default is 30.0.
bar (int) : (int) The current bar index. Default is bar_index.
barsPerSecond (float) : (float) The number of bars per second. Default is 10.0 for Bar Replay
amplitude (float) : (float) The amplitude of the square wave. Default is 1.0.
verticalShift (float) : (float) The vertical shift of the square wave. Default is 0.0.
dutyCycle (float) : (float) The duty cycle of the square wave (0.0 to 1.0). Default is 0.5 (50% duty cycle).
phaseShift (float) : (float) The phase shift of the square wave in radians. Default is 0.0.
Returns: (float) The calculated square wave value.
Custom Watermark by matarMATAR CUSTOM WATERMARK SCRIPT DESCRIPTION Type: TradingView Chart Watermark & Info Panel
Version: 1.0
Compatibility: All TradingView Charts
CORE FEATURES
1️⃣ Customizable Watermark
Add main title and subtitle
Adjust text color, size, and alignment
9 positioning options (Top-Center, Bottom-Right, etc.)
2️⃣ Smart Symbol Info Panel
Real-time symbol display (e.g., BTC/USDT)
Timeframe details (e.g., 15 Minutes, 4 Hours)
Last candle date (DD/MM/YYYY)
Toggle panel visibility
3️⃣ Visual Flexibility
Background color selection (including transparent)
6 font sizes (Tiny > Huge)
Precise positioning with margin controls
USE CASES
✅ Branding
Add company name/logo to screenshots
Credit sources in educational materials
✅ Risk Management
Permanent reminders like "Max 2% Risk"
Position size warnings
✅ Data Tracking
Quick reference for multi-timeframe analysis
Automatic date stamps for backtests
SETTINGS PANEL
📝 Text Customization
Main Title: Default "MATAR TRADING" (editable)
Subtitle: Add your trading motto
🎨 Appearance
16+ color options (HEX code support)
Font scaling for different screen sizes
📍 Positioning
Vertical/horizontal alignment
Margin adjustments for spacing
ℹ Symbol Info
Independent panel positioning
Customizable date format
INSTALLATION & USAGE
Add script to TradingView
Click "Settings" icon (top-right)
Modify parameters in dedicated tabs
Changes apply instantly (no reload needed)
KEY BENEFITS
Non-Intrusive: 90% transparency support
Lightweight: Zero performance impact
Multi-Timeframe: Show D1 data on H1 charts
Universal: Works with stocks, forex, crypto
EXAMPLE SCENARIOS
Intraday Trader:
Title: "Scalping Strategy v2.0"
Subtitle: "15M-1H TF Only"
Symbol Panel: Top-right
Educator:
Title: "Training Demo - Do Not Copy"
Background: Red transparency
Date: Auto watermark for recordings
Portfolio Manager:
Subtitle: "Max 3 Trades Daily"
Symbol Info: Bottom-left
SUPPORTED ASSETS
All TradingView symbols
Custom instruments (any listed asset)
Historical data compatible (backtesting)
This script combines practical trading discipline with brand identity management, helping you maintain professional charts while avoiding distractions. 🚀
Note: Requires basic TradingView navigation skills. No coding knowledge needed.
Daily COC Strategy with SHERLOCK WAVESThis indicator implements a unique trading strategy known as the "Daily COC (Candle Over Candle) Strategy" enhanced with "SHERLOCK WAVES" for pattern recognition. It's designed for traders looking to capitalize on specific candlestick formations with a negative risk-reward ratio, with the aim of achieving a high win rate (over 70%) through numerous trading opportunities, despite each trade having a higher risk relative to the reward.
Key Features:
Pattern Recognition: Identifies a setup based on three consecutive candles - a red candle followed by a shooting star, then an entry candle that does not break below the shooting star's low.
Negative Risk/Reward Trade Selection: Focuses on entries where the potential stop loss is greater than the take profit, banking on a high win rate to offset the individual trade's negative risk-reward ratio.
Visual Signals:
Green Label: Marks potential entry points at the high of the candle before the entry.
Green Dot: Indicates a winning trade closure.
Red Dot: Signals a losing trade closure.
Blue Circle: Warns when the current candle is within 2% of breaking above the previous candle's high, suggesting a potential setup is developing.
Green Circle: Plots the take profit level.
Red Circle: Plots the stop loss level.
Dynamic Statistics: A live updating label showing the number of trades, wins, losses, open trades, current account balance, and win percentage.
Customizable Parameters:
Risk % per Trade: Adjust the percentage of your account balance you're willing to risk on each trade.
Initial Account Balance: Set your starting balance for tracking performance.
Start Date for Strategy: Define when the strategy should start calculating from, allowing for backtesting.
Alerts:
An alert condition is set for when a potential trade setup is developing, helping traders prepare for entries.
Usage Tips:
This strategy is predicated on the idea that a high win rate can compensate for the negative risk-reward ratio of individual trades. It might not suit all market conditions or traders' risk profiles.
Use this strategy in conjunction with other analysis methods to validate trade setups.
Note: Always backtest thoroughly before applying to live markets. Consider this tool as part of a broader trading strategy, not a standalone solution. Monitor your win rate and adjust your risk management accordingly to ensure the strategy remains profitable over time.
This description now correctly explains the purpose behind the negative risk-reward ratio in the context of your trading strategy.
HTC peppermint_07 CCI w signal + s&r RSI
This CCI version enhances the traditional Commodity Channel Index (CCI) by integrating a dynamically calculated Relative Strength Index (RSI) that acts as support and resistance as shown in the screenshot, it can add as a confirmation to the divergence found in the CCI.
Key Features:
Enhanced CCI: The primary plot (black line but customizable) represents the standard CCI, providing insight into price momentum and potential overbought/oversold conditions.
Dynamic RSI Support/Resistance: The upper and lower bands (medium cyan line) are derived from a smoothed RSI, dynamically adjusting to the current market volatility. These bands serve as potential support and resistance levels for the CCI as additional confirmation for the divergence.
Overbought/Oversold Zones: The traditional overbought (+100) and oversold (-100) levels for CCI are marked with horizontal dotted lines.
Benefits:
Improved Entry/Exit Signals: Combining CCI with dynamic RSI support/resistance may offer more precise trading signals compared to using CCI alone.
Dynamic Adaptation: The RSI-based bands adapt to changing market conditions, potentially providing more relevant support and resistance levels.
Divergence Confirmation: dynamic s&r RSI adds confluence to potential trend reversals identified by the CCI.
Potential Usage:
Traders might use this indicator to:
Identify potential overbought/oversold conditions using the CCI and its relationship to the dynamic RSI bands.
Look for breakouts beyond the dynamic support/resistance levels as potential entry points.
Confirm potential trend reversals using RSI divergence (cyan and red label above divergence) signals.
Further Development Considerations:
Customizable Parameters: Allowing users to adjust the CCI length, RSI periods, and smoothing factors would enhance flexibility.
Alert Conditions: Adding alerts for breakouts, overbought/oversold conditions, and divergence signals would improve usability.
Backtesting: Thoroughly backtesting the indicator's performance across different assets and timeframes is essential before using it for live trading.
DISCLAIMER: !!
indicator is a custom technical analysis tool designed for educational and informational purposes only. It should not be construed as financial advice or a recommendation to buy or sell any security. Trading involves substantial risk of loss and may not be suitable for all investors.
Key Points to Consider:
No Guarantee of Profitability: The indicator's past performance is not indicative of future results. No trading strategy can guarantee profits or eliminate the risk of losses. You could lose some or all of your investment.
Use at Your Own Risk: Use of this indicator is solely at your own discretion and risk. You are responsible for your trading decisions. The developers and distributors of this indicator are not liable for any losses incurred as a result of using it.
Not Financial Advice: This indicator does not provide financial advice. Consult with a qualified financial advisor before making any investment decisions.
Backtesting Limitations: Backtested results, if presented, should be viewed with caution. Past performance may not reflect future results due to various factors, including changing market conditions and the limitations of backtesting methodologies.
Indicator Limitations: Technical indicators, including this one, are not perfect. They can generate false signals, and their effectiveness can vary depending on market conditions and the specific parameters used.
Parameter Optimization: Optimizing indicator parameters for past performance can lead to overfitting, which may not translate to future profitability.
No Warranty: The indicator is provided "as is" without any warranty of any kind, either express or implied, including but not limited to warranties of merchantability, fitness for a particular purpose, or non-infringement.
Changes and Updates: The developers may make changes or updates to the indicator without notice.
By using the "HTC peppermint_07 CCI w signal + s&r RSI" indicator, you acknowledge and agree to the terms of this disclaimer. If you do not agree with these terms, do not use the indicator.
Binance Pseudo Funding FeeThe indicator calculates the Funding Fee for Binance based on the Premium Index provided by TradingView. The calculation formula can be found here: Binance Funding Rate Introduction . This is NOT the official rate visible on binance.com and used for settlements, but rather an estimated rate, which is inherently INACCURATE . The accuracy of the calculation heavily depends on the timeframe, with almost perfect results on minute-based timeframes.
For the most accurate calculations, you need to visit Binance Funding History and fill in the corresponding Interval , Interest Rate , and Funding Cap/Floor settings for the specific symbol in the indicator's settings. I understand this is not convenient, but for now, this is how it works.
The blue bars indicate the settlement time. Funding can be smoothed using moving averages. Both the funding rate and the moving averages are displayed using plot and are labeled, so you can set alerts on them.
Dow Theory Swing Trading-DexterThis Pine Script strategy that implements a basic price action-based trading system inspired by Dow Theory, focusing on swing highs and swing lows. This strategy will generate buy and sell signals based on the formation of higher highs (HH) and higher lows (HL) for an uptrend, and lower highs (LH) and lower lows (LL) for a downtrend.
Swing Highs and Swing Lows:
The script identifies swing highs and swing lows using the ta.highest and ta.lowest functions over a specified lookback period.
A swing high is identified when the high of the current bar is the highest high over the lookback period.
A swing low is identified when the low of the current bar is the lowest low over the lookback period.
Trend Detection:
An uptrend is detected when the current low is higher than the last identified swing low.
A downtrend is detected when the current high is lower than the last identified swing high.
Buy and Sell Signals:
A buy signal is generated when the price closes above the last swing high during an uptrend.
A sell signal is generated when the price closes below the last swing low during a downtrend.
Plotting:
Swing highs and swing lows are plotted on the chart using plotshape.
Buy and sell signals are also plotted on the chart for visual reference.
How to Use:
Copy and paste the script into the Pine Script editor in TradingView.
Adjust the lookback period as needed to suit your trading style and timeframe.
Apply the script to your chart and it will generate buy and sell signals based on the price action.
NOTE: Please uncheck the all the unwanted symbol from chart for clear view .
RoGr75 - EMA Cross Signal with Buffer and Variable Distance**Overview**:
This script is designed to identify potential buy and sell signals based on the crossover of two Exponential Moving Averages (EMAs) – a short-term EMA (default: 8 periods) and a long-term EMA (default: 50 periods). To reduce noise and false signals, the script incorporates a customizable buffer percentage, ensuring that signals are only generated when the short-term EMA moves significantly above or below the long-term EMA. Additionally, the script allows users to adjust the distance of the signals from the candles using the Average True Range (ATR) for better visualization.
---
Improvements: Added Buffer Percentage for reduced noise in Signals
### **Key Features**:
1. **EMA Crossover Signals**:
Buy Signal: Generated when the short-term EMA crosses above the long-term EMA.
Sell Signal: Generated when the short-term EMA crosses below the long-term EMA.
2. **Buffer Percentage**:
A user-defined buffer percentage ensures that signals are only triggered when the short-term EMA moves a specified percentage above or below the long-term EMA, reducing false signals.
3. **Customizable Signal Distance**:
Signals are plotted at a user-defined distance from the candles, calculated using the ATR (Average True Range) for dynamic positioning.
4. **Visual Enhancements**:
Buy and sell signals are displayed as labels above or below the candles, with optional background highlighting for better visibility.
5. **Flexible Inputs**:
Users can customize the lengths of the short-term and long-term EMAs, the ATR period, the signal distance multiplier, and the buffer percentage.
6. **Alerts**:
Built-in alert conditions allow users to receive real-time notifications for buy and sell signals.
### **Input Parameters**:
**Short EMA Length**: Period for the short-term EMA (default: 8).
**Long EMA Length**: Period for the long-term EMA (default: 50).
**Signal Distance**: Multiplier for ATR to determine the distance of signals from the candles (default: 2.0).
**ATR Length**: Period for the ATR calculation (default: 14).
**Buffer Percentage**: Percentage buffer for reversal signals to reduce noise (default: 1.0%).
### **Ideal For**:
Traders who use EMA crossovers as part of their strategy.
Those looking to reduce false signals with a buffer mechanism.
Users who prefer dynamic signal positioning based on market volatility (ATR).
### **Notes**:
The buffer percentage ensures that signals are only generated when the price moves significantly, making it suitable for trend-following strategies.
The script is highly customizable, allowing traders to adapt it to different timeframes and instruments.
Displaced MAsDisplaced Moving Averages with Customizable Bands
Overview
The "Displaced Moving Averages with Customizable Bands" indicator is a powerful and versatile tool designed to provide a comprehensive view of price action in relation to various moving averages (MAs) and their volatility. It offers a high degree of customization, allowing traders to tailor the indicator to their specific needs and trading styles. The indicator features a primary moving average with multiple configurable percentage-based displacement bands. It also includes additional moving averages with standard deviation bands for a more in-depth analysis of different timeframes.
Key Features
Multiple Moving Average Types:
Choose from a wide range of popular moving average types for the primary MA calculation:
WMA (Weighted Moving Average)
EMA (Exponential Moving Average)
SMA (Simple Moving Average)
HMA (Hull Moving Average)
VWAP (Volume-Weighted Average Price)
Smoothed VWAP
Rolling VWAP
The flexibility to select the most appropriate MA type allows you to adapt the indicator to different market conditions and trading strategies.
Smoothed VWAP with Customizable Smoothing:
When "Smoothed VWAP" is selected, you can further refine it by choosing a smoothing type: SMA, EMA, WMA, or HMA.
Customize the smoothing period based on the chart's timeframe (1H, 4H, D, W) or use a default period. This feature offers fine-grained control over the responsiveness of the VWAP calculation.
Rolling VWAP with Adjustable Lookback:
The "Rolling VWAP" option calculates the VWAP over a user-defined lookback period.
Customize the lookback length for different timeframes (1H, 4H, D, W) or use a default period. This provides a dynamic VWAP calculation that adapts to the chosen timeframe.
Customizable Lookback Lengths:
Define the lookback period for the primary moving average calculation.
Tailor the lookback lengths for different timeframes (1H, 4H, D, W) or use a default value.
This allows you to adjust the sensitivity of the MA to recent price action based on the timeframe you are analyzing. Also has inputs for 5m, and 15m timeframes.
Percentage-Based Displacement Bands:
The core feature of this indicator is the ability to plot multiple displacement bands above and below the primary moving average.
These bands are calculated as a percentage offset from the MA, providing a clear visualization of price deviations.
Visibility Toggles: Independently show or hide each band (+/- 2%, 5%, 7%, 10%, 15%, 20%, 25%, 30%, 40%, 50%, 60%, 70%).
Customizable Colors: Assign unique colors to each band for easy visual identification.
Adjustable Multipliers: Fine-tune the percentage displacement for each band using individual multiplier inputs.
The bands are useful for identifying potential support and resistance levels, overbought/oversold conditions, and volatility expansions/contractions.
Labels for Displacement Bands:
The indicator displays labels next to each plotted band, clearly indicating the percentage displacement (e.g., "+7%", "-15%").
Customize the label text color for optimal visibility.
The labels can be horizontally offset by a user-defined number of bars.
Additional Moving Averages with Standard Deviation Bands:
The indicator includes three additional moving averages, each with upper and lower standard deviation bands. These are designed to provide insights into volatility on different timeframes.
Timeframe Selection: Choose the timeframes for these additional MAs (e.g., Weekly, 4-Hour, Daily).
Sigma (Standard Deviation Multiplier): Adjust the standard deviation multiplier for each MA.
MA Length: Set the lookback period for each additional MA.
Visibility Toggles: Show or hide the lower band of MA1, the middle/upper/lower bands of MA2, and the bands of MA3.
4h Bollinger Middle MA is unticked by default to provide a less cluttered chart
These additional MAs are particularly useful for multi-timeframe analysis and identifying potential trend reversals or volatility shifts.
How to Use
Add the indicator to your TradingView chart.
Customize the settings:
Select the desired Moving Average Type for the primary MA.
If using Smoothed VWAP, choose the Smoothing Type and adjust the Smoothing Period for different timeframes.
If using Rolling VWAP, adjust the Lookback Length for different timeframes.
Set the Lookback Length for the primary MA for different timeframes.
Toggle the visibility of the Displacement Bands and adjust their Colors and Multipliers.
Customize the Label Text Color and Offset.
Configure the Timeframes, Sigma, and MA Length for the additional moving averages.
Toggle the visibility of the additional MA bands.
Interpret the plotted lines and bands:
Primary MA: Represents the average price over the selected lookback period, calculated using the chosen MA type.
Displacement Bands: Indicate potential support and resistance levels, overbought/oversold conditions, and volatility ranges. Price trading outside these bands may signal significant deviations from the average.
Additional MAs with Standard Deviation Bands: Provide insights into volatility on different timeframes. Wider bands suggest higher volatility, while narrower bands indicate lower volatility.
Potential Trading Applications
Trend Identification: Use the primary MA to identify the overall trend direction.
Support and Resistance: The displacement bands can act as dynamic support and resistance levels.
Overbought/Oversold: Price reaching the outer displacement bands may suggest overbought or oversold conditions, potentially indicating a pullback or reversal.
Volatility Analysis: The standard deviation bands of the additional MAs can help assess volatility on different timeframes.
Multi-Timeframe Analysis: Combine the primary MA with the additional MAs to gain a broader perspective on price action across multiple timeframes.
Entry and Exit Signals: Use the interaction of price with the MA and bands to generate potential entry and exit signals. For example, a bounce off a lower band could be a buy signal, while a rejection from an upper band could be a sell signal.
Disclaimer
This indicator is for informational and educational purposes only and should not be considered financial advice. Trading involves risk, and past performance is not indicative of future results. Always conduct thorough research and consider your risk tolerance before making any trading decisions.
Enjoy using the "Displaced Moving Averages with Customizable Bands" indicator!
Higher Timeframe SeparatorThis script helps visually identify when a higher timeframe candle starts by drawing a vertical line. It also shades the area above or below the opening price, making it easier to track price movement relative to the higher timeframe.
Why It's Useful
If you use multiple timeframes, this indicator provides a clear visual reference for where the price is relative to the higher timeframe. This is much more convenient than constantly switching between charts. You can see in the screenshot below how much clearer the price action becomes when the indicator is enabled:
Additional Benefit
If you trade on a lower timeframe and notice that the number of bars between separators is inconsistent, it means there weren’t enough trades during that period—indicating low liquidity. Illiquid instruments can be riskier to trade. For example, observe how the vertical lines on the left side of the image below are densely packed:
Tomorrow's CPR by Maddycpr A Central Pivot Range (CPR) indicator calculates and displays key support and resistance levels based on the previous trading session's high, low, and close prices. It consists of a Pivot Point (PP), a Bottom CPR (BC), and a Top CPR (TC). Traders use these levels to anticipate potential price movements, identify possible support and resistance areas, and make informed trading decisions. The CPR is often used in conjunction with other technical analysis tools.for tomorrow
Candle Color Based on TimeThis Pine Script indicator highlights ETH session candles with a user-specified color, allowing traders to distinguish between ETH and RTH sessions without switching charts. It provides a clearer visual separation compared to session boxes. The RTH session hours are also customizable in the settings, ensuring flexibility for different market hours if the trader wishes to do so.
TDI 7 MA and HISTOGRAMTDI %K Histogram with 7 MA
Overview
This indicator enhances trend and momentum analysis using the %K line from the Traders Dynamic Index (TDI), combined with a 7-period moving average (MA) and a histogram.
How It Works
The script calculates %K (similar to Stochastic RSI), representing the relative price position within a given range.
A 7-period Simple Moving Average (SMA) is applied to smooth the %K line, reducing noise and improving trend clarity.
A histogram is plotted based on the difference between %K and the 7-period MA:
Green bars indicate that %K is above the 7-period MA, suggesting bullish momentum.
Red bars indicate that %K is below the 7-period MA, suggesting bearish momentum.
Key Features
-%K Line (Blue) – Reflects short-term momentum shifts.
-7-period MA (Purple) – Helps smooth out fluctuations in %K for better trend identification.
-Histogram (Green/Red Columns) – Highlights momentum shifts visually.
Overbought (68), Midpoint (50), and Oversold (32) Levels – Provides reference points for potential reversals or trend continuation.
How to Use
Bullish Confirmation: When the histogram turns green and %K is above the 7 MA, it suggests upward momentum.
Bearish Confirmation: When the histogram turns red and %K is below the 7 MA, it suggests downward momentum.
Overbought/Oversold Conditions: Use the 68 and 32 levels as potential reversal zones, but always confirm with price action.
Midpoint (50 Level): Acts as a dynamic support/resistance area for momentum shifts.
This indicator is suitable for trend-following and momentum-based trading strategies, whether on lower timeframes for scalping or higher timeframes for swing trading.
Try it out and integrate it with your trading system to refine your entries and exits!
Micha Stocks Custom Watermark Reva fixed version of the original Micha Stocks custom watermark that offers location position and have the information order to be presented visually better
thank you micha :)
Fisher Al-Sat Sinyali by@kawalskyfisher indikatoru al sat sinyali
bu indikator u 4 saatlikte yada 1 saatlikte kullanın.
vadeli işlemlerde risk taşır.
sadece profesyoneller için....
Multi-SMA Strategy - Core SignalsTick-Precise Cross Detection:
Uses bar's high/low for real-time cross detection
Compares current price action with previous bar's position
Works across all timezones and trading sessions
Three-Layer Trend Filter:
Requires 50 > 100 > 200 SMA for uptrends
Requires 50 < 100 < 200 SMA for downtrends
Adds inherent market structure confirmation
Responsive Exit System:
Closes longs when price breaks below 20 SMA
Closes shorts when price breaks above 20 SMA
Uses same tick-precise logic as entries
Universal Time Application:
No fixed time references
Pure price-based calculations
Works on any chart timeframe (1m - monthly)
Signal Logic Summary:
+ Long Entry: Tick cross above 50 SMA + Uptrend hierarchy
- Long Exit: Price closes below 20 SMA
+ Short Entry: Tick cross below 50 SMA + Downtrend hierarchy
- Short Exit: Price closes above 20 SMA
Komut
//@version=5
strategy("Multi-SMA Strategy - Core Signals", overlay=true)
// ———— Universal Inputs ———— //
int smaPeriod1 = input(20, "Fast SMA")
int smaPeriod2 = input(50, "Medium SMA")
bool useTickCross = input(true, "Use Tick-Precise Crosses")
// ———— Timezone-Neutral Calculations ———— //
sma20 = ta.sma(close, smaPeriod1)
sma50 = ta.sma(close, smaPeriod2)
sma100 = ta.sma(close, 100)
sma200 = ta.sma(close, 200)
// ———— Tick-Precise Cross Detection ———— //
golden_cross = useTickCross ?
(high >= sma50 and low < sma50 ) :
ta.crossover(sma20, sma50)
death_cross = useTickCross ?
(low <= sma50 and high > sma50 ) :
ta.crossunder(sma20, sma50)
// ———— Trend Filter ———— //
uptrend = sma50 > sma100 and sma100 > sma200
downtrend = sma50 < sma100 and sma100 < sma200
// ———— Entry Conditions ———— //
longCondition = golden_cross and uptrend
shortCondition = death_cross and downtrend
// ———— Exit Conditions ———— //
exitLong = ta.crossunder(low, sma20)
exitShort = ta.crossover(high, sma20)
// ———— Strategy Execution ———— //
strategy.entry("Long", strategy.long, when=longCondition)
strategy.entry("Short", strategy.short, when=shortCondition)
strategy.close("Long", when=exitLong)
strategy.close("Short", when=exitShort)
// ———— Clean Visualization ———— //
plot(sma20, "20 SMA", color.new(color.blue, 0))
plot(sma50, "50 SMA", color.new(color.red, 0))
plot(sma100, "100 SMA", color.new(#B000B0, 0), linewidth=2)
plot(sma200, "200 SMA", color.new(color.green, 0), linewidth=2)
// ———— Signal Markers ———— //
plotshape(longCondition, "Long Entry", shape.triangleup, location.belowbar, color.green, 0)
plotshape(shortCondition, "Short Entry", shape.triangledown, location.abovebar, color.red, 0)
plotshape(exitLong, "Long Exit", shape.xcross, location.abovebar, color.blue, 0)
plotshape(exitShort, "Short Exit", shape.xcross, location.belowbar, color.orange, 0)
Углы Ганн 45° и 1х2 1х3 Ганна, основанное на арктангенсахУглы Ганн 45° и 1х2 1х3 Ганна, основанное на арктангенсах
Ichimoku Cloud with EMA and TREND Ichimoku Cloud + EMA 34 & EMA 50 Crossover Trading Strategy
This strategy combines the Ichimoku Cloud with Exponential Moving Averages (EMA 34 & EMA 50) to identify strong trends and high-probability trade entries.
1. Components of the Strategy
🔹 Ichimoku Cloud (Kumo)
The Ichimoku Cloud is a comprehensive indicator that provides trend direction, support/resistance levels, and momentum. The key components include:
Kumo (Cloud): The shaded area that indicates trend strength and direction.
Tenkan-Sen (Conversion Line, 9-period): Short-term trend indicator.
Kijun-Sen (Base Line, 26-period): Medium-term trend indicator.
Chikou Span (Lagging Line, 26 periods back): Confirms trends when above or below price.
Senkou Span A & B (Leading Span A & B, forming the Cloud): Defines support/resistance levels.
🔹 EMA 34 & EMA 50 (Exponential Moving Averages)
EMA 34: A short-term trend-following indicator that reacts quickly to price changes.
EMA 50: A medium-term trend indicator that helps confirm trend direction.
Crossover Signal:
Bullish Crossover: EMA 34 crosses above EMA 50 → Uptrend Confirmation.
Bearish Crossover: EMA 34 crosses below EMA 50 → Downtrend Confirmation.
2. Entry & Exit Rules
✅ Bullish Entry (Buy Setup)
Price above the Ichimoku Cloud → Confirms an uptrend.
EMA 34 crosses above EMA 50 → Confirms bullish momentum.
Tenkan-Sen is above Kijun-Sen → Strong trend confirmation.
Chikou Span is above the price & Cloud → Confirms strength in the trend.
Entry Trigger: Enter a buy trade when the above conditions are met.
🔹 Stop-Loss (SL): Below the Cloud or recent swing low.
🔹 Take Profit (TP):
First TP at 1:2 risk-reward ratio.
Second TP at major resistance levels.
❌ Bearish Entry (Sell Setup)
Price below the Ichimoku Cloud → Confirms a downtrend.
EMA 34 crosses below EMA 50 → Confirms bearish momentum.
Tenkan-Sen is below Kijun-Sen → Strong trend confirmation.
Chikou Span is below the price & Cloud → Confirms bearish trend.
Entry Trigger: Enter a sell trade when the above conditions are met.
🔹 Stop-Loss (SL): Above the Cloud or recent swing high.
🔹 Take Profit (TP):
First TP at 1:2 risk-reward ratio.
Second TP at key support levels.
3. Advantages of This Strategy
✅ Combines momentum and trend confirmation → Higher accuracy in identifying strong trends.
✅ Works well in trending markets → Filters out sideways markets.
✅ Ichimoku Cloud provides dynamic support/resistance → Helps in stop-loss placement.
Vezpa's Gold StrategyA simple Moving average strategy
Utilizing the 100,50 and 21 moving averages.
Shown the 5 min timeframe is very effective.
As with all moving average strategies the trend is your friend.
Always try to enter when the moving averages show a clear direction.
See the red and green highlighted areas Green is ideal and red, rather wait for trend.
IF you can confirm the trend on the 30 min
then move down to the 5 min and wait for entries in the same trend.
SL below the last meaningful low and aim for 1:2 RR
Ultimate Multi-Indicator Crypto Strategy GALLINAGeht die Kerze über die Linie sollte man Kaufen, geht es unter die Linie sollte man verkaufen