WMA cross with filtered Signals [Dr.K.C.Prakash]WMA cross with filtered Signals
📌 Description
This indicator is designed to generate trend-filtered Buy and Sell signals based on the crossover of two Weighted Moving Averages (WMAs), with confirmation from a long-term EMA trend filter.
It helps traders avoid false signals in choppy markets by trading only in the direction of the broader trend.
✅ Features
Fast WMA (?) and Slow WMA (?)
Core crossover logic for detecting local trend shifts.
EMA Trend Filter (?)
Confirms overall trend direction.
Buy signals only occur when price is above the EMA ? (uptrend).
Sell signals only occur when price is below the EMA ? (downtrend).
Signal Markers on Chart
BUY label below bar for valid bullish crossovers.
SELL label above bar for valid bearish crossunders.
EMA 200 Line
Clearly plotted to visualize the trend filter level.
Customizable Length Inputs
Users can adjust Fast WMA, Slow WMA, and EMA filter length.
Lines for both WMAs and the EMA trend filter.
Signal labels on valid Buy/Sell events.
✅ Use Cases
Trend-following traders who want cleaner entries.
Avoiding counter-trend signals.
Works on any timeframe (but EMA 200 is best for larger trend context).
Trend Analizi
CMF Hybrid Scalper (1m Optimized)CMF Hybrid SCALPER That measures the change of CMF and smoothen it with EMA. Gives green zone zero and vise versa
Moving Average ExponentialThis indicator plots 8 Exponential Moving Averages (EMAs) with customizable lengths: 20, 25, 30, 35, 40, 45, 50, and 55. It also includes optional smoothing using various moving average types (SMA, EMA, WMA, etc.) and an optional Bollinger Bands overlay based on the EMA. It helps identify trend direction, momentum, and potential reversal zones.
Close vs 50SMA % (Bars colored by 20SMA)This indicator plots the percentage difference between the Close price and the 50-period Simple Moving Average (SMA50), and colors each bar based on whether the Close is above or below the 20-period SMA (SMA20).
Intraday TWAP SimpleSlivKurs. This script implements a classic VWAP using ChatGPT (OpenAI). Purely a home project.
Daily Balance Point (Ray + Axis Price Only)This tool helps traders visually track the most important level of the day to plan smart trades based on price action, rejections, or breakouts from the balance point. By Fahad Malik FM Forex Academy ✅
Close Above Prev High / Below Prev LowIdentifies candles that close above the previous candle's high (bullish) and candles that close below the previous candle's low (bearish). Helps with decisions for entry and exit.
📈 Smart Alert System — EMA/MA/Volume/SMC AlertsHere's a detailed description of your custom TradingView **Pine Script v6**:
---
### 📌 **Title**: Smart Alert System — Webhook Ready (with EMA, MA, Volume, and SMC)
This script is designed to **monitor price behavior**, detect important **technical analysis events**, and **send real-time alerts via webhook to a Telegram bot**.
---
## 🔧 SETTINGS
| Setting | Description |
| ----------------------- | ------------------------------------------------------------------------------ |
| `volumeSpikeMultiplier` | Multiplier to determine a volume spike compared to the 20-bar average volume |
| `testAlert` | If `true`, sends a test alert when the indicator is first applied to the chart |
---
## 🔍 COMPONENT BREAKDOWN
### 1. **EMA & MA Calculations**
These indicators are calculated and plotted on the chart:
* **EMAs**: 13, 25, 30, 200 — used for trend and touch detection
* **MAs**: 100, 300 — used for break and retest detection
```pinescript
ema_13 = ta.ema(close, 13)
ema_200 = ta.ema(close, 200)
ma_100 = ta.sma(close, 100)
```
---
### 2. **📈 Volume Spike Detection**
* A volume spike is identified when the current bar's volume is **2x (default)** greater than the 20-period average.
* A red triangle is plotted above such candles.
* A **JSON alert** is triggered.
```pinescript
volSpike = volume > avgVol * volumeSpikeMultiplier
```
---
### 3. **📊 EMA Touch Alerts**
* The script checks if the current close is:
* Within 0.1% of an EMA value **OR**
* Has crossed above/below it.
* If so, it sends an alert with the EMA name.
```pinescript
touch(val, crossed) =>
math.abs(close - val) / val < 0.001 or crossed
```
---
### 4. **📉 MA Break and Retest Alerts**
* A **break** is when price falls **below** a moving average.
* A **retest** is when price climbs **above** the same average after breaking below.
```pinescript
breakBelow(ma) => close > ma and close < ma
```
---
### 5. 🧠 **SMC Alerts (Break of Structure \ & Change of Character \ )**
These follow **Smart Money Concepts (SMC)**. The script identifies:
* **BOS**: New higher high in uptrend or lower low in downtrend
* **CHOCH**: Opposite of trend, e.g. lower low in uptrend or higher high in downtrend
```pinescript
bos = (high > high ) and (low > low ) and (low > low )
choch = (low < low ) and (high < high ) and (high < high )
```
---
### 6. 🧪 Dummy Test Alert (1-time fire)
* Sends a `"✅ Test Alert Fired"` to verify setup
* Executes **once only** after adding the indicator
```pinescript
var bool sentTest = false
if testAlert and not sentTest
```
---
### 7. 🚀 Alert Delivery (Webhook JSON)
All alerts are sent as a JSON payload that looks like this:
```json
{
"pair": "BTCUSD",
"event": "🔺 Volume Spike",
"timeframe": "15",
"timestamp": "2024-06-29T12:00:00Z",
"volume": "654000"
}
```
This format makes it compatible with your **Telegram webhook server**.
---
### 🔔 Alerts You Can Create in TradingView
* Set **Webhook URL** to your `https://xxxx.ngrok-free.app/tradingview-webhook`
* Use alert condition: `"Any alert()`" — because all logic is internal.
* Select **"Webhook URL"** and leave the message body blank.
---
### 🛠️ Use Cases
* Notify yourself on **EMA interaction**
* Detect **trend shifts or retests**
* Spot **volume-based market interest**
* Get real-time **BOS/CHOCH alerts** for Smart Money strategies
* Alert through **Telegram using your Node.js webhook server**
---
Would you like me to break down the full Pine Script block-by-block as well?
Amavasya High Lows"This script plots Higher Highs and Lower Lows following each Amavasya trading date."
Historical Volatility with HV Average & High/Low TrendlinesHere's a detailed description of your Pine Script indicator:
---
### 📊 **Indicator Title**: Historical Volatility with HV Average & High/Low Trendlines
**Version**: Pine Script v5
**Purpose**:
This script visualizes market volatility using **Historical Volatility (HV)** and enhances analysis by:
* Showing a **moving average** of HV to identify volatility trends.
* Marking **high and low trendlines** to highlight extremes in volatility over a selected period.
---
### 🔧 **Inputs**:
1. **HV Length (`length`)**:
Controls how many bars are used to calculate Historical Volatility.
*(Default: 10)*
2. **Average Length (`avgLength`)**:
Number of bars used for calculating the moving average of HV.
*(Default: 20)*
3. **Trendline Lookback Period (`trendLookback`)**:
Number of bars to look back for calculating the highest and lowest values of HV.
*(Default: 100)*
---
### 📈 **Core Calculations**:
1. **Historical Volatility (`hv`)**:
$$
HV = 100 \times \text{stdev}\left(\ln\left(\frac{\text{close}}{\text{close} }\right), \text{length}\right) \times \sqrt{\frac{365}{\text{period}}}
$$
* Measures how much the stock price fluctuates.
* Adjusts annualization factor depending on whether it's intraday or daily.
2. **HV Moving Average (`hvAvg`)**:
A simple moving average (SMA) of HV over the selected `avgLength`.
3. **HV High & Low Trendlines**:
* `hvHigh`: Highest HV value over the last `trendLookback` bars.
* `hvLow`: Lowest HV value over the last `trendLookback` bars.
---
### 🖍️ **Visual Plots**:
* 🔵 **HV**: Blue line showing raw Historical Volatility.
* 🔴 **HV Average**: Red line (thicker) indicating smoothed HV trend.
* 🟢 **HV High**: Green horizontal line marking volatility peaks.
* 🟠 **HV Low**: Orange horizontal line marking volatility lows.
---
### ✅ **Usage**:
* **High HV**: Indicates increased risk or potential breakout conditions.
* **Low HV**: Suggests consolidation or calm markets.
* **Cross of HV above Average**: May signal rising volatility (e.g., before breakout).
* **Touching High/Low Levels**: Helps identify volatility extremes and possible reversal zones.
---
Let me know if you’d like to add:
* Alerts when HV crosses its average.
* Shaded bands or histogram visualization.
* Bollinger Bands for HV.
Indicator สำหรับคนหำใหญ่This is the indictor made for Micky and friends who have big Hum. Asking for authorization please send pix to Micky for approval.
AI Smart Liquidity Signal BOT 🚀🔐 إشارات تداول ذكية مبنية على اختراقات السيولة الحقيقية + فلاتر دقيقة تؤكد الإشارات بفعالية.
✅ فلترة الاتجاه العام + الاتجاه الذكي
✅ تأكيد عبر UT BOT
✅ تأكيد عبر RSI و MACD
✅ مناطق دعم ومقاومة ديناميكية ومتعددة الفريمات
✅ أهداف Take Profit و Stop Loss محسوبة تلقائيًا عبر ATR
⛔️ بدون إعادة رسم – إشارات موثوقة ومجربة
🔎 نسبة دقة تفوق 95% على البيانات التاريخية مخصص للذهب بدقة عالية
💬 للحصول على صلاحية الاستخدام أو الدعم:
@GoldAIChannel
––––––––––––––––––––––––––––––––––––––––––––––––––
🚀 AI Smart Liquidity Signal
🔐 Real-time smart signals based on true liquidity breakouts with advanced filters.
✅ General + Smart Trend filters
✅ UT BOT
✅ RSI & MACD confirmation
✅ Dynamic and Multi-Timeframe Support/Resistance
✅ Auto-calculated Take Profit & Stop Loss via ATR
⛔️ No repaint – trusted & verified signals
🔎 Historical accuracy above 95% ( especially for gold )
💬 For access or support:
@GoldAIChannel
––––––––––––––––––––––––––––––––––––––––––––––––––
📌 ملاحظة / Disclaimer:
هذا المؤشر مخصص لأغراض تعليمية ولا يُعد نصيحة مالية. التداول على مسؤوليتك الخاصة.
This script is for educational purposes only and does not constitute financial advice. Trade at your own risk.
F&O Time Zones – Final Fixed📌 This indicator highlights high-probability intraday time zones used in Indian F&O (Futures & Options) strategies. Ideal for scalping, breakout setups, and trap avoidance.
🕒 Covered Time Zones:
• 9:15 – 9:21 AM → Flash Trades (first 1-minute volatility)
• 9:21 – 9:30 AM → Smart Money Trap (VWAP fakeouts)
• 9:30 – 9:50 AM → Fake Breakout Zone
• 9:50 – 10:15 AM → Institutional Entry Timing
• 10:15 – 10:45 AM → VWAP Range Scalps
• 10:45 – 11:15 AM → Second Trap Zone
• 11:15 – 1:00 PM → Trend Continuation Window
• 1:00 – 1:45 PM → Volatility Compression
• 1:45 – 2:15 PM → Institutional Exit Phase 1
• 2:15 – 2:45 PM → Trend Acceleration / Reversals
• 2:45 – 3:15 PM → Expiry Scalping Zone
• 3:15 – 3:30 PM → Dead Zone (square-off time)
🔧 Features:
✓ Clean vertical lines per zone
✓ Optional label positions (top or bottom)
✓ Adjustable line style, width, and color
🧠 Best used on: NIFTY, BANKNIFTY, FINNIFTY (5-min or lower)
---
🔒 **Disclaimer**:
This script is for **educational purposes only**. It is not financial advice. Trading involves risk. Please consult a professional or do your own research before taking any positions.
—
👤 Script by: **JoanJagan**
🛠️ Built in Pine Script v5
Cross-Exchange Open Interest[nakano]## Cross-Exchange Open Interest
This Pine Script® indicator aggregates **Open Interest (OI)** across multiple exchanges and trading pairs, displaying it as a single, easy-to-understand candlestick chart. OI represents the total number of outstanding derivative contracts and is a crucial metric for gauging market sentiment and liquidity.
このPine Script®インジケーターは、複数の取引所と複数の取引ペアにわたる**オープンインタレスト (OI)** を集計し、単一の分かりやすいローソク足チャートとして表示します。OIは未決済のデリバティブ契約の総数を表し、市場のセンチメントと流動性を測る重要な指標となります。
### Key Features
* **Cross-Exchange Aggregation:** Integrates OI data from several major exchanges (e.g., Binance, OKX, BitMEX, Kraken). You can configure up to 10 exchange slots.
* **クロス取引所集計:** 複数の主要な取引所 (例: Binance, OKX, BitMEX, Kraken) からのOIデータを統合します。最大10個の取引所スロットを設定できます。
* **Multi-Pair Support:** For each exchange, you can specify multiple trading pairs (e.g., `USDT.P`, `USD.P`) separated by commas, and their OIs will be summed up.
* **複数ペアサポート:** 各取引所に対し、カンマ区切りで複数の取引ペア(例: `USDT.P`, `USD.P`)を指定し、それらのOIを合計して表示できます。
* **Flexible Asset Settings:**
* **Chart Symbol:** Automatically aggregates OI for the base asset of the current chart (e.g., BTC if on a BTCUSDT chart).
* **Custom Asset:** Allows you to manually specify a base asset (e.g., ETH, SOL) for OI aggregation.
* **柔軟な資産設定:**
* **チャートシンボルに連動:** 現在表示しているチャートの基本資産(例: BTCUSDTチャートならBTC)のOIを自動的に集計します。
* **カスタム資産:** 特定の基本資産(例: ETH, SOL)のOIを手動で指定して集計することも可能です。
* **OI Candlestick Display:** Plots the aggregated OI data as candlesticks.
* **Up/Down Candles:** OI increases are shown as "up" candles, and decreases as "down" candles, with customizable colors.
* **OIローソク足表示:** 集計されたOIデータをローソク足としてプロットします。
* **陽線/陰線:** OIが増加した場合は陽線、減少した場合は陰線として表示され、色をカスタマイズできます。
* **Bar Coloring based on OI Change:** Features the ability to change the color of the main chart's price bars based on significant OI changes.
* **Dynamic Threshold:** Calculates a dynamic threshold based on historical OI changes and a user-defined multiplier to automatically identify "significant changes" in OI.
* **Color-coded:** Highlights the main chart's bars with customizable colors when there is a large increase or decrease in OI.
* **OI変化に基づくバーカラーリング:** メインチャートの価格バーの色を、OIの大きな変化に基づいて変更する機能があります。
* **動的閾値:** 過去のOI変化を基に動的な閾値を計算し、設定した乗数に応じてOIの「大きな変化」を自動で識別します。
* **色分け:** OIの大幅な増加または減少があった場合に、メインチャートのバーをカスタマイズ可能な色でハイライトします。
* **Debug Table (Optional):** When enabled, a debug table appears on the chart, showing raw OI data, quantity-based OI, and USD-converted OI for each exchange and pair in real-time, which helps in verifying the data.
* **デバッグテーブル (オプション):** 有効にすると、各取引所・ペアごとの生OIデータ、数量ベースのOI、USD換算OIをリアルタイムで表示するデバッグテーブルがチャート上に表示され、データの確認に役立ちます。
### How to Use
This indicator helps you understand the overall trend of open positions for a specific asset across the market. An increase in OI generally indicates an influx of capital and growing market interest, while a decrease suggests the opposite. By combining price movements with OI changes, you can gain deeper insights into bullish/bearish signals and the potential for trend continuation or reversal.
このインジケーターは、特定の資産に対する市場全体の未決済ポジションの動向を把握するのに役立ちます。OIの増加は通常、市場への資金流入と関心の高まりを示し、OIの減少はその逆を示唆します。価格変動とOIの変化を組み合わせることで、市場の強気・弱気の兆候や、トレンドの継続・反転の可能性をより深く分析することが可能です。
### Settings
* **OI Candle Settings:** Configure the colors for the up and down OI candles.
* **OIローソク足設定:** OIローソク足の陽線と陰線の色を設定します。
* **Asset & Exchange Settings:**
* **Asset Source:** Choose "Chart Symbol" to link to the current chart's symbol, or "Custom" to specify the asset in "Base Asset (Custom)".
* **Slot 1-10:** Enable/disable each exchange slot and set the exchange name and comma-separated trading pairs you wish to aggregate.
* **資産と取引所の設定:**
* **資産ソース:** 「Chart Symbol」を選択すると現在のチャートのシンボルに連動し、「Custom」を選択すると「Base Asset (Custom)」で指定した資産のOIを集計します。
* **スロット 1-10:** 各スロットで取引所を有効/無効にし、取引所名と、集計したい取引ペア(カンマ区切り)を設定します。
* **Bar Coloring on OI Change:**
* **Enable Bar Coloring:** Toggles whether the main chart's bars change color based on significant OI changes.
* **Threshold Calculation Period / Multiplier:** Sets the period and multiplier for dynamic threshold calculation.
* **OI Increase Color / OI Decrease Color:** Sets the colors applied to the main chart's bars for large OI increases/decreases.
* **OI変化に基づくバーカラーリング:**
* **バーカラーリングを有効にする:** OIの大きな変化に基づいてメインチャートのバーの色を変更するかどうかを切り替えます。
* **閾値計算期間 / 乗数:** 動的な閾値計算に使用する期間と乗数を設定します。
* **OI増加時の色 / OI減少時の色:** OIの大きな増加/減少があった場合にメインチャートのバーに適用される色を設定します。
* **Debug Table Settings:**
* **Show Debug Table:** Toggles the display of the debug table and sets its position.
* **Font Size / BG Color:** Configures the font size and background color for the debug table.
* **デバッグテーブル設定:**
* **デバッグテーブルを表示:** デバッグテーブルの表示/非表示を切り替え、表示位置を設定します。
* **フォントサイズ / 背景色:** デバッグテーブルのフォントサイズと背景色を設定します。
Non-Commercial Bias TrackerNon-Commercial Bias Tracker
Overview
The Non-Commercial Bias Tracker is a sophisticated sentiment analysis tool designed to provide traders with a clear view of the positioning of institutional speculators in the futures market. By analyzing the weekly Commitment of Traders (COT) report, this indicator helps you understand the underlying bias of large market participants for a wide range of assets, including forex, commodities, and indices.
The primary goal of this tool is to identify the prevailing trend in market sentiment and alert you to significant shifts in that trend, allowing you to align your strategy with the flow of institutional money.
Key Features
Dual Asset Analysis: Automatically detects the two assets in a trading pair (e.g., EUR and USD in EURUSD) or a single asset (e.g., GOLD) and displays their sentiment data side-by-side.
Comprehensive Data Table: A clean, customizable dashboard shows you the most critical sentiment metrics at a glance, including the current Net Position, the Change %, and the Overall Bias.
Visual Sentiment Plot: The indicator plots the primary sentiment metric and its signal line, giving you a visual representation of momentum and trend.
Clear Bias-Shift Signals: Green and red circles appear directly on the plot to highlight the exact moment the underlying sentiment momentum shifts, providing clear and timely signals.
How to Use the Indicator
Important Note: The Commitment of Traders data is released weekly. For the most accurate and meaningful signals, it is strongly recommended to use this indicator on the Weekly (W) chart timeframe.
1. The Data Table
The table in the corner of your screen is your main dashboard. Here’s what each row means:
Net Position: Shows the net difference between long (bullish) and short (bearish) contracts held by non-commercial traders. A positive number indicates a net long position; a negative number indicates a net short position.
Change %: This is the primary metric used for analysis, representing the net sentiment as a percentage.
Overall Bias: This is the final output of the indicator's analysis. It provides a clear "Long" or "Short" signal based on the current sentiment momentum. This cell is color-coded for quick interpretation (Green for Long, Red for Short).
2. The Chart Plots
Blue Line: Represents the current sentiment metric ("Change %" or "Net Position %").
Orange Line: Represents the signal line, or the average sentiment over a specific period.
Crossover Signals:
A Green Circle appears when the blue line crosses above the orange line, signaling a shift to a Long Bias.
A Red Circle appears when the blue line crosses below the orange line, signaling a shift to a Short Bias.
Settings & Customization
You can tailor the indicator to your specific needs via the Settings menu:
Data Source: Choose between "Futures Only" or the combined "Futures and Options" data.
Metric Type: Select whether to analyze the market using "Change %" (for momentum) or "Net Position %" (for conviction).
Bias Signal Line Length: Adjust the sensitivity of the crossover signals. A shorter length is faster, while a longer length provides smoother, more confirmed signals.
Style Settings: Customize the position of the data table and the color of the text to match your chart theme.
Disclaimer: This indicator is a tool for analysis and should not be considered as direct financial advice. All trading involves risk. Always use proper risk management and conduct your own due diligence before making any trading decisions.
FVGs Multi-Frame Optimized v1.0Description
FVGs Multi-Frame Optimized v1.0 This indicator detects and visualizes Fair Value Gaps (FVGs) across multiple timeframes (from 1 second to 1 day). It offers complete customization of imbalance visualization including:
Styles and colors for bullish/bearish FVGs
Labeling options
Mitigated zone management
Proximity controls to show/hide FVGs
Individual timeframe settings
User Manual:
1. Basic Setup :
Select which timeframes to display (1s to 1D)
Choose whether to hide lower/current timeframes
Adjust spacing between zones from different timeframes
2. Visual Styles :
Customize lines (solid, dashed, dotted)
Define colors for active and mitigated FVGs
Control line thickness
3. Advanced Options :
Enable/disable proximity filter
Configure FVG mitigation criteria
Limit maximum visible FVGs
EscobarTrades:- Session Opens/Box's)Marks out session opens for you, Shows you different sessions with color boxes
Support and ResistanceSupport and Resistance is a customizable indicator for TradingView that allows users to manually input and visualize multiple support and resistance levels and ranges directly on their charts. The script distinguishes between major and minor levels, supporting both single price lines and price ranges for each. Users can specify levels as major or minor, select line styles (solid, dashed, dotted), adjust colors and transparency, and choose whether to display price labels. Ranges are highlighted with shaded fills between two price levels, and all elements are dynamically managed to avoid clutter. This tool is designed to help traders quickly identify key price zones for decision-making, and all settings are accessible through the indicator’s input panel, making it flexible for any market or timeframe.
- Manually input unlimited support and resistance levels or ranges
- Highlight major vs. minor zones with different colors and styles
- Show or hide price labels for clarity
- Customizable appearance for lines and range fills
- Works on any asset and timeframe
This indicator does not provide trading signals or automate analysis; it is a visual aid for discretionary traders who want precise control over their chart annotations.
T4 Bkk OscillatorThis is mainly for private coaching group. The indicator takes in to account oscillation and volume on graph.