VWMA CrossoverThis LemonSqueazy script manually calculates the VWMA by iterating over the length of the window and summing the products of the price and volume, and then dividing by the sum of the volume.
The speed of the VWMA (Volume-Weighted Moving Average) is determined by the length parameter used in its calculation. This parameter specifies the number of periods (e.g., days, hours, minutes) over which the VWMA is calculated. A shorter length results in a faster VWMA that is more responsive to recent price and volume changes, while a longer length results in a slower VWMA that is smoother and less sensitive to recent fluctuations.
Here is a detailed breakdown of the VWMA calculation:
Calculation of VWMA:
Sum of the product of price and volume: Multiply the closing price by the volume for each period within the specified length.
Sum of the volume: Sum the volume for each period within the specified length.
VWMA: Divide the sum of the product of price and volume by the sum of the volume.
Mathematically, the VWMA for a given length
𝑛
is calculated as follows:
\
Where:
Price
𝑖
is the closing price at period
𝑖
.
Volume
𝑖
is the trading volume at period
𝑖
.
The speed of the VWMA depends on the chosen length
𝑛
. A shorter length (e.g., 9 periods) results in a faster VWMA that reacts quickly to changes in price and volume, while a longer length (e.g., 21 periods) results in a slower VWMA that provides a more smoothed average.
In our script, you can adjust the fast_length and slow_length parameters to change the speed of the fast and slow VWMAs, respectively. This allows you to customize the responsiveness of the VWMAs to suit your trading strategy.
Rata-Rata Pergerakan / Moving Averages
Market Trend Levels Detector [BigBeluga]Market Trend Levels Detector is an trend-following tool that utilizes moving average crossovers to identify key market trend levels. By detecting local highs and lows after EMA crossovers, the indicator helps traders track significant price zones and trend strength.
🔵 Key Features:
EMA Crossover-Based Trend Levels Detection:
Uses a fast and slow EMA to detect market flow shifts.
When the fast EMA crosses under the slow EMA, the indicator searches for the most recent local top and marks it with a label and horizontal level.
When the fast EMA crosses over the slow EMA, it searches for the most recent local low and marks it accordingly.
Dynamic Zone Levels:
Each detected high or low is plotted as a horizontal level, highlighting important price zones.
Traders can extend these levels to observe how price interacts with them over time.
If price crosses a level, its extension stops. Uncrossed levels continue expanding.
Gradient Trend Band Visualization:
The trend band is formed by shading the area between the two EMAs.
Color intensity varies based on volatility and trend strength.
Strong trends and high volatility areas appear with more intense colors, making trend shifts visually distinct.
🔵 Usage:
Trend Identification: Use EMA crossovers and trend bands to confirm bullish or bearish momentum.
Key Zone Mapping: Observe local high/low levels to track historical reaction points.
Breakout & Rejection Signals: Monitor price interactions with extended levels to assess potential breakouts or reversals.
Volatility Strength Analysis: Use color intensity in the trend band to gauge trend power and possible exhaustion points.
Scalping & Swing Trading: Ideal for both short-term scalping strategies and larger swing trade setups.
Market Trend Levels Detector is a must-have tool for traders looking to track market flow, key price levels, and trend momentum with dynamic visual cues. It provides a comprehensive approach to identifying high-probability trade setups using EMA-based flow detection and trend analysis.
MACD/RSI/EMA D1/H4/H1This script is a custom indicator written in Pine Script, designed for use on TradingView. It combines multiple technical analysis tools to analyze market conditions across three different timeframes: daily (D1), 4-hour (H4), and 1-hour (H1). The indicator focuses on three main technical indicators: MACD, RSI, and EMA.
Key Functions:
1. MACD (Moving Average Convergence Divergence):
• The script calculates the MACD line and its signal line. It detects whether the MACD is moving upwards (bullish) or downwards (bearish) by comparing the current and previous values.
2. RSI (Relative Strength Index):
• RSI is calculated for each timeframe, and it indicates whether the market is overbought (>50, bullish) or oversold (<50, bearish).
3. EMA (Exponential Moving Average):
• The script calculates the 20, 50, and 200-period EMAs. It checks whether the short-term EMA (20) is above the medium (50) and long-term EMA (200), which would signal a bullish market. The opposite would signal a bearish market.
Timeframes:
• The indicator calculates values for D1, H4, and H1 timeframes.
Logic for Strong and Weak Signals:
• Strong Buy: All timeframes (D1, H4, H1) show a bullish trend (MACD > 0, RSI > 50, and bullish EMA conditions).
• Weak Buy: Either D1 or H4 or H1 shows a bullish trend (but not all).
• Strong Sell: All timeframes show a bearish trend.
• Weak Sell: Either D1 or H4 or H1 shows a bearish trend.
• Wait: No clear signal is present.
Table:
The results of the analysis are presented in a table at the bottom right of the TradingView chart, showing:
• MACD direction (with arrows indicating whether the MACD is bullish or bearish).
• RSI values (with arrows showing whether it’s above or below 50).
• EMA state (with arrows showing whether the market is in a bullish, bearish, or neutral state).
• Signal: The overall recommendation (strong/weak buy/sell or wait), along with the corresponding color.
This script helps traders to quickly visualize the trend strength across multiple timeframes and make more informed trading decisions based on a combination of MACD, RSI, and EMA signals.
SMA - 20, 50, 150, 200Simple Moving Average (SMA) Indicator
A simple moving average (SMA) indicator that calculates the average price over a specified period, helping to identify trends and smooth out volatility. Suitable for stocks, forex, crypto, and more. 🚀
MTF Moving Averages (only EMA)MTF Moving Averages (only EMA)
This script provides a Multi-Timeframe (MTF) Exponential Moving Average (EMA) indicator for traders to visualize multiple EMAs across different timeframes directly on a single chart.
The indicator dynamically calculates and plots up to four EMAs per timeframe (15-minute, 30-minute, 1-hour, and Daily) with user-defined lengths, offering valuable insight into price trends and potential entry or exit points.
Key Features:
Multiple Timeframe Support: The script allows you to view EMAs from different timeframes simultaneously. This is especially useful for traders who follow trends across different timeframes to make more informed decisions.
Customizable Lengths: For each timeframe, the lengths of the EMAs are fully customizable. You can adjust the length of up to four EMAs per timeframe to suit your strategy.
EMA Calculation: The Exponential Moving Average (EMA) is used, which gives more weight to recent prices and reacts faster to price changes compared to the simple moving average (SMA).
Timeframe Flexibility: The indicator supports the following timeframes:
15-minute: Ideal for short-term traders and scalpers.
30-minute: For intraday trading with a slightly longer perspective.
1-hour: Suitable for swing traders and those who prefer a more medium-term view.
Daily: Great for longer-term trend-following strategies.
Interactive and User-Friendly: You can toggle the visibility of each EMA on each timeframe, allowing you to choose exactly which EMAs you wish to display, depending on your trading strategy.
Color-Coded for Clarity: The script uses distinct colors for each EMA on the chart:
Blue: EMA1
Green: EMA2
Red: EMA3
Purple: EMA4
Line Width Customization: Each plotted EMA line has a customizable width for better visual clarity.
Use Case:
Traders who use multiple timeframes for analysis (e.g., those using the "multi-timeframe analysis" technique) will find this script particularly useful. For example, a trader may look at the 15-minute chart to catch short-term movements, the 30-minute chart for intraday trends, the 1-hour chart for swing positions, and the Daily chart for identifying the overarching market trend. The script enables them to view the EMAs for all these timeframes in one glance without having to manually switch between them.
By observing the relationships between EMAs across multiple timeframes, traders can gain valuable insights into market conditions such as:
Crossovers: When a shorter-term EMA crosses above or below a longer-term EMA, it can signal a potential trend reversal or continuation.
Trend Strength: Multiple EMAs in alignment across different timeframes can indicate strong trend strength.
Support and Resistance: EMAs can act as dynamic support and resistance levels, guiding traders on price action levels to watch for potential price reversals.
Instructions:
Enable/Disable EMAs: Toggle on or off the EMAs for each timeframe (15-min, 30-min, 1-hour, Daily) using the script’s settings.
Adjust EMA Lengths: Change the default lengths for each EMA to match your preferred settings for different timeframes.
Monitor Key Levels: Watch how price interacts with the plotted EMAs to spot potential trading signals based on your strategy.
This indicator is designed to enhance your multi-timeframe analysis and help make more informed, data-driven trading decisions.
EMA 5 Alert Candle ShortThe 5 EMA (Exponential Moving Average) Strategy is a simple yet effective trading strategy that helps traders identify short-term trends and potential entry and exit points. This strategy is widely used in intraday and swing trading, particularly in forex, stocks, and crypto markets.
Components of the 5 EMA Strategy
5 EMA: A fast-moving average that reacts quickly to price movements.
15-minute or 1-hour timeframe (commonly used, but adaptable to other timeframes).
Candlestick Patterns: To confirm entry signals.
How the 5 EMA Strategy Works
Buy (Long) Setup:
Price Above the 5 EMA: The price should be trading above the 5 EMA.
Pullback to the 5 EMA: A minor retracement or consolidation near the 5 EMA.
Bullish Candlestick Confirmation: A bullish candle (e.g., engulfing or pin bar) forms near the 5 EMA.
Entry: Enter a long trade at the close of the bullish candle.
Stop Loss: Place below the recent swing low or 5-10 pips below the 5 EMA.
Take Profit: Aim for a risk-reward ratio of at least 1:2 or trail the stop using a higher EMA (e.g., 10 or 20 EMA).
Sell (Short) Setup:
Price Below the 5 EMA: The price should be trading below the 5 EMA.
Pullback to the 5 EMA: A small retracement towards the 5 EMA.
Bearish Candlestick Confirmation: A bearish candle (e.g., engulfing or pin bar) near the 5 EMA.
Entry: Enter a short trade at the close of the bearish candle.
Stop Loss: Place above the recent swing high or 5-10 pips above the 5 EMA.
Take Profit: Aim for a 1:2 risk-reward ratio or use a trailing stop.
Additional Filters for Better Accuracy
Higher Timeframe Confirmation: Check the trend on a higher timeframe (e.g., 1-hour or 4-hour).
Volume Confirmation: Enter trades when volume is increasing.
Avoid Sideways Market: Use the strategy only when the market is trending.
Advantages of the 5 EMA Strategy
✔️ Simple and easy to use.
✔️ Works well in trending markets.
✔️ Helps traders capture short-term momentum.
Disadvantages
❌ Less effective in choppy or sideways markets.
❌ Requires discipline in following stop-loss rules.
Mayer Multiple ZonesMayer Multiple Zones
The Mayer Multiple Zones indicator is a powerful market valuation tool that helps traders identify key price zones based on multiples of the 200-period moving average. Originally inspired by the Bitcoin Mayer Multiple concept, this versatile indicator works across all markets and timeframes to visualize the relative valuation of any asset.
Key Features:
Color-coded valuation zones: Instantly recognize if the current price represents a strong buy opportunity, fair value, or potential bubble territory
Customizable multiplier levels: Adjust all zone thresholds to suit specific markets or trading strategies
Real-time status indicator: Clear market status display showing current valuation zone
Comprehensive information table: View all critical price levels and current multiple at a glance
Multi-timeframe compatible: Works seamlessly across all timeframes while maintaining accurate MA200 reference
Visual zone labeling: Clear labels for each price zone directly on the chart
How to Use:
The indicator divides price action into six distinct zones based on the MA200:
Strong Buy Zone (default: below 0.6x MA200): Extreme undervaluation, historically excellent buying opportunities
Value Buy Zone (default: 0.6x-0.8x MA200): Attractive buying range for long-term value
Accumulation Zone (default: 0.8x-1.0x MA200): Price building strength below the MA200
Fair Value Zone (default: 1.0x-2.0x MA200): Reasonable valuation range
Take Profit Zone (default: 2.0x-2.5x MA200): Overvaluation suggesting partial profit taking
Bubble Zone (default: above 2.5x MA200): Extreme overvaluation, historically unsustainable levels
This indicator serves as both a strategic planning tool for long-term investors and a tactical guide for shorter-term traders, helping identify potential reversal zones and price targets based on historical valuation patterns.
Settings:
MA Length: Adjust the moving average period (default: 200)
Multipliers: Customize each zone threshold to adapt to specific market characteristics
Perfect for all traders seeking to understand relative market valuation across any timeframe.
Multiple Moving Averages5 days Moving Averages
20 days Moving Averages
60 days Moving Averages
120 days Moving Averages
6F Signals (With Labels)6F Signals (With Labels)
This TradingView indicator plots potential buy and sell signals.
Signals
- Buy signals: "Buy: " labels appear below the bar.
- Sell signals: "Sell: " labels appear above the bar.
Perfect for traders looking for straightforward, labeled entry and exit points directly on their price chart!
EMA 200 Price Deviation AlertsThis script is written in Pine Script v5 and is designed to monitor the difference between the current price and its 200-period Exponential Moving Average (EMA). Here’s a quick summary:
200 EMA Calculation: It calculates the 200-period EMA of the closing prices.
Threshold Input: Users can set a threshold (default is 65) that determines when an alert should be triggered.
Price Difference Calculation: The script computes the absolute difference between the current price and the 200 EMA.
Alert Condition: If the price deviates from the 200 EMA by more than the specified threshold, an alert condition is activated.
Visual Aids: The 200 EMA is plotted on the chart for reference, and directional arrows are drawn:
A sell arrow appears above the bar when the price is above the EMA.
A buy arrow appears below the bar when the price is below the EMA.
This setup helps traders visually and programmatically identify significant price movements relative to a key moving average.
Adaptive MA Crossover - LemonSqueazyAdaptive Moving Average Crossover with buy sell signals. by LemonSqueazy
You can interchange each moving average from:
SMA
EMA
KAMA
VIDYA
You Change the speed of each MA.
You can also edit the color and thickness of each MA.
You can also edit the Buy Sell signal Shape, Color and Font color.
You can also adjust the signal strength. This will help eliminate false signal. The signal is in conjunction with the number of bars. So if you have a signal strength of 4 it will wait 4 bars before printing a Buy or Sell signal. Not sure if this works though.
Buy/Sell Signals by ATX LaloThis indicator generates buy and sell signals based on the crossover of the 5EMA and 13EMA. Like any other indicator, it is not infallible and should not be relied upon as the sole basis for trading decisions. Instead, it is recommended to use this indicator as a supplementary tool to enhance your overall analysis.
T5-T55 Price Pulse ConfluenceThis script combines multiple technical indicators and price action analysis to generate clear and actionable buy and sell signals, offering a balanced approach to identifying trading opportunities. The inclusion of dynamic stop-loss, take-profit, and 20% profit targets allows for effective risk management while maximizing profit potential.
Enhanced X1 Algo for Spot Trading with RSI, ATR, and MACDThe Enhanced X1 Algo is a versatile trading indicator for spot trading, integrating SMA, ROC, RSI, ATR, and MACD for robust buy and sell signals. It dynamically displays only the most recent trigger set, with clear entry, target, and stop levels. Ideal for various trading styles, this indicator provides real-time alerts and comprehensive market analysis, enhancing your trading strategy.
Golden Cross & Death CrossThe Golden Cross & Death Cross Indicator is a powerful tool for identifying key trend reversals in the market. It detects when a 50-period Simple Moving Average (SMA) crosses a 200-period SMA, signaling potential bullish or bearish momentum shifts. This version is optimized for a clean and professional TradingView experience, ensuring minimal distractions while maintaining high visibility.
Key Features:
✅ Optimized SMA Settings – Uses the widely recognized 50-SMA (short-term) and 200-SMA (long-term) for reliable trend analysis.
✅ Minimalist Design – Displays only the "GC" (Golden Cross) and "DC" (Death Cross) text markers without background boxes, keeping the chart clean.
✅ Color-Coded Signals – Green for Golden Cross (bullish trend) and Red for Death Cross (bearish trend) for easy identification.
✅ Customizable & Lightweight – Designed for efficiency, with adjustable moving average periods to fit different trading strategies.
How It Works:
Golden Cross (Bullish Signal) 🟢: The 50-SMA crosses above the 200-SMA, indicating a potential uptrend.
Death Cross (Bearish Signal) 🔴: The 50-SMA crosses below the 200-SMA, suggesting a possible downtrend.
Signals are placed directly on the chart as small text labels without clutter, enhancing readability.
Best Use Cases:
📈 Swing Trading – Identifies long-term trend shifts for strategic trade entries.
📉 Position Trading – Confirms larger market movements for investors.
⏳ Trend Confirmation – Helps filter out false signals when combined with other indicators like RSI or MACD.
EMA Trend & Trigger StrategySummary of the EMA Trend & Trigger Strategy (Pine Script)
This Pine Script strategy is designed to trade based on Exponential Moving Averages (EMAs) on two different timeframes:
1D (Daily) → Identifies the overall trend.
1H (Hourly) → Generates trade signals based on shorter-term movements.
How It Works
1. Define EMA Lengths
Daily (1D) EMAs:
Short EMA: 5-period
Long EMA: 30-period
Hourly (1H) EMAs:
Short EMA: 12-period
Long EMA: 26-period
2. Calculate EMA Values
Uses request.security to fetch EMA values from both the daily (1D) and hourly (1H) timeframes.
3. Determine Trend Based on 1D EMAs
Uptrend: Short EMA (5) > Long EMA (30).
Downtrend: Short EMA (5) < Long EMA (30).
4. Generate Trade Signals (1H Crossover)
Buy Signal: Short EMA (12) crosses above Long EMA (26) AND the daily trend is up.
Sell Signal: Short EMA (12) crosses below Long EMA (26) AND the daily trend is down.
5. Volatility-Based Trade Triggers
High Volatility Uptrend: If the price rises by more than 5%, enter a long trade.
High Volatility Downtrend: If the price drops by more than 5%, enter a short trade.
6. Stop Loss Calculation
Long Trades: Stop loss at the lowest price in the last 10 bars.
Short Trades: Stop loss at the highest price in the last 10 bars.
7. Execute Trades
Enter Long: When a buy signal or high volatility uptrend occurs.
Exit Long: When the stop loss (localBottom) is hit.
Enter Short: When a sell signal or high volatility downtrend occurs.
Exit Short: When the stop loss (localPeak) is hit.
8. Plot EMAs on Chart
Blue: 1D Short EMA (5).
Red: 1D Long EMA (30).
Green: 1H Short EMA (12).
Orange: 1H Long EMA (26).
Key Takeaways
Combines trend-following and short-term crossovers for trade signals.
Filters trades based on volatility (5% price moves).
Uses stop-loss levels based on local highs/lows (last 10 bars).
Can trade both long and short positions.
This strategy is useful for momentum traders looking to follow trends while using a lower timeframe for precision entries. 🚀
EMA Trend & Trigger StrategyThis Pine Script strategy, titled "EMA Trend & Trigger Strategy," is designed to trade based on the interaction of Exponential Moving Averages (EMAs) on two timeframes: 1D (daily) and 1H (hourly). Here's a summary of how it works:
Key Components:
EMA Lengths:
1D (Daily): Short EMA with a period of 5, and long EMA with a period of 30.
1H (Hourly): Short EMA with a period of 12, and long EMA with a period of 26.
Trend Identification (1D):
The trend is considered uptrend when the short EMA is above the long EMA, and downtrend when the short EMA is below the long EMA.
Trade Triggers (1H):
Buy Signal: A buy signal is triggered when the short EMA crosses above the long EMA on the 1H chart and the trend is up (based on the 1D EMAs).
Sell Signal: A sell signal is triggered when the short EMA crosses below the long EMA on the 1H chart and the trend is down (based on the 1D EMAs).
Volatility-based Triggers:
The strategy looks for high volatility (price change of more than 5%) during uptrend or downtrend to trigger buy or sell actions, respectively.
Stop Loss Calculation:
Local Bottom: The lowest point in the last 10 bars is used as the stop for long positions.
Local Peak: The highest point in the last 10 bars is used as the stop for short positions.
Execution:
Long Entry: Executed when there is a buy signal or high volatility during an uptrend.
Short Entry: Executed when there is a sell signal or high volatility during a downtrend.
The positions are exited when the price reaches the respective local bottom or peak.
Plotting:
The script plots the 1D short and long EMAs in blue and red, and the 1H short and long EMAs in green and orange on the chart.
In summary, this strategy combines trend-following with EMA crossovers, volatility filtering, and dynamic stop loss calculation to manage entries and exits for both long and short positions.
Mr. Laz's Fibonacci MASmoothed Fibonacci Moving Average
This indicator plots six Fibonacci retracement levels overlaid on the chart, with each level smoothly adjusted using an Exponential Moving Average (EMA). The Fibonacci levels are calculated based on the highest high and lowest low over a user-defined period, and they represent key support and resistance zones that traders often watch for price reversals.
The six Fibonacci retracement levels plotted are:
0% (Fib 0): Top level (representing the highest point in the range).
23.6% (Fib 23.6%)
38.2% (Fib 38.2%)
50% (Fib 50%)
61.8% (Fib 61.8%)
100% (Fib 100): Bottom level (representing the lowest point in the range).
These levels are smoothed using a user-defined Smoothing Length, which helps reduce the "zig-zag" nature of the lines and provides a more gradual, smoother appearance as they follow the price movement. The indicator allows you to adjust the smoothing factor to control how sensitive the lines are to price changes.
The colors of the Fibonacci levels are customizable and are plotted from top to bottom as:
Red (for Fib 100%)
Green (for Fib 23.6%)
Orange (for Fib 38.2%)
White (for Fib 50%)
Blue (for Fib 61.8%)
Purple (for Fib 0%)
This indicator is useful for identifying key support and resistance zones based on Fibonacci retracement levels, with the added benefit of smoothing to make the lines more visually appealing and less prone to sudden shifts.
POC-Candle-EMA-ATR-LongShadow-50percCandleThis is a script for those who trade based on volume and smart money strategies.
Some of the features of this script:
- Display "Time Price Opportunity Chart". These points help traders to identify price opportunities over time and have a better analysis of the market.
- Mark candles that have traded more volume than previous candles.
- Mark candles whose body is at least and not more than 50% of the total candle size, these candles can be found more easily in smart money strategies.
- Mark spike candles to find FVG faster
- Mark candles that have a shadow of at least more than 380 points and can be good reversal points.
- EMA indicator to check the market trend
- DonchianChannel indicator to check the price trend on the chart
Regards
Profit Guard Short Strategy with Time Delay & Stop Loss"Profit Guard Short Strategy" Explanation
This script, named "Profit Guard Short Strategy," is designed to identify and execute short-selling opportunities in financial markets, aiming to profit from price declines. It incorporates adaptive filtering, a time-based exit mechanism, and a stop-loss to manage risk.
Profit-Making Mechanisms:
Trend Following (Short Direction):
The core profit strategy is to identify and capitalize on downtrends.
It uses two Simple Moving Averages (SMAs): a faster one (FMA) and a slower one (SMA).
When the FMA crosses below the SMA, it signals a potential shift from an uptrend to a downtrend.
The script further confirms this with a price crossover below the FMA, indicating a strong likelihood of a continuing downtrend.
Adaptive Filtering:
Volatility Filter (ATR): The script uses the Average True Range (ATR) to ensure sufficient market volatility. It only enters short positions when the ATR is above a certain threshold, avoiding trades in stagnant or low-volatility conditions.
Range Filter: The script calculates the price range over a specified lookback period and avoids entering trades when the range is too narrow, indicating a range-bound market. This helps to focus on trending markets.
Time-Based Exit:
The script implements a time delay before considering the crossover exit signal. This allows the trade to run for a predetermined period, giving it a chance to reach its profit potential.
After the time delay, the script closes the short position when the price or the FMA crosses back above the SMA, indicating a potential trend reversal.
Stop-Loss Mechanism:
Risk Management: The stop-loss is a crucial risk management tool.
Percentage-Based: The script uses a percentage-based stop-loss, calculated from the entry price.
Protection: If the price moves against the short position and reaches the stop-loss level, the position is automatically closed, limiting potential losses.
Lookback (Range Filter):
Range Calculation: The "lookback" period (rangeLookback) determines the number of past bars the script uses to calculate the highest high and lowest low prices.
Purpose: This calculation is used to determine the price range and filter out range-bound markets.
Impact: A larger lookback period considers a wider historical range, while a smaller lookback period focuses on recent price action.
Default Settings and Market Considerations:
Default Settings: The default settings of this script are optimized for the BTCUSDT market.
Market Sensitivity: Different markets have varying volatility, price ranges, and trading characteristics.
Resetting Settings: It is crucial to reset the script's settings when trading other markets. This includes:
Moving Average Lengths: Adjusting fastMA_length and slowMA_length based on the market's volatility and trend characteristics.
ATR Sensitivity: Modifying atrSensitivity to match the market's typical volatility.
Range Percent: Adjusting rangePercent to reflect the market's typical price ranges.
Time Delay: Modifying delayMinutes based on the market's typical trend duration.
Stop Loss Percent: Adjusting stopLossPercent based on the market's volatility and your risk tolerance.
Trend Reversal Alert*When you see a red Close, you can close a Long/Buy position or open a Short position.
*When you see a blue Close, you can open a Long/Buy position or close a Short position.
15 minutes and above makes a clearer, less noisy notification. My recommendation is 30 minutes, everyone can use a time interval suitable for their own strategy. At the same time, 50SMA and 10SMA are there for extra confirmation. 50SMA is purple, for extra confirmation, you can evaluate buying above 50, selling below and selling when 10sma cuts 50sma down, buying when up is certain.
This code in an uptrend; 1) there should be at least 3 green candles at the end (last green candle) after closing, 2) if a red first candle is formed that is larger than 50% of its body length And this red candle (Moving Average 10) is a value below this value, it gives a warning and shows a red "Close" label on the chart. While creating this code, I want you to check and take as a condition that the new first red candle is 50% larger by taking the last 3 green uptrend candles and the last closed green candle as basis and item 1) and item 2) should meet the conditions at the same time, accordingly, red close
In a downtrend within the same code sequence, this code; 3) there should be at least 3 red candles at the end (last red candle) after closing, 4) if a green first candle is formed that is larger than 50% of its body length And this green candle (Moving Average 10) is a value above this value, it gives a warning and shows a blue "Close" label on the chart It shows a label. When creating this code, I want you to check and take as a condition that the first new green candle is 50% larger, based on the last 3 red bearish candles and the last closed red candle, and item 3) and item 4) must meet the conditions at the same time, accordingly, blue clos
Trend Reversal Alert*When you see a red Close, you can close a Long/Buy position or open a Short position.
*When you see a blue Close, you can open a Long/Buy position or close a Short position.
15 minutes and above makes a clearer, less noisy notification. My recommendation is 30 minutes, everyone can use a time interval suitable for their own strategy. At the same time, 50SMA and 10SMA are there for extra confirmation. 50SMA is purple, for extra confirmation, you can evaluate buying above 50, selling below and selling when 10sma cuts 50sma down, buying when up is certain.
This code in an uptrend; 1) there should be at least 3 green candles at the end (last green candle) after closing, 2) if a red first candle is formed that is larger than 50% of its body length And this red candle (Moving Average 10) is a value below this value, it gives a warning and shows a red "Close" label on the chart. While creating this code, I want you to check and take as a condition that the new first red candle is 50% larger by taking the last 3 green uptrend candles and the last closed green candle as basis and item 1) and item 2) should meet the conditions at the same time, accordingly, red close
In a downtrend within the same code sequence, this code; 3) there should be at least 3 red candles at the end (last red candle) after closing, 4) if a green first candle is formed that is larger than 50% of its body length And this green candle (Moving Average 10) is a value above this value, it gives a warning and shows a blue "Close" label on the chart It shows a label. When creating this code, I want you to check and take as a condition that the first new green candle is 50% larger, based on the last 3 red bearish candles and the last closed red candle, and item 3) and item 4) must meet the conditions at the same time, accordingly, blue close
Golden Cross & Death Cross Signal by BARIŞ MERAL🌟 Golden Cross Indicator - Created by Barış Meral 🌟
📅 Date: 2025
🔍 This indicator detects Golden Cross and Death Cross signals using exponential moving averages (EMAs).
When the fast MA crosses above the slow MA, a green upward triangle appears.
When the fast MA crosses below the slow MA, a red downward triangle appears.
🇹🇷 Golden Cross İndikatörü - Barış Meral tarafından oluşturuldu 🇹🇷
Bu indikatör, üstel hareketli ortalamaları (EMA) kullanarak Golden Cross ve Death Cross sinyallerini tespit eder.
Hızlı MA, yavaş MA'yı yukarı keserse yeşil yukarı üçgen, aşağı keserse kırmızı aşağı üçgen görünür.