relative strength vs QQQ including overbought and oversoldThis script combines relative strength and overbought and oversold. the mid point illustrates the stock strength vs overall market
Indikator dan strategi
RVOL Color-Coded VolumeRVOL Color-Coded Volume Indicator
This tool visualizes volume intensity through color-coded bars in a separate panel, making it easy to identify significant market moves driven by unusual volume.
Key Features:
- Displays volume bars with varying colors and intensities based on RVOL (Relative Volume)
- Shows a customizable moving average line for volume reference
- Includes alert conditions for different RVOL thresholds
Color System:
Blue shades (Bullish):
- Light: Normal volume (RVOL < 1)
- Medium: Above average volume
- Dark: Heavy buying volume
- Solid: Extreme volume surge
Pink shades (Bearish):
- Light: Normal volume (RVOL < 1)
- Medium: Increased selling
- Dark: Heavy selling
- Solid: Extreme selling pressure
Gray shades (Neutral):
- Used when opening and closing prices are equal
- Intensity varies with RVOL level
Additional Features:
- Dotted threshold lines for easy reference
- Background highlighting for extreme volume events
- Data window shows exact RVOL values
- Multiple alert conditions for volume thresholds
The indicator helps traders spot potential trend changes and momentum shifts by highlighting unusual volume patterns without interfering with price analysis.
Weekly Vertical LinesShows a verticle line every week to show me when the week ends. Nice and simple.
Bitcoin DCA Strategy ( CICIL BITCOIN ) - Khilman AhmadiSTRATEGY INI, MENSIMULASIKAN UNTUK CICIL BITCOIN SECARA DAILY PADA SAAT MARKET OPEN DAILY ,
Kenapa tidak ada transaksi ?
iyah karna disini kita hanya beli dan hold, jadi report summary nya bisa dilihat di tab- penguji strategi - kinerja,pada bagian hasil beli dan tahan - kita bisa melihat hasil berapa persen keuntungan / kerugian yg kita dapat.
masukan rentang data yang bakal di backtest.
usd per order
masukan modal ( isi 1000000 usd ) tergantung berapa order
masukan pyramid ( jumlah order bisa di isi 2000 ) - ini berarti 2000 hari ( dilebihin gpp )
Crypto Scanner IndicatorExplanation of Criteria
Highest High of 125 Days:
Compares the current closing price to the highest price in the last 125 days.
Triggers when the close equals the highest high (adjust to >= if you want to include closes above prior highs).
Volume Double the 125-Day Average:
Checks if the current volume is at least twice the average volume of the past 125 days.
RSI Below 70:
Uses the 14-period RSI to avoid overbought conditions (RSI < 70).
Ultimate Multi-Timeframe Indicator//@version=5
indicator("Ultimate Multi-Timeframe Indicator", overlay=true)
// EMA Ayarları
ema50 = ta.ema(close, 50)
ema200 = ta.ema(close, 200)
trendBullish = ta.crossover(ema50, ema200)
trendBearish = ta.crossunder(ema50, ema200)
// RSI Ayarları
rsi = ta.rsi(close, 14)
rsiOverbought = 70
rsiOversold = 30
rsiBullish = rsi < rsiOversold
rsiBearish = rsi > rsiOverbought
// MACD Ayarları
= ta.macd(close, 12, 26, 9)
macdBullish = ta.crossover(macdLine, signalLine)
macdBearish = ta.crossunder(macdLine, signalLine)
// Bollinger Bantları
bbBasis = ta.sma(close, 20)
bbUpper = bbBasis + ta.stdev(close, 20) * 2
bbLower = bbBasis - ta.stdev(close, 20) * 2
bbBreakout = close > bbUpper or close < bbLower
// Giriş & Çıkış Sinyalleri
buySignal = trendBullish and macdBullish and rsiBullish
sellSignal = trendBearish and macdBearish and rsiBearish
// Grafikte Gösterimler
plot(ema50, color=color.blue, title="EMA 50")
plot(ema200, color=color.red, title="EMA 200")
plot(bbUpper, color=color.green, title="Bollinger Upper")
plot(bbLower, color=color.green, title="Bollinger Lower")
plot(bbBasis, color=color.orange, title="Bollinger Basis")
// Alış & Satış İşaretleri
plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, title="BUY Signal", text="BUY")
plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, title="SELL Signal", text="SELL")
// Uyarılar
alertcondition(buySignal, title="BUY Alert", message="Strong Buy Signal")
alertcondition(sellSignal, title="SELL Alert", message="Strong Sell Signal")
// Al-Sat Sinyalleri için Etiketler
bgcolor(buySignal ? color.green : na, transp=90)
bgcolor(sellSignal ? color.red : na, transp=90)
NSE Index Strategy with Entry/Exit MarkersExplanation of the Code
Trend Filter (200 SMA):
The line trendSMA = ta.sma(close, smaPeriod) calculates the 200‑period simple moving average. By trading only when the current price is above this SMA (inUptrend = close > trendSMA), we aim to trade in the direction of the dominant trend.
RSI Entry Signal:
The RSI is calculated with rsiValue = ta.rsi(close, rsiPeriod). The script checks for an RSI crossover above the oversold threshold using ta.crossover(rsiValue, rsiOversold). This helps capture a potential reversal from a minor pullback in an uptrend.
ATR-Based Exits:
ATR is computed by atrValue = ta.atr(atrPeriod) and is used to set the stop loss and take profit levels:
Stop Loss: stopLossPrice = close - atrMultiplier * atrValue
Take Profit: takeProfitPrice = close + atrMultiplier * atrValue
This dynamic approach allows the exit levels to adjust according to the current market volatility.
Risk and Money Management:
The strategy uses a fixed percentage of equity (10% by default) for each trade. The built‑in commission parameter helps simulate real-world trading costs.
T3 with Adjustable BandsT3 with Adjustable Bands
The T3 with Adjustable Bands indicator is an advanced technical analysis tool designed to provide a smooth and responsive trend-following line, combined with customizable upper and lower bands. This indicator is based on the T3 moving average, developed by Tim Tillson, which is known for its low lag and ability to reduce noise in price data.
In addition to the T3 line, this script introduces two adjustable bands calculated by offsetting the T3 line by a user-defined number of pips. These bands can help traders identify potential overbought or oversold conditions, as well as areas of price consolidation or breakout.
________________________________________
Key Features
1. Dynamic T3 Line:
o The T3 line is calculated using recursive exponential moving averages (EMAs) for smooth and reliable trend detection.
o Optionally highlights upward movements in green and downward movements in red for better visual clarity.
2. Customizable Upper and Lower Bands:
o The upper and lower bands are offset by a user-defined pip value, allowing traders to adapt the indicator to different market conditions or trading strategies.
3. Fully Adjustable Parameters:
o Length: Control the sensitivity of the T3 line by adjusting the EMA length.
o Factor: Adjust the smoothing factor to fine-tune the responsiveness of the T3 line.
o Source: Choose the price source for calculations (e.g., close, open, high, low).
o Pip Adjustment: Set the pip value for the upper and lower bands to match your trading instrument and strategy.
4. Versatile Use Cases:
o Identify trends and trend reversals with the T3 line.
o Use the bands to spot price ranges, breakouts, and potential support/resistance levels.
o Combine with other indicators for confirmation signals.
________________________________________
How to Use
1. Trend Identification:
o Observe the T3 line for direction and color changes. Green indicates bullish momentum, while red indicates bearish momentum.
2. Support and Resistance:
o Use the upper and lower bands to identify key levels where price might reverse or consolidate.
3. Breakout Zones:
o Look for price breaks above the upper band or below the lower band for potential breakout opportunities.
________________________________________
Customization Options
• Length: Adjust the length of the EMA used to calculate the T3 line.
• Factor: Control the smoothing factor for the T3 calculation (ranges from 0 to 1).
• Highlight Movements: Enable or disable dynamic color highlighting for the T3 line.
• Source: Select the price source for the indicator.
• Pip Adjustment: Customize the offset for the upper and lower bands in pips.
________________________________________
Who Can Benefit from This Indicator?
• Trend Traders: Gain a clear view of the prevailing market trend with minimal lag.
• Range Traders: Use the bands to identify potential reversal zones or mean-reversion opportunities.
• Scalpers and Swing Traders: Customize the indicator for different timeframes and trading styles using adjustable parameters.
________________________________________
Disclaimer
This indicator is a technical analysis tool and should not be used as the sole basis for making trading decisions. Always combine it with other forms of analysis and risk management strategies. Past performance is not indicative of future results.
HMA+SwingsVery simple script plotting the Hull Moving average and the recent swing points.
First try, don't be harsh
XAU/USD Scalping Indicator📌 XAU/USD Scalping Indicator – High-Precision Buy/Sell Signals 🚀
💰 Best for Gold (XAU/USD) Scalping on 1M, 5M, and 15M Timeframes!
This indicator is designed for high-frequency scalping of XAU/USD (Gold) using a powerful combination of trend and momentum indicators.
✅ Features:
🔹 EMA (9 & 21) – Confirms the short-term trend.
🔹 RSI (14) – Filters out overbought/oversold conditions.
🔹 MACD Crossover – Confirms momentum shifts.
🔹 Buy & Sell Alerts – Signals for potential trade entries.
🔹 Clear Labels – BUY (Green) and SELL (Red) markers.
🛠️ How It Works:
📈 BUY Signal: When 9 EMA crosses above 21 EMA, RSI is above 30, and MACD is bullish.
📉 SELL Signal: When 9 EMA crosses below 21 EMA, RSI is below 70, and MACD is bearish.
⚡ Best Trading Sessions: London & New York sessions for high volatility.
🔥 Why Use This Indicator?
✅ Easy-to-Use: No complex settings, plug & play!
✅ Optimized for Scalping: Ideal for 1M, 5M, and 15M timeframes.
✅ Works on Gold & Other Forex Pairs!
✅ No Lagging Signals: Real-time alerts for quick decision-making.
🚀 How to Use This Indicator:
1️⃣ Add to TradingView and apply it to your XAU/USD chart.
2️⃣ Look for BUY/SELL signals with trend confirmation.
3️⃣ Combine with price action & support/resistance for best results.
4️⃣ Use during high-volume sessions (London/New York).
🏆 Ideal for:
✔️ Day Traders & Scalpers 📊
✔️ Gold (XAU/USD) Traders 🏆
✔️ Forex Scalping Enthusiasts 💰
✔️ Beginners & Experienced Traders 🔥
⚠️ Disclaimer: This indicator is for educational purposes only. Always backtest before using real capital. Risk management is essential! 🚨
💡 Like this indicator? Give it a thumbs up 👍 & leave a review!
📩 For custom modifications or alerts, let me know! 🚀🔥
欧元交易策略(自定义EMA/SMA参数)建议 SMA101 EMA12 EMA21 以下是该策略的详细文字说明:
//【参数与指标设置】
– 策略允许用户自定义三个主要参数:
• SMA Length:用于计算简单移动平均线(SMA);
• EMA Fast Period:用于计算快速指数移动平均线(EMA Fast);
• EMA Slow Period:用于计算慢速指数移动平均线(EMA Slow)。
– 根据这些参数分别计算出 SMA、EMA Fast 和 EMA Slow,并将它们绘制到图表上,便于观察价格与均线之间的关系。
//【入场条件】
– 做多(买入)条件包含两个触发方式:
a. 条件1:当收盘价高于SMA,同时EMA Fast向上穿越EMA Slow时,认为价格处于上行趋势,此时触发做多信号;
b. 条件2:当收盘价上穿SMA且前5根K线的最低价均高于各自时的SMA,说明近期价格一直处于SMA上方,亦触发做多信号。
– 做空(卖出)条件与做多相反:
a. 条件1:当收盘价低于SMA,同时EMA Fast向下穿越EMA Slow时,触发做空信号;
b. 条件2:当收盘价下穿SMA且前5根K线的最高价均低于各自时的SMA,也触发做空信号。
//【初始止损与止盈设置】
– 当策略满足入场条件且当前无持仓时,记录入场时的价格和当时的EMA Fast值。
– 计算初始止损时,采用“入场时EMA Fast价格与固定0.2%止损”中较大的差值作为止损百分比。
• 例如,对于做多来说,若入场价与EMA Fast之间的差距大于0.2%,则以该差距作为止损标准,否则采用0.2%;
– 初始止损价格计算为:
• 多头:入场价 × (1 – 止损百分比);
• 空头:入场价 × (1 + 止损百分比);
– 初始止盈目标设置为止损幅度的5倍(即止盈为止损的5倍)。
//【移动止损机制】
– 在持仓期间,策略持续追踪:
• 多头时记录持仓期间的最高价;
• 空头时记录持仓期间的最低价。
– 当持仓盈利达到0.8%时,启动移动止损机制:
• 对于多头,更新止损价格为持仓期间最高价的0.3%以下;同时重新计算止盈目标(仍保持止盈为更新后止损的5倍);
• 对于空头,更新止损价格为持仓期间最低价的0.3%上方,并相应调整止盈目标。
//【额外平仓条件】
– 无论是多头还是空头持仓,策略都会监控EMA Fast与EMA Slow之间的交叉:
• 如果持多仓时EMA Fast向下穿越EMA Slow,则立即平多;
• 如果持空仓时EMA Fast向上穿越EMA Slow,则立即平空。
– 这项条件有助于在趋势转变时及时退出,以降低风险。
总的来说,该策略通过灵活调节SMA和EMA参数来判断趋势和入场时机,并采用较为严格的止损/止盈设置和动态移动止损机制,以确保在获利的同时尽可能地锁定利润和控制风险。通过调整这些参数,用户可以回测不同的组合,寻找出对欧元交易效果最佳的策略。
sarch cloud EMA, MACD ve Bollinger Bantlarıema yukarıayken buy asagıdayken sell bollinger bantları asagıdayken buy yukarıdayken sell
Sessions by SHARKForex сесії для чого?
По перше трейдеру дуже просто формувати свій робочий час. Найкращі години для відкриття позицій це London KZ та New-York kz. Відходячи від того , що відбувалося в рамках кожної сесії можна вже створювати майбутній аналіз враховуючи контекст.
Ми повинні розуміти, що є конкретні години дня, які є найбільш/найменш волатильними , розуміння цього допоможе вам знати, коли ви хочете шукати налаштування а коли ні.
Торгівля не в рамках KZ - може приводити до пересиджування у позиції , тому що на маркеті зменшується кількість ліквідності , та за рахунок чого й зменшується волатильність.
FVG By SHARKImbalance (IMB/FVG/дисбаланс/не ефективність) - імпульсний рух ціни, який супроводжується відсутністю балансу між покупками і продажами, простими словами це дисбаланс котрий формує не ефективність.
Простими словами це сильний імпульс, де не було проторговано майже ніякого об’єму однієї з сторін (наприклад якщо імпульс бичий, то в такому випадку було мало об’єму від продавців). З’являється пустота/не ефективна зона, яку треба заповнити ліквідністю, що і робить маркет мейкер(алгоритм).
за допомогою цього індикатора ви можете полегшити свою роботу з неефективностями, тепер вони автоматично підсвічуватимуться на графіку
Multi-Timeframe Triple MA SuiteA versatile multi-timeframe indicator featuring three customizable moving averages. Perfect for trend analysis across different timeframes and trading strategies.
Key Features:
• 7 Moving Average Types for each line:
- EMA (Exponential Moving Average)
- SMA (Simple Moving Average)
- RMA (Rolling Moving Average)
- VWMA (Volume Weighted Moving Average)
- WMA (Weighted Moving Average)
- TEMA (Triple Exponential Moving Average)
- SMMA (Smoothed Moving Average)
• Independent settings for each MA:
- Customizable timeframe
- Adjustable period length
- Selectable data source (close, open, high, low, hl2, hlc3, ohlc4)
• Visual Features:
- Color-coded lines for easy identification
- Adjustable line thickness
- Clean and intuitive interface
Usage Examples:
1. Trend Following: Use different timeframe MAs to identify multi-timeframe trends
2. Support/Resistance: Use as dynamic support and resistance levels
3. Cross Strategy: Monitor crossovers between different MA types
4. Trend Strength: Compare MA alignment across timeframes
Perfect for:
• Day traders
• Swing traders
• Position traders
• Multi-timeframe analysis
• Custom trading strategies
This indicator combines flexibility with powerful analysis capabilities, allowing traders to adapt it to various trading styles and market conditions.
Triple MA & Volume Profile- Hiro ABCcombine triple ma and volume profile. Works well to see important levels. Works best with daily and weekly volume profile. MA will give you bias.
SHIVBHAGWAN BUY SIGNALPlot EMAs: Plot the 9 and 15 EMAs on the chart.
Candle Conditions: Identify candles that form on the EMA and are crossed by the next candle.
Buy Signal: Generate a "Buy" signal when the next candle crosses the previous candle.
Stop Loss: Use the previous candle's low as the stop loss and label it as "SL".
Target: Calculate the target as 2x the stop loss points and label it as "TGT".
EMA Buy SignalPlot EMAs: Plot the 9 and 15 EMAs on the chart.
Candle Conditions: Identify candles that form on the EMA and are crossed by the next candle.
Buy Signal: Generate a "Buy" signal when the next candle crosses the previous candle.
Stop Loss: Use the previous candle's low as the stop loss and label it as "SL".
Target: Calculate the target as 2x the stop loss points and label it as "TGT".