Price Down from Monthly High (%)//@version=5
indicator("Price Down from Monthly High (%)", overlay=true)
// Get the highest price of the current month
monthlyHigh = request.security(syminfo.tickerid, "M", high)
// Calculate the percentage price down from the monthly high
percentageDown = ((monthlyHigh - close) / monthlyHigh) * 100
// Plot the percentage down from the monthly high
plot(percentageDown, color=color.red, title="Percentage Down from Monthly High", linewidth=2)
インジケーターとストラテジー
Williams Percent Range123123123112312312312312非常牛12312312312312非常牛12312312312312非常牛12312312312312非常牛12312312312312非常牛12312312312312非常牛12312312312312非常牛2312非常牛
SAI SUBHASH BITRA (OD) OPEN DRIVEThis indicator identifies a specific opening price pattern based on a 5-minute chart. It analyzes the first candle of the new trading day relative to the previous day’s price levels and provides visual alerts for significant price movements.
Future Price Prediction with Buy/Sell Signals1.Technical Analysis: Analyzing historical price data and market trends using charts and indicators.
2.Fundamental Analysis: Evaluating the intrinsic value of an asset based on company financials, market conditions, and economic factors.
3.Machine Learning Models: Using algorithms like regression, neural networks, or time series forecasting to predict price movements.
4.Sentiment Analysis: Gauging market sentiment through social media, news, and other textual data to predict how future events might affect prices.
Arshia_setup(indecision_candle)hello
hail to Arshia_azizpur!
it is not a strategy!
this is an entering setup with amazing reward!
but you will lose a lot if not understanding it!
so Follow Trade city pro in youtube and tradingview!
or search for arshia candle in google.
EMA Crossover StrategyThis script calculates the 9, 21, and 50-period EMAs, plots them on the chart, and generates buy signals when the 9 EMA crosses above the 21 EMA while being above the 50 EMA, and sell signals when the 9 EMA crosses below the 21 EMA while being below the 50 EMA. You can customize the colors and styles as needed. ```pinescript //@version=5 indicator("EMA Crossover Strategy", overlay=true)
// Define the EMAs ema9 = ta.ema(close, 9) ema21 = ta.ema(close, 21) ema50 = ta.ema(close, 50)
// Plot the EMAs plot(ema9, color=color.blue, title="EMA 9") plot(ema21, color=color.red, title="EMA 21") plot(ema50, color=color.green, title="EMA 50")
// Define buy and sell conditions buySignal = ta.crossover(ema9, ema21) and ema9 > ema50 sellSignal = ta.crossunder(ema9, ema21) and ema9 < ema50
// Plot buy and sell signals plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, text="Buy") plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, text="Sell")
// Optional: Add alerts for buy and sell signals alertcondition(buySignal, title="Buy Alert", message="Buy Signal: EMA 9 crossed above EMA 21") alertcondition(sellSignal, title="Sell Alert", message="Sell Signal: EMA 9 crossed below EMA 21") pinescript //@version=5 indicator("EMA Crossover Strategy", overlay=true)
// Define the EMAs ema9 = ta.ema(close, 9) ema21 = ta.ema(close, 21) ema50 = ta.ema(close, 50)
// Plot the EMAs plot(ema9, color=color.blue, title="EMA 9") plot(ema21, color=color.red, title="EMA 21") plot(ema50, color=color.green, title="EMA 50")
// Define buy and sell conditions buySignal = ta.crossover(ema9, ema21) and ema9 > ema50 sellSignal = ta.crossunder(ema9, ema21) and ema9 < ema50
// Plot buy and sell signals plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, text="Buy") plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, text="Sell")
// Optional: Add alerts for buy and sell signals alertcondition(buySignal, title="Buy Alert", message="Buy Signal: EMA 9 crossed above EMA 21") alertcondition(sellSignal, title="Sell Alert", message="Sell Signal: EMA 9 crossed below EMA 21")
// Additional feature: Highlight the background during buy/sell signals bgcolor(buySignal ? color.new(color.green, 90) : na, title="Buy Background") bgcolor(sellSignal ? color.new(color.red, 90) : na, title="Sell Background")
21-Week EMA Across Timeframes21 Week EMA that auto adjusts across all timeframes to = 21 weeks. So even if you're on the daily chart, the indicator will still represent 21 weeks as opposed to 21 days.
21-Week EMA Across Timeframes21 Week EMA that auto adjusts across all timeframes to = 21 weeks. So even if you're on the daily chart, the indicator will still represent 21 weeks as opposed to 21 days.
5Bar SignalA 5 bar counting on the moving average indicator. It will show a sell signal if there are 5 bars closing below the moving average and a buy signal if there are 5 bars closing above the moving average
Stochastic MultiBandStochastic MultiBand is a standard Stochastic oscillator enhanced with a second set of upper and lower bands. This feature allows for more precise identification of overbought and oversold conditions. Easily customizable, it integrates seamlessly into your TradingView charts, providing clearer signals to support your trading decisions.
Swing Trading StrategyThis Swing Trading Strategy combines technical indicators and Fibonacci retracement levels to identify potential buy and sell opportunities in the market. It uses key tools like RSI, MACD, moving averages, and Fibonacci levels for precision and trend confirmation.
Key Indicators:
1. RSI (14): Identifies overbought (>70) and oversold (<30) conditions.
2. MACD: Detects momentum shifts with bullish or bearish crossovers.
3. Moving Averages: A short-term MA (50) and long-term MA (200) determine uptrends and downtrends.
4. Fibonacci Levels (0.382, 0.5, 0.618): Calculate dynamic support and resistance zones based on recent highs and lows.
Entry and Exit Conditions:
• Long Entry: In an uptrend, RSI < 30, MACD bullish crossover, and price within Fibonacci levels.
• Short Entry: In a downtrend, RSI > 70, MACD bearish crossover, and price within Fibonacci levels.
• Exits: Positions close if the trend reverses (via MACD) or RSI reaches extreme levels.
Visualization:
The strategy dynamically plots Fibonacci levels and moving averages for enhanced decision-making.
This strategy is ideal for swing traders, leveraging trend and momentum to identify profitable short- to medium-term opportunities.
Volume Trend Analysis ProKey Features of Volume Analysis Script
1. Volume Threshold Detection
Identifies significant volume spikes
Compares current volume against 20-period moving average
Configurable sensitivity for precise signal generation
2. Trend Confirmation Mechanisms
Uses short and long-term moving averages
Validates volume signals with price action
Reduces false positive trading signals
3. Advanced Visualization
Color-coded volume bars
Triangular buy/sell signal markers
Clear visual representation of volume dynamics
4. Risk Management Components
Customizable volume threshold
Deviation sensitivity adjustment
Built-in alert conditions for real-time monitoring
200-Week Weighted Moving Average (WMA)The 200-Week Weighted Moving Average (WMA) is a long-term technical indicator designed to smooth price data over the past 200 weeks while giving greater weight to recent price movements. Unlike the Simple Moving Average (SMA), which applies equal weight to all data points, the WMA emphasizes more recent prices, making it more responsive to current market trends.
Key Features:
Focus on Long-Term Trends:
Helps traders and investors identify the overall market direction over a long-term horizon (approximately four years).
Weighted Responsiveness:
Provides a more dynamic reflection of recent price activity compared to the 200-week SMA.
Support/Resistance Levels:
Often used to identify key levels of support or resistance in the market.
Breaks above or below the WMA may signal potential trend reversals.
Multi-Timeframe Usability:
Useful across different timeframes but specifically designed to work on weekly data for long-term analysis.
Application in Trading:
Bullish Indicator: When the price is above the 200-week WMA, it indicates a long-term uptrend.
Bearish Indicator: When the price is below the 200-week WMA, it suggests a long-term downtrend.
Reversal Signals: Crossovers or significant deviations from the WMA can act as triggers for potential trend changes.
This indicator is ideal for traders and investors focusing on macro trends, helping them make informed decisions about long-term market positions.
3% Interval LinesHow It Works:
Base Price Input: The script provides a text box to enter a base price.
3% Interval Calculation: It calculates 3% of the base price.
Lines Drawing: It draws lines above and below the base price at every 3% interval using a loop.
Customization:
You can change num_lines to increase or decrease the number of lines.
The colors and line styles can also be adjusted.
SMA: 21, 50, 100, 200 DaysThe SMA: 21, 50, 100, 200 Days indicator provides a comprehensive view of short-term, mid-term, and long-term trends by plotting the Simple Moving Averages (SMA) for 21, 50, 100, and 200 days. Each SMA represents the average closing price over the specified number of days, helping traders identify market trends, key support/resistance levels, and potential entry or exit points.
Key Features:
Multiple Time Horizons:
21-Day SMA: Tracks short-term trends and price momentum.
50-Day SMA: Commonly used for mid-term trend analysis and is a popular benchmark among traders.
100-Day SMA: Offers insights into intermediate-term trends.
200-Day SMA: Represents long-term trends and is a key level for institutional traders.
Trend Analysis:
Helps traders identify whether the market is bullish or bearish by observing the position of the price relative to the SMAs.
Dynamic Support/Resistance:
The SMAs often act as support or resistance levels. A price break above or below these lines can signal potential trend shifts.
Crossovers:
Crossovers between shorter and longer SMAs (e.g., 21-day crossing above the 50-day) can indicate bullish or bearish trend reversals.
Application in Trading:
Bullish Signal: Price consistently trading above the SMAs suggests upward momentum.
Bearish Signal: Price consistently trading below the SMAs indicates downward momentum.
Reversal Opportunities: Crossovers and price interactions with the SMAs can act as triggers for potential trade entries or exits.
This indicator is versatile and widely used across all timeframes, making it an essential tool for traders and investors aiming to understand market dynamics and identify key trading opportunities.Simple Moving Average for 21, 50, 100 and 200 Days
Sharp Price ChangesIdentify price points where there has been either a sharp drop or rise in price showing the price value and the % of the drop or rise
Cruzamiento de Medias con Toma de GananciasCondiciones de Compra:
Se ejecuta una compra cuando la media de 20 cruza hacia arriba la de 200.
Condiciones de Venta:
Se cierra la posición si:
El precio alcanza un 5% de ganancia (take_profit_percentage).
La media de 20 cruza hacia abajo la de 200.
EMA + RSI Conditionsema ket hop rsi de trade xu huong
ema 50
rsi 14
rsi qua ban thi ban
rsi qua mua thi mua
SINAL EMA/RSI/VOL + EMA com TimeframeMédias Moveis 9,14,21,200
Sinais RSI sobrecomprado e sobrevendido
Sinal candle dobro de Volume
Big Money by ChartedhighsThe "Big Money" indicator is designed to help traders easily identify significant price movements on their charts. This script visually highlights candles where the price change from open to close exceeds a user-defined threshold. It draws attention to these key moments, providing a clear indication of potential big-money moves in the market.
Dynamic Support and Resistance Pivot Strategy The Dynamic Support and Resistance Pivot Strategy is a flexible and adaptive tool designed to identify short-term support and resistance levels using the concept of price pivots.
### Key Elements of the Strategy
1. Pivot points as support and resistance levels
Pivots are significant turning points on the price chart, often marking local highs and lows where the price has reversed direction. A pivot high occurs when the price forms a local peak, while a pivot low occurs when the price forms a local trough. When a new pivot high is formed, it creates a resistance level. Conversely, when a new pivot low is formed, it creates a support level.
The strategy continuously updates these levels as new pivots are detected, ensuring they remain relevant to the current market conditions. By identifying these price levels, the strategy dynamically adjusts to market conditions, allowing it to adapt to both trending and ranging markets, since it has a long target and can perform reversal operations.
2. Entry Criteria
- Buy (Long): A long position is triggered when the price is near the support level and then crosses it from below to above. This suggests that the price has found support and may start moving upwards.
- Sell (Short): A short position is triggered when the price is near the resistance level and then crosses it from above to below. This indicates that the price may be reversing and moving downward.
3. Support/Resistance distance (%)
- This parameter establishes a percentage range around the identified support and resistance level. For example, if the Support Resistance Distance is 0.4% (default), the closing price must be within a range of 0.4% above support or below the resistance to be considered "close" and trigger a trade.
4. Exit criteria
- Take profit = 27 %
- Stop loss = 10 %
- Reversal if a new entry point is identified in the opposite direction
5. No Repainting
- The Dynamic Support and Resistance Pivot Strategy is not subject to repainting.
6. Position Sizing by Equity and risk management
- This strategy has a default configuration to operate with 35% of the equity. The stop loss is set to 10% from the entry price. This way, the strategy is putting at risk about 10% of 35% of equity, that is, around 3.5% of equity for each trade. The percentage of equity and stop loss can be adjusted by the user according to their risk management.
7. Backtest results
- This strategy was subjected to backtest and operations in replay mode on **1000000MOGUSDT.P**, with the inclusion of transaction fees at 0.12% and slipagge of 5 ticks, and the past results have shown consistent profitability. Past results are no guarantee of future results. The strategy's backtest results may even be due to overfitting with past data.
8. Chart Visualization
- Support and resistance levels are displayed as green (support) and red (resistance) lines.
- Pivot prices are displayed as green (pivot low) and red (pivot high) labels.
In this image above, the Support/Resistance distance (%) parameter was set to 0.8.
9. Default Configuration
Chart Timeframe: 1h
Pivot Lengh: 2
Support/Resistance distance (%): 0.4*
Stop Loss: 10 %
Take Profit: 27 %
* This parameter can alternatively be set to 0.8.
10. Alternative Configuration
Chart Timeframe: 20 min
Pivot Lengh: 4
Support/Resistance distance (%): 0.1
Stop Loss: 10 %
Take Profit: 25 %
BYBIT:1000000MOGUSDT.P