EMA Crossover with Price Signalsthis is when the 21-55 ema crossover is positive while the price has dropped below 55 ema then there is a buying opportunity, and vice versa.
指標和策略
Tick Value (Top-Center Fixed)this can be used by future traders some brokers and tradingview does not use tick value given by cme for some instruments , so this gives tick value which is used by tradingview chart
UNITED TRADING COMMUNITY WaterMarkWATER MARK indicator. Will allow you to improve the order of the entries you need on the chart.
1. Name and date for the traded instrument
2. Watermarks to protect your charts (in the center and around the perimeter of the chart)
3. The new "notes" option will allow you to keep focus on the factors that are important to you on the chart.
Very flexible settings for any notes, labels, watermarks on the chart that are important to you.
Индикатор WATER MARK . Даст возможность вам улучшить порядок нужных вам записей на графике.
1. Название и дата для торгуемого инструмента
2. Водные знаки для защиты ваших графиков ( в центре и по периметру графика)
3. Новая опция "заметки" позволит вам держать фокус на важных для вас факторах на графике.
Очень гибкая настройка , любых значимых для вас заметок , лейблов , вотермарк на графике.
SMC Strategy with RSISupport and Resistant Indicators using confirmations of SMC. Liquidity sweeps, FVG, Orderblocks, Choch/Bos.
Smart Pinbar Signal📌 Overview
This is a highly configurable and professional Pinbar Identifier, designed to provide reliable rejection signals for price action traders. Unlike traditional Pinbar indicators, this version combines structural precision with multiple optional filters to eliminate noise and highlight only the most meaningful reversal signals.
🔍 What It Does
This script identifies bullish and bearish pinbars based on the following core criteria:
Main Wick ≥ Body × multiplier
Opposite Wick ≤ % of total range
Body ≤ % of total range
Total Wick Length ≥ % of the full candle range
These rules capture the true rejection behavior behind price action instead of just relying on candle color or length.
⚙️ Optional Filters (All Toggleable)
To further refine the signals, this script provides advanced filtering options:
✅ Volume Filter
Filters out low-volume candles. Only signals with higher-than-average volume are shown.
✅ ATR Filter
Ensures the total candle range exceeds recent average volatility (ATR), avoiding weak or insignificant setups.
✅ MA Proximity Filter
Signals must occur near a chosen moving average (EMA/SMA), useful for identifying pullback reversals in trending markets.
✅ Candle Direction Check
Optional enforcement that bullish pinbars must close higher than open (green) and bearish must close lower (red).
📈 Use Cases
✅ Intraday reversal spotting (5min/15min/1H)
✅ Swing trading at key levels (Daily/4H)
✅ Backtestable as part of a trend-following or contrarian system
✅ Combine with support/resistance or OB/FVG zones for ICT-style execution
🛠️ Customizable Parameters
Wick/body ratios
Volume MA length
ATR length
MA type and length
Distance from MA (%)
Min wick-to-range ratio
Everything is modular and user-controlled.
✅ Why This Script?
Most Pinbar indicators are either too simplistic or hardcoded. This tool lets you:
Define your own Pinbar logic
Add context-aware filters
Stay flexible across different markets and strategies
ALGO Sniper[Trade Snipers]🔰 ALGO Sniper – Invite-Only Scalping Tool for Precise Trend Detection & Trade Management
ALGO Sniper is a precision-based trading tool designed specifically for scalpers and short-term trend traders. This invite-only script combines custom smoothed trend filtering, candle confirmation logic, and automated risk/reward management to deliver actionable trade signals backed by dynamic price movement behavior.
📌 How it Works:
📊 Custom Trend Filter:
1.The core of the script is a proprietary smoothing algorithm that processes the source price using a dynamic range filter. This filter adjusts based on volatility (ATR-based) and reacts only when the price deviates beyond a calculated threshold, reducing noise and fake-outs.
2. Uptrends and downtrends are tracked using a real-time counter that evaluates directional strength.
📍 Entry Signals (Buy/Sell):
1. Signals are confirmed only on candle close and trigger when there's a confirmed trend reversal.
2. The system avoids sideways market signals by detecting neutral zones using custom logic, helping traders avoid false entries in low-volume or range-bound markets.
🛡️ Stop-Loss Management:
1. Offers two options:
(1) Manual SL: Based on ATR (Average True Range) + custom offset.
(2)Auto SL: Randomized SL between 20–40 pips to simulate dynamic market protection in volatile environments.
2. Visual SL lines and labels are plotted for every entry to ensure transparency and easy tracking.
🎯 Take-Profit System:
1. Like SL, you can use either:
(1)Manual TP (user-defined pips).
(2)Auto TP: Randomized between 300–800 pips for variability.
2. When TP is hit, visual markers (BUY BOOK / SELL BOOK) are displayed instantly on the chart.
⚙️ Features:
1. Trend-filtered signals that reduce noise.
2. Dynamic SL/TP lines plotted directly on the chart.
3.Instant alerts for Buy, Sell, and Take-Profit events.
4. Designed for BTC, Gold, Nifty, Bank nifty, Forex, 1to 15-min chart, but customizable for other timeframes and assets.
5. High configurability: users can adjust SL/TP style, offset, and filter sensitivity.
🎯 Use Case:
This tool is ideal for traders looking for a non-repainting, price-reactive scalping system that avoids common lagging indicator flaws. With visual clarity and strict entry logic, ALGO Sniper enhances confidence and risk management in fast-moving markets.
Open Interest Top//@version=5
indicator("Open Interest Top", "OI Top", format = format.volume)
bool overwriteSymbolInput = input.bool(false, "Override symbol", inline = "Override symbol")
string tickerInput = input.symbol("", "", inline = "Override symbol")
string symbolOnly = syminfo.ticker(tickerInput)
string userSymbol = overwriteSymbolInput ? symbolOnly : syminfo.prefix + ":" + syminfo.ticker
string openInterestTicker = str.format("{0}_OI", userSymbol)
string timeframe = syminfo.type == "futures" and timeframe.isintraday ? "1D" : timeframe.period
= request.security(openInterestTicker, timeframe, [open, high, low, close, close > close ], ignore_invalid_symbol = true)
oiOpen := oiOpen ? oiOpen : na
oiHigh := oiHigh ? oiHigh : na
oiLow := oiLow ? oiLow : na
if barstate.islastconfirmedhistory and na(oiClose)
runtime.error(str.format("No Open Interest data found for the {0} symbol.", userSymbol))
hasOHLC = ta.cum(oiOpen)
color openInterestColor = oiColorCond ? color.teal : color.red
plot(hasOHLC ? na : oiClose, "Futures Open Interest", openInterestColor, style = plot.style_stepline, linewidth = 4)
plotcandle(oiOpen, oiHigh, oiLow, hasOHLC ? oiClose : na, "Crypto Open Interest", color = openInterestColor, wickcolor = openInterestColor, bordercolor = openInterestColor)
plot(oiClose)
Helen Trend RegimeGreatness starts from a tiny step forward.
This indicator combines EMA as a directional signal, BBWP as a volatility signal, and Volume Z-score as an volume signal to mark the market status: either in up trend, down trend, range, or in transition.
Horizontal ATR Lines – Last Candle OnlyThis indicator plots four horizontal lines based on the ATR (Average True Range) from the last closed candle of a user-selected timeframe. It helps traders visualize dynamic support and resistance zones relative to recent volatility.
What it does:
Calculates ±1x ATR and ±X ATR levels from the close of the most recently closed candle (e.g., Daily, 4H, etc.).
Draws four horizontal lines:
Close + 1x ATR
Close - 1x ATR
Close + X ATR
Close - X ATR
Each line includes a small label showing the multiplier and the exact price (e.g., "+1 ATR @ 4321.50").
Labels are positioned to the right side of each line for clarity.
Lines and labels update automatically once a new bar forms.
How to use it:
Use these dynamic levels as reference points for:
Volatility-based support/resistance
Entry/exit zones
Risk management
Set the ATR timeframe and multiplier values to match your strategy.
Inputs:
ATR length
Timeframe source for ATR and close
Two multipliers (e.g., 1x and 1.5x)
Custom colors for each ATR group
This tool is best suited for intraday, swing, or multi-timeframe analysis where volatility context is essential.
Trend Overview & Percent Change with Growth per DayThis indicator helps to indentify the growth over a period. I would recommend using it on daily charts and to screen performance of an asset.
TrendHunters BasicTrendHunters Signal Cloud
Designed exclusively for the TrendHunters community, this indicator supports our core trading strategy by providing clear, actionable trend reversal signals to help you visually identify momentum shifts and breakout opportunities.
Key features include:
High probability trend reversal indicator
Optional visual clouds that change color based on price positioning
Intuitive entry signals helping you spot high-probability buy and sell zones
Whether you’re a beginner or an experienced swing trader, this indicator offers a clean and reliable visual tool to enhance your decision-making process and stay aligned with the TrendHunters methodology.
ATS Net Volume EXPERT V5.0Professional-grade version, and it can index data from other cycles within the current cycle, allowing observation of the status of other cycles in a single chart.
This is a fully quantitative auxiliary chart indicator. Values above the zero line represent net inflow status and the magnitude of net inflow, while values below the zero line indicate net outflow status and the magnitude of net outflow. Changes in net volume often signal trend reversals and emerging opportunities. This fully quantitative indicator serves as a powerful tool to help you identify these critical signals. By precisely visualizing the dynamic changes in net volume, it provides clear insight into the battle between bullish and bearish forces.
专业级版本,并且可以在当前周期索引其他周期的数据,能在一个图表中观察其他周期所处的状态。
这是基于全量化的副图指标,零轴以上代表净流入状态和净流入的数值,零轴以下代表净流出状态和净流出的数值。净量的变化往往预示着趋势的转折与机遇的来临。这个全量化的指标正是帮助您捕捉这些关键信号的有力工具。通过精准呈现净量的动态变化,它让您清晰看到多空力量的博弈
Custom EMA Zone1. Overview
The Custom EMA Cloud Indicator is a technical analysis tool designed to visually display a dynamic zone (or cloud) between two user-defined EMAs. It supports different EMA lengths and allows users to calculate these EMAs using custom timeframes. This flexibility makes it a powerful tool for identifying trends, key price zones, and potential trade signals.
2. Components of the Indicator
2.1. Exponential Moving Averages (EMAs)
EMA 1 (Faster EMA): Calculated using a shorter period (e.g., 21).
EMA 2 (Slower EMA): Calculated using a longer period (e.g., 50).
Users can customize the periods for both EMAs.
2.2. Timeframe Customization
Each EMA can be calculated using a higher timeframe than the chart’s timeframe (e.g., calculate EMA 50 on a 1-hour chart while viewing on a 5-minute chart).
This feature allows users to incorporate higher timeframe trend context into lower timeframe charts.
2.3. Cloud Zone
The cloud is the shaded area between EMA 1 and EMA 2.
Color Logic:
Light Green: Price opens and closes above both EMAs (bullish momentum).
Light Red: Price opens and closes below both EMAs (bearish momentum).
3. How to Use the Indicator
3.1. Trend Identification
When the entire price action is above the cloud, it signals a probable uptrend.
When the entire price action is below the cloud, it indicates a probable downtrend.
When the price is inside the cloud, it reflects probable market consolidation or indecision.
4. Use Cases in Trading Styles
4.1. Scalping
Use short EMAs (e.g., EMA 5 and EMA 13) on 1-minute or 3-minute charts.
Ideal for quick entries and exits during strong momentum moves.
4.2. Swing Trading
Use longer EMAs (e.g., EMA 21 and EMA 50) on 4-hour or daily charts.
Helps capture trend continuation over multiple days.
4.3. Trend Following
Combine with RSI or MACD to confirm trend strength before entering trades.
Stay in the trade as long as price respects the cloud direction.
5. Advantages
Visual Clarity: Simplifies decision-making with clearly defined zones.
Multi-Timeframe Insight: Offers a higher timeframe trend reference.
Customizable: Fits various strategies through adjustable EMAs and timeframes.
6. Limitations
Lagging Nature: As with all moving averages, there may be lag during fast reversals.
False Signals in Sideways Markets: May produce whipsaws during consolidation
SSS (Smati Sati Swing) v0.2SSS (Smati Sati Swing) v0.2 – อินดิเคเตอร์เทรดสั้นที่ออกแบบมาเพื่อเทรดเดอร์ที่ต้องการ “สติ” บนความผันผวน
🔹 EMA89 + สีบอกเทรนด์แบบ Real-time
แสดงเส้น EMA89 พร้อมเปลี่ยนสีตามสถานะเทรนด์ เพื่อให้เข้าใจภาพรวมได้ชัดเจน
🔹 ปัก Label Candlestick พิเศษ (Doji / Hammer)
ช่วยระบุจุดกลับตัวหรือความลังเลของตลาดแบบอัตโนมัติ
🔹 แสดงกล่อง Session (Asia / London / USA)
วาดกล่องช่วงเวลา Session แบบ Real-time ไม่ต้องรอ Session จบ
เพื่อดูพฤติกรรมราคาตามเวลาที่มี Volume สูง
🔹 Dashboard Multi-Timeframe
ดูสถานะเทรนด์ (Uptrend / Sideway / Downtrend)
ของแต่ละ TF ได้ในที่เดียว – ครอบคลุม TF: 1m, 5m, 15m, 30m, 1h, 4h
🔹 แสดง Lot Size & Margin Size แนะนำ
เพียงกรอกขนาดพอร์ต ระบบจะแสดงคำแนะนำ
ถ้าเลือก "Crypto" จะคำนวณ Margin ประมาณ 5%
ถ้าเลือก "FX" จะคำนวณ Lot Size โดยอิงจากพอร์ต $10,000 = 1 Lot
สามารถเปิด/ปิดการแสดงผลได้ตามต้องการ
SSS (Smati Sati Swing) v0.2 – A short-term trading indicator that brings mindfulness to the chaos.
🔹 EMA89 + Real-time Trend Color
Displays EMA89 with color-coded logic to help you instantly see trend direction.
🔹 Special Candlestick Labels (Doji / Hammer)
Automatically highlights potential reversal or indecision candles.
🔹 Real-Time Session Boxes (Asia / London / USA)
Visually shows session ranges live as they form — no delay or waiting for session to end.
Perfect for spotting behavior during high-volume market hours.
🔹 Multi-Timeframe Trend Dashboard
Instantly check trend status (Uptrend / Sideway / Downtrend)
across multiple timeframes: 1m, 5m, 15m, 30m, 1h, 4h – all in one place.
🔹 Lot Size & Margin Size Suggestions
Enter your account size and the system will suggest:
For Crypto: estimated Margin (5% of your balance)
For FX: suggested Lot Size (based on $10,000 = 1 Lot)
Toggle display on/off as needed.
Twlv's CRT IndicatorHow It Works
The CRT Indicator operates by analyzing the size, structure, and relationship of candlesticks to uncover market dynamics. It follows the A-M-D (Accumulation-Manipulation-Distribution) framework:
Accumulation: Detects consolidation phases where price forms a range (often with inside bars).
Manipulation: Identifies false breakouts or “turtle soup” setups, where price sweeps a high/low but closes within the prior candle’s range.
Distribution: Signals the true market move, such as breakouts or reversals, confirmed by price action.
For example:
Bullish CRT Pattern: A bearish candle is followed by a candle that sweeps the low but closes higher within the first candle’s range, plotted with a green triangle to indicate a potential buy signal.
Bearish CRT Pattern: A bullish candle is followed by a candle that sweeps the high but closes lower within the first candle’s range, marked with a red triangle for a potential sell signal.
The indicator also supports customizable settings, such as timeframe selection, line styles, and alert conditions, to suit individual trading strategies.
Dual Candle Engulfing (Classic + Heikin Ashi) Indicators based on ris deviations and characteristic K-line patterns
Candlestick IdentifierThis indicator is useful for identifying 11 common candlestick patterns. Candlestick patterns shouldn't be used for entries on their own, but they are a great confluence to validate other trade ideas. Some values can be adjusted to change the indicator's sensitivity depending on how stringent you want the defining candlestick parameters to be.
EMA 8/16 Crossover Strategyema 8/16 cross strategy works well. if you want to change the ema values you can change in inputs
Candlestick Pattern SignalThe “Candlestick Pattern Signal” script is designed to automatically detect key candlestick patterns on lower timeframes and signal potential buy or sell opportunities. This tool is especially useful for traders who focus on lower timeframe chart analysis and want to capture quick reversal or continuation moves based on reliable candlestick formation.
Daily Close Horizontal LineDCHL by ELF
This script is useful for tracking important daily closing levels, which often act as support or resistance in technical analysis.
EMA Pullback Speed Strategy📌 **Overview**
The **EMA Pullback Speed Strategy** is a trend-following approach that combines **price momentum** and **Exponential Moving Averages (EMA)**.
It aims to identify high-probability entry points during brief pullbacks within ongoing uptrends or downtrends.
The strategy evaluates **speed of price movement**, **relative position to dynamic EMA**, and **candlestick patterns** to determine ideal timing for entries.
One of the key concepts is checking whether the price has **“not pulled back too much”**, helping focus only on situations where the trend is likely to continue.
⚠️ This strategy is designed for educational and research purposes only. It does not guarantee future profits.
🧭 **Purpose**
This strategy addresses the common issue of **"jumping in too late during trends and taking unnecessary losses."**
By waiting for a healthy pullback and confirming signs of **trend resumption**, traders can enter with greater confidence and reduce false entries.
🎯 **Strategy Objectives**
* Enter in the direction of the prevailing trend to increase win rate
* Filter out false signals using pullback depth, speed, and candlestick confirmations
* Predefine Take-Profit (TP) and Stop-Loss (SL) levels for safer, rule-based trading
✨ **Key Features**
* **Dynamic EMA**: Reacts faster when price moves quickly, slower when market is calm – adapting to current momentum
* **Pullback Filter**: Avoids trades when price pulls back too far (e.g., more than 5%), indicating a trend may be weakening
* **Speed Check**: Measures how strongly the price returns to the trend using candlestick body speed (open-to-close range in ticks)
📊 **Trading Rules**
**■ Long Entry Conditions:**
* Current price is above the dynamic EMA (indicating uptrend)
* Price has pulled back toward the EMA (a "buy the dip" situation)
* Pullback depth is within the threshold (not excessive)
* Candlesticks show consecutive bullish closes and break the previous high
* Price speed is strong (positive movement with momentum)
**■ Short Entry Conditions:**
* Current price is below the dynamic EMA (indicating downtrend)
* Price has pulled back up toward the EMA (a "sell the rally" setup)
* Pullback is within range (not too deep)
* Candlesticks show consecutive bearish closes and break the previous low
* Price speed is negative (downward momentum confirmed)
**■ Exit Conditions (TP/SL):**
* **Take-Profit (TP):** Fixed 1.5% target above/below entry price
* **Stop-Loss (SL):** Based on recent price volatility, calculated using ATR × 4
💰 **Risk Management Parameters**
* Symbol & Timeframe: BTCUSD on 1-hour chart (H1)
* Test Capital: \$3000 (simulated account)
* Commission: 0.02%
* Slippage: 2 ticks (minimal execution lag)
* Max risk per trade: 5% of account balance
* Backtest Period: Aug 30, 2023 – May 9, 2025
* Profit Factor (PF): 1.965 (Net profit ÷ Net loss, including spreads & fees)
⚙️ **Trading Parameters & Indicator Settings**
* Maximum EMA Length: 50
* Accelerator Multiplier: 3.0
* Pullback Threshold: 5.0%
* ATR Period: 14
* ATR Multiplier (SL distance): 4.0
* Fixed TP: 1.5%
* Short-term EMA: 21
* Long-term EMA: 50
* Long Speed Threshold: ≥ 1000.0 (ticks)
* Short Speed Threshold: ≤ -1000.0 (ticks)
⚠️Adjustments are based on BTCUSD.
⚠️Forex and other currency pairs require separate adjustments.
🔧 **Strategy Improvements & Uniqueness**
Unlike basic moving average crossovers or RSI triggers, this strategy emphasizes **"momentum-supported pullbacks"**.
By combining dynamic EMA, speed checks, and candlestick signals, it captures trades **as if surfing the wave of a trend.**
Its built-in filters help **avoid overextended pullbacks**, which often signal the trend is ending – making it more robust than traditional trend-following systems.
✅ **Summary**
The **EMA Pullback Speed Strategy** is easy to understand, rule-based, and highly reproducible – ideal for both beginners and intermediate traders.
Because it shows **clear visual entry/exit points** on the chart, it’s also a great tool for practicing discretionary trading decisions.
⚠️ Past performance is not a guarantee of future results.
Always respect your Stop-Loss levels and manage your position size according to your risk tolerance.
HTF/LTF High-Low Sweep Strategy + Breakouts + FVGThe HTF/LTF High-Low Sweep Strategy Breakouts + FVG is a comprehensive trading strategy designed to capture liquidity sweeps and breakouts while leveraging higher timeframe (HTF) and lower timeframe (LTF) structures. It also integrates Fair Value Gap (FVG) detention for enhanced precision.