Bob Volman - Engulfing Pullback with Trend Filter [v6]Dãi ema có tín hiệu để vào lệnh và đi theo xu hướng
Indicators and strategies
OpeningRange (Trading_Tix)Purpose:
The indicator highlights the high, low, and middle (50%) price levels of a specified session's opening range. These levels can serve as key support and resistance zones for trading strategies. The indicator also offers options to extend these levels beyond the session into later timeframes, making it useful for tracking breakout or trend continuation setups.
Key Features:
1. Session Detection:
The indicator identifies a specific session period using the user-defined Session Time. It calculates the start time, high, and low prices during this period:
rangeTime: Defines the session time range (default: 5:00 PM to 2:59 AM).
extendTime: Defines the extended time range where lines/backgrounds can be prolonged.
2. Opening Range Calculation:
High (high_val) and Low (low_val)**:
Tracks the highest and lowest prices during the session.
Middle Line:
A midpoint is calculated by averaging high_val and low_val.
3. Visual Elements:
Horizontal Lines:
Drawn at the high, low, and middle levels.
Customizable in width and color.
Shaded Background Box:
Covers the range between high and low prices.
The box’s color and transparency can be adjusted.
Line and Box Extension:
Optionally extends these elements into the extended time range.
4. Customization:
Users have the flexibility to:
Toggle visibility of lines, middle line, and background box.
Adjust colors, line thickness, and style.
Enable or disable the extension of lines and backgrounds into the extended period.
How It Works:
Initialization:
The script initializes variables to store range data (startTime, high_val, low_val) and drawing objects (lines, boxes).
It detects whether the current bar falls within the session (inSession) or extended timeframe (inExtend).
Plotting:
During the session:
Deletes previous lines and boxes from prior sessions.
Draws new lines at the high, low, and middle levels.
Creates a background box covering the range, if enabled.
During the extended period:
Extends the session lines and box, if the user has opted for extensions.
Updates:
Continuously adjusts the high/low values and updates the lines as new price data arrives.
Use Cases:
This indicator can be valuable for traders who:
Use the opening range to identify potential breakout zones.
Trade based on price consolidation within the range.
Want a visual representation of key price levels to plan entries and exits.
Would you like help refining this script further or adjusting its settings to match your trading style?
BTC Daily DCA CalculatorThe BTC Daily DCA Calculator is an indicator that calculates how much Bitcoin (BTC) you would own today by investing a fixed dollar amount daily (Dollar-Cost Averaging) over a user-defined period. Simply input your start date, end date, and daily investment amount, and the indicator will display a table on the last candle showing your total BTC, total invested, portfolio value, and unrealized yield (in USD and percentage).
Features
Customizable Inputs: Set the start date, end date, and daily dollar amount to simulate your DCA strategy.
Results Table: Displays on the last candle (top-right of the chart) with:
Total BTC: The accumulated Bitcoin from daily purchases.
Total Invested ($): The total dollars invested.
Portfolio Value ($): The current value of your BTC holdings.
Unrealized Yield ($): Your profit/loss in USD.
Unrealized Yield (%): Your profit/loss as a percentage.
Visual Markers: Green triangles below the chart mark each daily investment.
Overlay on Chart: The table and markers appear directly on the BTCUSD price chart for easy reference.
Daily Timeframe: Designed for Daily (1D) charts to ensure accurate calculations.
How to Use
Add the Indicator: Apply the indicator to a BTCUSD chart (e.g., Coinbase:BTCUSD, Binance:BTCUSDT).
Set Daily Timeframe: Ensure your chart is on the Daily (1D) timeframe, or the script will display an error.
Configure Inputs: Open the indicator’s Settings > Inputs tab and set:
Start Date: When to begin the DCA strategy (e.g., 2024-01-01).
End Date: When to end the strategy (e.g., 2025-04-27 or earlier).
Daily Investment ($): The fixed dollar amount to invest daily (e.g., $100).
View Results: Scroll to the last candle in your date range to see the results table in the top-right corner of the chart. Green triangles below the bars indicate investment days.
Settings
Start Date: Choose the start date for your DCA strategy (default: 2024-01-01).
End Date: Choose the end date (default: 2025-04-27). Must be after the start date and within available chart data.
Daily Investment ($): Set the daily investment amount (default: $100). Minimum is $0.01.
Notes
Timeframe: The indicator requires a Daily (1D) chart. Other timeframes will trigger an error.
Data: Ensure your BTCUSD chart has historical data for the selected date range. Use reliable pairs like Coinbase:BTCUSD or Binance:BTCUSDT.
Limitations: Does not account for trading fees or slippage. Future dates (beyond the current date) will not display results.
Performance: Works best with historical data. Free TradingView accounts may have limited historical data; consider premium for longer ranges.
Relative Strength IndexRSI script that indicates whenever there is a crossover with RSI and the rsi ma
OneTrend EMAThis strategy uses exponential moving averages (EMA) to define market trend direction and employs a dynamic ATR-based threshold adjusted by a custom ADX calculation to generate bullish (blue) and bearish (pink) zones.
It enters long positions when the fast EMA exceeds the threshold (blue zone) and exits when it falls below the threshold (pink zone), providing clear, rule-based signals for trend-following trades.
Pros include adaptive thresholding that reflects market volatility and trend strength, while cons are potential lag in sideways or choppy markets and susceptibility to whipsaws in volatile conditions.
Arun - TimingSession Timing:
This script allows you to visualize key trading sessions (Asian, Frankfurt, London, and New York) by drawing boxes and lines around those time periods.
It has the ability to adjust the time range for each session using input variables. For example:
Asian Range: rangeTime = input.session(title='Session Time', defval='1700-0100')
Frankfurt: rangeTime0 = input.session(title='FRANKFURT', defval='0200-0301')
London: rangeTime4 = input.session(title='LONDON KZ', defval='0300-0500')
New York: rangeTime5 = input.session(title='NEWYORK KZ', defval='0800-1000')
Box Creation for Sessions:
The script creates boxes that highlight the high and low values of each session.
The boxes are drawn based on session time intervals and can be extended into the future (if extendLines is true).
You can also enable or disable the background color and middle line for the boxes.
Previous High/Low for Various Timeframes:
Previous Daily High/Low: Plots the high and low of the previous day.
Previous Weekly High/Low: Plots the high and low of the previous week.
Previous Monthly High/Low: Plots the high and low of the previous month.
These levels can be displayed on the chart with configurable colors and options.
MMM (Market Maker Movements) Levels:
The script allows you to plot "Market Maker Movements" (MMM), which are key levels that may act as support or resistance during specific times of the trading day. It includes:
mmm1Range = input.session(title='MMM', defval='0330-0331')
You can configure the color and style of the lines for these levels as well.
Daily Open:
The Daily Open is shown on the chart as a labeled point, so you can easily track the opening price of the day.
Dynamic Features:
Real-Time Adjustments: The script dynamically updates the lines and boxes when the session starts and ends. It can delete and redraw lines and boxes based on whether the session is active or extended.
Line/Box Styles: You can customize the appearance of the lines (solid, dotted, or dashed) and set the color of the session boxes and lines.
Background and Middle Lines: You can choose to display the background color of the session ranges and a middle line that divides the high and low of the session.
How It Works:
Boxes and Lines: For each session (like the Asian range), the script draws a box between the session’s high and low values. You can also draw vertical lines marking the start and end of the session. These are updated in real-time as new bars are formed.
Previous High/Low: The script plots the previous day's, week's, or month's high and low prices, helping traders identify important support and resistance levels from earlier time periods.
Market Maker Movements (MMM): These levels are drawn at specific times of the day based on your input and are often used by traders who believe that institutional players move the market at specific times.
User Input Options:
Show/Hide Options: You can enable or disable the display of various features like the daily open, previous daily/weekly highs, and the MMM levels.
Customization: You can set the colors, line styles, and the timeframes for each session and other levels.
Text Labels: The script supports labeling the session lines and high/low points, with customizable text color.
Example Visualization:
Asian Session Box: A box is drawn for the Asian session range (from 1700 to 0100), with the session’s high and low price points marked.
Previous High/Low: You would see circles or labels for the previous day's high and low.
MMM Lines: Horizontal lines or areas drawn at specific times based on the user input for the "Market Maker Movement".
Dirección de Sesión Diaria (Fija)This Script shows the daily direction the market may be heading to look for opportunities based on the direction marked. Currently I use this indicator to check the daily direction and it is very effective. if you are going to use this indicator go by the direction from 15m forward apart before using it do your own backtesting to adapt this indicator to your trading plans. any suggestions you can let me know to improve this script :)
RSI Divergence pro with Bollinger Band Full ControlRSI Divergence with MA9 & WMA45
Description:
This indicator identifies both regular and hidden RSI divergences based on pivot highs and lows of the RSI. It plots:
The RSI line, along with two optional moving averages:
SMA (MA9): for smoothing short-term RSI movements.
WMA (WMA45): for broader RSI trend detection.
It visually marks divergence signals directly on the RSI pane:
Bullish Divergence → "Bull" label
Hidden Bullish Divergence → "H Bull" label
Bearish Divergence → "Bear" label
Hidden Bearish Divergence → "H Bear" label
The indicator includes the following features:
Adjustable RSI period, source, and divergence lookback settings.
Optional display of MA9 and WMA45 on the RSI.
Customizable colors for bullish, bearish, hidden divergence signals.
Overbought and oversold zones are shown at 70 and 30, with a background fill for easy visualization.
Built-in alert conditions trigger notifications when divergences are detected.
This script is useful for traders looking to anticipate trend reversals by spotting RSI divergences in combination with moving average smoothing.
ORB-X v6 (Dashed OR Lines)// ORB-X v6 (Opening Range Breakout + Fibonacci Extensions) by Opskie
// Description:
// This indicator automatically captures the high and low of the first X minutes of the trading session
// and draws them as yellow dashed lines extending into the rest of the day. Alert conditions fire
// when price breaks above or below the opening-range high/low.
// User Inputs:
// • Session Start Hour/Minute: define when your market open begins
// • Range Length: how many minutes after open to form the opening range
//
// Key Benefits:
// • Immediate visual context for where price is trading relative to the opening range
// • Daily reset ensures each new session starts fresh
// • Built‑in alerts for breakout entries
Gold Key Levels 3290-3350This TradingView indicator plots dynamic key price levels between a customizable range (default: 3290–3350) in steps of 5.
Key features include:
Dynamic Range Control:
Set the start and end levels manually.
Adjust the gap (step) between each level.
Key Level Highlighting:
Levels ending with 00, 30, or 50 are automatically highlighted with a different color.
Other levels use the normal color.
Toggle Display:
A simple ON/OFF toggle to quickly show or hide all key levels without editing the script.
EMA 9 on 5-Minute Chart:
A 9-period Exponential Moving Average (EMA) is plotted, visible only on the 5-minute timeframe.
Alert Conditions:
Generates alerts when the price crosses above or below the EMA 9.
Professional Styling:
Infinite horizontal lines (fully extended across the chart).
Clean and simple structure without unnecessary multi-line formatting.
Quantum UT BOT by MrCryptoBTCQuantum UT BOT by MrCryptoBTC – Precision Signal Engine (Not For Sale - FREE)
How it Works:
The Quantum UT BOT is a smart, optimized version of the classic UT BOT indicator by Yo_adriiiiaan.
It has been meticulously modified by MrCryptoBTC with a Key Value of 0.5 and an ATR Period of 7, making it faster, more responsive, and more accurate in detecting market shifts.
The system uses Adaptive ATR-based triggers to generate Buy (LONG) and Sell (SHORT) signals with Exit points, helping traders catch trends earlier and lock in profits intelligently.
Description:
Quantum UT BOT is an evolution of the original UT BOT, now tuned for higher precision, faster entries, and smarter exits.
By adjusting the core parameters (Key Value 0.5, ATR Period 7), MrCryptoBTC has transformed the UT BOT into a next-generation signal engine suitable for scalpers, intraday, and swing traders.
The Buy and Sell signals generated by the Quantum UT BOT are clear, early, and reliable — offering a major advantage in volatile markets like Gold, Crypto, and Forex.
It is highly recommended to use the Quantum UT BOT together with the STO * Smart Trend Oscillator for a complete smart trading system, providing confirmation and trend filtering for maximum accuracy.
Main Features:
* Fast Buy/Sell Detection – reacts quickly to market changes
* Clear Exit Signals – helps secure profits and reduce drawdowns
* Smart Trend Filtering – ATR-adaptive for dynamic conditions
* Works on All Timeframes – from 1-minute scalping to daily swings
* Perfect Companion to STO * Smart Trend Oscillator
✅ Created by: MrCryptoBTC
✅ Perfect for: Scalpers, Intraday Traders, Swing Traders
✅ Markets: Gold, Crypto, Forex, Indices
Asia High/Low Break Alert (20:00-02:00 NY Time)An indicator that automaically alerts the Asia/Highs and Lows. Good for someone that wants to wake up in the middle of the night that wants to trade the Asia Sweep maximizing their sleep
Initial Imbalance [First FVG - ICT] v1Initial Imbalance v1
This indicator identifies the first Fair Value Gap (FVG) at the start of a user-defined session, inspired by The Inner Circle Trader. It helps traders spot initial imbalance in a sessions price action, offering filter options to refine FVG detection and optional session high/low lines for context.
Features:
Detects the first bullish or bearish FVG at the session start (default: 08:30). ISE: Sets a custom session start time (hour and minute).
Filters FVGs by size: None, ATR-based, or Points-based.
Displays session high/low lines (optional) to visualize the session range.
Customizable colors for bullish and bearish FVGs (background and border derived from a single color input).
Alerts for new FVGs and mitigated FVGs.
Settings:
Session Start Time: Define the hour and minute for the session start.
FVG Filter Type: Choose None, ATR, or Points to filter FVGs by size.
ATR Multiple / Minimum Points: Set the minimum FVG size for ATR or Points filters.
Show Session High/Low Lines: Toggle visibility of session range lines.
Bullish/Bearish FVG Colors: Customize colors for FVGs.
Technical Details:
Overlay indicator, displayed directly on the price chart.
This indicator is ideal for traders seeking to identify key price imbalances at the start of a session, with flexible filtering and visualization options.
Awesome EMASimple crossing EMA suited for smaller time frames. This is an updated of someone else's work, but I've had it for so long I cant fine the original author.
Prezzo + Velocità + AccelerazionePrice + Velocity + Acceleration (Cycle Centered Analysis)
Description:
🔥 This indicator provides an advanced analysis of the cyclical behavior of the market through the calculation of:
📈 Centered Moving Average (150 periods, equivalent to a 450-period cycle on the 15m timeframe, adapted to 45m),
🏎️ Velocity: the difference between two consecutive centered moving averages (measuring immediate movement strength),
⚡ Acceleration: the difference between moving averages of the velocity (measuring the change in force, i.e., cyclic acceleration),
🌟 Smoothed Acceleration Moving Average (amplified ×100 for better visualization).
✅ All calculations respect the exact centering of data (offset -length/2). ✅ No subjective interpretations: pure mathematical cycle analysis.
How to read it:
The green/red line = Instantaneous velocity.
The smoothed green/red line = Instantaneous acceleration.
The yellow line = Smoothed acceleration moving average ×100, showing important phase inversions.
Operational use:
Velocity color changes → possible short-term cycle turning points.
Acceleration reversals → confirmations of cycle trend changes.
📊 Best suited for intraday and swing trading (45-minute and daily timeframes).
📚 A powerful tool to study and forecast market cycles based on pure mathematics without subjective biases.
Rally Sweep Volume RSV w/ Bollinger Band Filter + Swing FilterRally Sweep Volume entry models using bollinger bands and Swing points as a filter.
Trading Session Levels | Data For TradersA clean price level marker for futures traders that markets the Tokyo, London and New York session open, high, low and close price levels.
Kevs RSI v2 - Divergence & Signals **Kevs RSI v2 - Divergence & Signals**
**Description:**
Kevs RSI v2 is an enhanced Relative Strength Index (RSI) indicator designed for traders who want more actionable insights from RSI behavior.
It combines a hybrid smoothing technique for a cleaner RSI line with intelligent divergence detection and automatic buy/sell signals.
Key features include:
- **Smoothed RSI** using a blend of WMA and EMA for a sharper, more responsive line.
- **Buy/Sell Signals** generated by oversold/overbought exits and confirmed divergence patterns.
- **Automatic Divergence Detection**, highlighting bullish and bearish divergences visually on the chart.
- **Customizable Settings** for RSI length, overbought/oversold levels, background fill, and divergence sensitivity.
This tool provides an excellent edge for traders who want to combine traditional RSI signals with modern divergence analysis.
---
# **How to Use:**
1. **Add to Chart:**
Apply "Kevs RSI v2 - Divergence & Signals" to your chart from the Indicators menu.
2. **Customize Settings (Optional):**
- Adjust the RSI Length, Overbought, and Oversold levels according to your trading style.
- Turn background fill on or off for better visibility.
- Modify the Divergence Lookback Period or Strength Threshold to fine-tune divergence sensitivity.
3. **Interpret Signals:**
- **Buy Signal:** A green "BUY" label appears when the RSI crosses back above the oversold zone or when bullish divergence is detected.
- **Sell Signal:** A red "SELL" label appears when the RSI crosses below the overbought zone or when bearish divergence is detected.
- **Bullish/Bearish Divergence:** Small green or red diamonds highlight divergence points with optional strength labels.
4. **Trade Responsibly:**
Combine these signals with your broader analysis (price action, trend structure, risk management) for best results.
---
**Notes:**
- Best used on 1-minute to daily charts.
- Ideal for day traders, swing traders, and crypto or forex traders looking to enhance entry/exit precision.
- Divergence detection is dynamic — lower the "Divergence Strength Threshold" to catch more divergences, or raise it to filter out weaker signals.
WhispererRealtimeVolumeLibrary "WhispererRealtimeVolume"
▮ Overview
The Whisperer Realtime Volume Library is a lightweight and reusable Pine Script® library designed for real-time volume analysis.
It calculates up, down, and neutral volumes dynamically, making it an essential tool for traders who want to gain deeper insights into market activity.
This library is a simplified and modular version of the original "Realtime Volume Bars w Market Buy/Sell/Neutral split & Mkt Delta" indicator by the_MarketWhisperer , tailored for integration into custom scripts.
How bars are classified
- Up Bars
If the current bar’s closing price is higher than the previous bar’s closing price, it is classified as an up bar.
Volume handling:
The increase in volume for this bar is added to the up volume.
This represents buying pressure.
- Down Bars
If the current bar’s closing price is lower than the previous bar’s closing price, it is classified as a down bar.
Volume handling:
The increase in volume for this bar is added to the down volume.
This represents selling pressure.
- Neutral Bars
If the current bar’s closing price is the same as the previous bar’s closing price, it is classified as a neutral bar.
Volume handling:
If neutral volume is enabled, the volume is added to the neutral volume.
If neutral volume is not enabled, the volume is assigned to the same direction as the previous bar (up or down). If the previous direction is unknown, it is added to the neutral volume.
▮ What to look for
Real-Time Volume Calculation : Analyze up, down, and neutral volumes in real-time based on price movements and bar volume.
Customizable Start Line : Add a visual reference line to your chart for better context by viewing the starting point of real-time bars.
Ease of Integration : Designed as a library for seamless use in other Pine Script® indicators or strategies.
▮ How to use
Example code:
//@version=6
indicator("Volume Realtime from Whisperer")
import andre_007/WhispererRealtimeVolume/4 as MW
MW.displayStartLine(startLineColor = color.gray, startLineWidth = 1, startLineStyle = line.style_dashed,
displayStartLine = true, y1=volume, y2=volume + 10)
= MW.mw_upDownVolumeRealtime(true)
plot(volume, style=plot.style_columns, color=color.gray)
plot(volumeUp, style=plot.style_columns, color=color.green)
plot(volumeDown, style=plot.style_columns, color=color.red)
plot(volumeNeutral, style=plot.style_columns, color=color.purple)
▮ Credits
This library is inspired by the original work of the_MarketWhisperer , whose "Realtime Volume Bars" indicator served as the foundation.
Link to original indicator :
RelativeValueLibrary "RelativeValue"
calcCumulativeSeries(source, anchor, adjustRealtime)
Calculates the cumulative sum of the `source` since the last bar where `anchor` was `true`.
Parameters:
source (float) : (series float) Source used for the calculation.
anchor (bool) : (series bool) The condition that triggers the reset of the calculation. The calculation
resets when `anchor` is `true`, and continues accumulating values since the previous reset
when `anchor` is `false`.
adjustRealtime (simple bool) : (simple bool) If `true`, estimates the cumulative value on unclosed bars based on the
data since the last `anchor` condition. Optional. The default is `false`.
Returns: (float) The cumulative sum of the `source`.
averageAtTime(source, length, anchor, isCumulative)
(Overload 1 of 2) Calculates the average `source` value over `length` periods, where the
values in the average are from each bar whose time offset from the start of its respective
period is closest to that of the current bar in the most recent period.
Parameters:
source (float) : (series float) Source used for the calculation.
length (simple int) : (simple int) The number of periods to use for the historical average calculation.
anchor (bool) : (series bool) The condition that triggers the onset of a new period. A new period starts
when `anchor` is `true`.
isCumulative (simple bool) : (simple bool) If `true`, calculates the average of cumulative `source` values in each
period at the current time offset. Optional. The default is `true`.
Returns: (float) The historical average of the `source` series at the current time offset.
averageAtTime(source, length, timeframe, isCumulative)
(Overload 2 of 2) Calculates the average `source` value over `length` periods, where the
values in the average are from each bar whose time offset from the start of its respective
period is closest to that of the current bar in the most recent period.
Parameters:
source (float) : (series float) Source used for the calculation.
length (simple int) : (simple int) The number of periods to use for the historical average calculation.
timeframe (simple string) : (series string) Specifies the size of each period in the average calculation. A new period
begins when a new bar opens on the specified timeframe.
isCumulative (simple bool) : (simple bool) If `true`, calculates the average of cumulative `source` values in each
period at the current time offset. Optional. The default is `true`.
Returns: (float) The historical average of the `source` series at the current time offset.
Ultimate Multi EMA🔹 Ultimate Multi EMA + HTF Bias Line
This script plots four customizable EMAs (8, 21, 50, 200) with flexible colors and line widths.
It also adds an automatic Higher Timeframe (HTF) EMA line:
On the Daily timeframe: shows the Weekly EMA.
On lower timeframes (like 1-minute): shows the Daily EMA.
The HTF EMA helps to easily identify market bias.
All colors and thicknesses can be adjusted in the settings.
Default settings:
EMA 8 (green)
EMA 21 (gold)
EMA 50 (blue)
EMA 200 (black)
HTF EMA (lilac)
Ultimate Multi EMA🔹 Ultimate Multi EMA + HTF Bias Line
This script plots four customizable EMAs (8, 21, 50, 200) with flexible colors and line widths.
It also adds an automatic Higher Timeframe (HTF) EMA line:
On the Daily timeframe: shows the Weekly EMA.
On lower timeframes (like 1-minute): shows the Daily EMA.
The HTF EMA helps to easily identify market bias.
All colors and thicknesses can be adjusted in the settings.
Default settings:
EMA 8 (green)
EMA 21 (gold)
EMA 50 (blue)
EMA 200 (black)
HTF EMA (lilac)