Indicadores de Banda
Bitcoin Market Dominance with Moving AveragesBitcoin Market Dominance with Moving Averages
This Pine Script indicator tracks Bitcoin market dominance by calculating the percentage of Bitcoin's market capitalization relative to the total cryptocurrency market cap.
Features:
✅ Real-time BTC Dominance Calculation: Displays the percentage of Bitcoin’s market share.
✅ Moving Averages: Includes two customizable moving averages for trend analysis.
✅ Visual Alerts: Background colors indicate different dominance levels:
Green: BTC dominance is above 50% (strong BTC market control).
Red: BTC dominance is below 40% (altcoins gaining strength).
Orange: BTC dominance is between 40%-50% (neutral zone).
This tool helps traders analyze Bitcoin’s influence on the crypto market and identify key dominance trends.
Bollinger Bands + Linear Regression + Bull Bear Power + MAEshal Bollinger Regression Line. Untuk Saham Dan Crypto.
Silahkan melihat Trend Weekly dan daily
EMA1250Findicator("EMA1250F", overlay=true)
ma_01_len = input.int(7, title='Ma 0', minval=1)
ema_01_len = input.int(10, title='Ema 1', minval=1)
ema_02_len = input.int(20, title='Ema 2', minval=1)
ema_03_len = input.int(50, title='Ema 3', minval=1)
ema_04_len = input.int(365, title='Ema 4', minval=1)
ema_src = input.source(close, title="Source")
My strategyThis strategy follows Kathy Lien’s scalping approach, utilizing the 20 EMA and MACD on the M5 timeframe.
- **Entry Conditions**: Enter a trade when the price crosses both the MACD and the 20 EMA, provided the crossover happens within a maximum of 5 candles.
- **Stop Loss**: Set at approximately 20 pips.
- **Trade Management**:
- When the price reaches 1R, close half of the position and move the stop loss to the entry point.
- Use a trailing stop, maintaining a 15-pip distance from the 20 EMA.
Kulahli - KLSIDynamic Price Levels & Trend Tracker
Description
This indicator focuses on identifying dynamically changing price levels and determining the trend direction.
Key Features:
Dynamic Level Calculation: Price levels are continuously recalculated in a way that is sensitive to market conditions.
Trend Indicator: Based on how long the price stays above or below a certain level, the indicator shows the trend direction (uptrend or downtrend).
Color Coding: Price levels and trend direction are coded with different colors for easy visual identification.
Customizable Sensitivity: Offers sensitivity settings to adjust how quickly the indicator reacts to price changes.
Alert Options: Can be configured to receive alerts when the price crosses a specific level or when the trend direction changes.
How to Use:
Disclaimer:
This indicator is for educational and informational purposes only and should not be considered financial advice.
Past performance is not indicative of future results.1
Use at your own risk.
Feel free to adjust this draft according to the specific features and functions of your indicator.
Volume Percentage//@version=5
indicator("Volume Percentage", overlay=false)
// Input for the length of the period to calculate average volume
length = input.int(20, title="Average Volume Length", minval=1)
// Calculate the average volume over the specified length
avg_volume = ta.sma(volume, length)
// Calculate the volume percentage
volume_percent = (volume / avg_volume) * 100
// Plot the volume percentage
plot(volume_percent, title="Volume %", color=color.blue, linewidth=2)
// Optional: Add a horizontal line for 100% (baseline)
hline(100, title="100% Baseline", color=color.gray, linestyle=hline.style_dotted)
// Display the volume percentage value on the chart
label_text = "Vol %: " + str.tostring(volume_percent, "#.##") + "%"
label.new(bar_index, volume_percent, label_text, style=label.style_label_down, color=color.blue, textcolor=color.white)
RSI + EMA + WMA + SMC + FVG + CVDdinhquoctuannobita Đây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn
Fibonacci Pivot Points & Previous D,W&M Highs/LowsIndicator Overview
This indicator combines Fibonacci Pivot Points with previous high and low levels for different timeframes (day, week, month). It plots these levels on the chart to provide traders with key support and resistance areas, making it easier to identify potential trading opportunities.
Features
Fibonacci Pivot Points:
The indicator calculates pivot points based on the high, low, and close prices.
Fibonacci levels are used to determine support (S1, S2, S3, S4, S5) and resistance (R1, R2, R3, R4, R5) levels.
Users can customize the Fibonacci levels for both support and resistance.
Previous Highs and Lows:
The indicator plots previous day, week, and month high and low levels.
Each of these lines can be customized in terms of visibility, color, and width.
This helps traders to see key historical levels that might act as support or resistance in the future.
Inputs and Customization:
Fibonacci Time Frame:
Users can select the timeframe for calculating the pivot points (Daily, Weekly, Monthly).
Fibonacci Levels:
Customizable input fields for each Fibonacci level (R1, R2, R3, R4, R5, S1, S2, S3, S4, S5).
Previous High/Low Lines:
Day Lines:
Options to show or hide previous day's high/low lines.
Customizable color and width for these lines.
Week Lines:
Options to show or hide previous week's high/low lines.
Customizable color and width for these lines.
Month Lines:
Options to show or hide previous month's high/low lines.
Customizable color and width for these lines.
Technical Calculations:
Fibonacci Pivot Points:
Calculated as:
pp = (High + Low + Close) / 3
S1 = pp - ((High - Low) * Fibonacci Level)
R1 = pp + ((High - Low) * Fibonacci Level)
Previous High/Low Levels:
Uses request.security to fetch previous high and low values for the selected timeframe.
Plotted using line.new to draw lines across the chart.
Plotting:
The indicator plots Fibonacci Pivot Points and previous high/low lines on the chart, using distinct colors for each level.
Customizable transparency and linewidths make it easier to visually interpret the levels.
This indicator is particularly useful for traders who rely on technical analysis to identify key support and resistance levels, offering a blend of historical data and Fibonacci-based predictions.
Feel free to ask if you have any specific questions or need further adjustments!
MH Strategy – Hull Moving Average-Based Trading StrategyThe MH Strategy is a TradingView strategy that leverages the Hull Moving Average (HullMA) to generate precise buy and sell signals. This strategy is designed to identify trend reversals and momentum shifts using a combination of weighted moving averages and HullMA-based calculations.
Key Features:
✅ Hull Moving Average-Based Signals – Uses a modified HullMA calculation to detect trend changes.
✅ Dynamic Support & Resistance – The strategy plots adaptive levels that act as dynamic entry and exit points.
✅ Trend-Based Entries & Exits – Generates long (buy) signals when the price moves above the calculated Hull retraction level and short (sell) signals when the price moves below it.
✅ Automated Trade Execution – Integrates with TradingView’s strategy function to open and close trades automatically based on signal conditions.
✅ Customizable Parameters – Allows users to adjust the HullMA period and price data source to optimize performance across different markets and timeframes.
How It Works:
HullMA Calculation: The strategy calculates a smoothed Hull Moving Average (HullMA) using a two-step weighted moving average method.
Trend Confirmation: The difference between the HullMA values helps determine trend direction and retraction levels.
Entry Conditions:
A buy signal is generated when the price is above the retraction level, and the previous price confirms the trend.
A sell signal is triggered when the price is below the retraction level with trend confirmation.
Exit Conditions:
The strategy closes long trades when the price drops below a threshold.
It closes short trades when the price rises above a set level.
Ideal Use Cases:
🔹 Swing & trend traders looking for momentum-based entries and exits.
🔹 Traders aiming for reduced lag compared to traditional moving averages.
🔹 Markets with strong price trends, such as forex, stocks, and crypto.
Try the MH Strategy and enhance your trading decisions with a refined HullMA-based trend detection system! 🚀
Oil Ardan 30/60Berikut adalah deskripsi skrip strategi trading oil untuk timeframe **30 menit (M30)** menggunakan **EMA, Stochastic RSI, MACD, ATR, dan Support & Resistance**:
### **1. Nama Skrip**
**Oil Trading Strategy M30**
### **2. Fungsi Utama**
- Mengidentifikasi tren utama dengan **EMA 200**
- Menentukan momentum entry menggunakan **Stochastic RSI & MACD**
- Mengatur **Stop Loss (SL) & Take Profit (TP)** berbasis **ATR**
- Menampilkan level **Support & Resistance** otomatis
- Menggunakan **Trailing Stop** untuk memaksimalkan profit
- Memberikan **notifikasi & alert** saat ada sinyal entry
### **3. Aturan Trading**
#### **BUY Entry**
✅ Harga di atas **EMA 200** (tren bullish)
✅ **Stochastic RSI** berada di area **oversold (<20)** dan mulai naik
✅ **MACD** histogram mulai meningkat (momentum bullish)
✅ Harga berada dekat **Support** yang kuat
✅ Konfirmasi tren pada **H1 atau H4** juga bullish
#### **SELL Entry**
✅ Harga di bawah **EMA 200** (tren bearish)
✅ **Stochastic RSI** berada di area **overbought (>80)** dan mulai turun
✅ **MACD** histogram mulai menurun (momentum bearish)
✅ Harga berada dekat **Resistance** yang kuat
✅ Konfirmasi tren pada **H1 atau H4** juga bearish
### **4. Stop Loss & Take Profit**
- **Stop Loss (SL)**: **1.5x ATR** dari harga entry
- **Take Profit (TP)**: **Minimal 1:2 risk/reward** atau di level **Support & Resistance**
- **Trailing Stop** aktif setelah profit +50 pips
### **5. Notifikasi & Alerts**
🔔 Notifikasi muncul saat **sinyal buy/sell** terjadi
🔔 Alert saat harga mendekati **SL atau TP**
🔔 Peringatan jika ada perubahan **tren utama**
### **6. Visualisasi Chart**
📌 **Panah Buy/Sell** saat ada sinyal entry
📌 **Label SL & TP** di setiap posisi
📌 **Garis Support & Resistance** otomatis
📌 Warna **background** berubah sesuai tren
SALAM PROFIT SERUYAN TRADING
Scalping Buy/Sell with Alerts & SL/TP📌 Overview
This is a scalping trading script for TradingView that:
✅ Identifies Buy & Sell signals using two Exponential Moving Averages (EMA).
✅ Calculates Stop-Loss (SL) and Take-Profit (TP) levels dynamically.
✅ Uses lines (line.new()) instead of plot() to display SL/TP.
✅ Includes alerts for Buy/Sell signals
Sholzy Algo buy Indicator Sholzy Algo Indicator using the 15min.
Indicator works best on XAUUSD, Use it in line with your primary trading analysis and strategy as it is only an advise. Be cautious of your account, plotting it on a 1:3 RR.
XAUUSD Reversal Indicator//@version=5
indicator("XAUUSD Reversal Indicator", overlay=true)
// Moving Averages
ma50 = ta.sma(close, 50)
ma100 = ta.sma(close, 100)
ma200 = ta.sma(close, 200)
// Support & Resistance (based on recent highs and lows)
lengthSR = 20
support = ta.lowest(low, lengthSR)
resistance = ta.highest(high, lengthSR)
// Volume-based Confirmation
volThreshold = ta.sma(volume, 20)
highVolume = volume > volThreshold
// Reversal Conditions
bullishReversal = ta.crossover(close, support) and close > ma50 and close > ma100 and close > ma200 and highVolume
bearishReversal = ta.crossunder(close, resistance) and close < ma50 and close < ma100 and close < ma200 and highVolume
// Highlight Reversal Zones
bgcolor(bullishReversal ? color.green : bearishReversal ? color.red : na, transp=80)
// Plot Support & Resistance Levels
p1 = plot(support, title="Support", color=color.blue, linewidth=2, style=plot.style_dotted)
p2 = plot(resistance, title="Resistance", color=color.orange, linewidth=2, style=plot.style_dotted)
// Alerts
alertcondition(bullishReversal, title="Bullish Reversal Alert", message="Bullish Reversal Detected on XAUUSD")
alertcondition(bearishReversal, title="Bearish Reversal Alert", message="Bearish Reversal Detected on XAUUSD")
// Labels for Reversals
label_offset = 20
if bullishReversal
label.new(bar_index, low - label_offset, "Bullish", color=color.green, textcolor=color.white, size=size.small, style=label.style_label_up)
if bearishReversal
label.new(bar_index, high + label_offset, "Bearish", color=color.red, textcolor=color.white, size=size.small, style=label.style_label_down)
XRP Buy/Sell Signals - Champion Strategy我们可以结合多种技术指标来制定一个综合策略。以下是一个Pine Script脚本示例,结合了移动平均线(MA)、相对强弱指数(RSI)、布林带(Bollinger Bands)和成交量来生成买入和卖出信号。
Price Action Strategy with 9, 15, 50 EMAs and VWAPPrice Action Strategy with 9, 15, 50 EMAs and VWAP
Ultimate Buy Sell Signal with Stoploss at Candle High/LowUltimate Buy Sell Signal with Stoploss at Candle High/Low
Ultimate SuperTrend KDE + OI + RSIYour indicator is fully functional, integrating:
• SuperTrend for market trend detection
• RSI Divergence for reversal signals
• Open Interest (OI) to detect institutional activity
• KDE-based Volume Spikes to identify high-probability breakout moves
Inside Bar + Pin Bar + Spinning Top + Volume & RSIجيد ه مناسبه رايعه يقوم الموشر بعرض الشموعه عند التشبع البيعي