ATR Momentum Pro### 🧠 **Purpose of the Script**
This indicator visualizes the **momentum of volatility** by calculating the difference between the current ATR (Average True Range) and its moving average. It helps detect periods when market volatility is accelerating or decelerating.
---
### ⚙️ **1. User Inputs**
```pinescript
atr_length = input.int(14, "ATR Period", minval=1, maxval=100)
ma_length = input.int(20, "MA Period", minval=1, maxval=50)
ma_type = input.string("SMA", "MA Type", options= )
```
* `atr_length`: Number of periods used to calculate ATR (default is 14).
* `ma_length`: Number of periods for smoothing the ATR.
* `ma_type`: Type of Moving Average to use for smoothing (SMA, EMA, RMA, or WMA).
---
### 📈 **2. Calculations**
```pinescript
atr = ta.atr(atr_length)
```
* Calculates the standard **ATR**, which measures market volatility using high, low, and close prices.
```pinescript
ma_value = switch ma_type
"SMA" => ta.sma(atr, ma_length)
"EMA" => ta.ema(atr, ma_length)
"RMA" => ta.rma(atr, ma_length)
"WMA" => ta.wma(atr, ma_length)
```
* Applies the selected Moving Average to the ATR to smooth it.
```pinescript
oscillator = atr - ma_value
```
* Calculates the **ATR Momentum Oscillator**:
* Positive values: volatility is increasing.
* Negative values: volatility is decreasing.
---
### 📊 **3. Oscillator Plot**
```pinescript
plot(oscillator, "ATR Momentum", color=color.new(color.blue, 0), style=plot.style_histogram)
```
* Plots the oscillator as a **blue histogram** in a separate pane below the chart.
---
### 🏷️ **4. Informational Label**
```pinescript
var label lbl = label.new(bar_index, na, "", style=label.style_label_center)
if barstate.islast
label.set_xy(lbl, bar_index, ta.highest(high, 10) )
label.set_text(lbl,
"ATR: " + str.tostring(atr, "#.##") +
" MA(" + str.tostring(ma_length) + "): " + str.tostring(ma_value, "#.##") +
" Momentum: " + str.tostring(oscillator, "#.##"))
label.set_color(lbl, oscillator > 0 ? color.green : color.red)
```
* Creates a **single label** that updates only on the **latest bar**.
* The label shows:
* Current ATR
* ATR moving average
* Momentum (difference between the two)
* Label color:
* **Green** if momentum > 0
* **Red** if momentum < 0
* The label is positioned just above the price (highest high of the last 10 bars, offset by 1 bar).
---
### ✅ **Use Case**
This indicator is useful for:
* Spotting increases or decreases in market volatility
* Confirming breakout strength
* Filtering trades based on volatility momentum
---
Would you like me to add **buy/sell signals** when the oscillator crosses above or below zero?
Indicatori e strategie
ORB Advanced Cloud Indicator & FIB's by TenAMTraderSummary: ORB Advanced Cloud Indicator with Alerts and Fibonacci Retracement Targets by TenAMTrader
This TradingView script is an advanced version of the Opening Range Breakout (ORB) indicator, enhanced with visual clouds and Fibonacci retracement/extension levels. It is designed to help traders identify key price levels and track price movements relative to those levels throughout the trading day. The script includes alert functionalities to notify traders when price crosses key levels and when Fibonacci levels are reached, which can serve as potential entry and exit targets.
Key Features:
Primary and Secondary Range Calculation:
The indicator calculates the primary range (defined by a start and end time) and optionally, a secondary range.
The primary range includes the highest and lowest prices during the designated time period, as well as the midpoint of this range.
The secondary range (if enabled) tracks another price range during a second time period, with its own high, low, and midpoint.
Visual Clouds:
The script draws colored clouds between the high, midpoint, and low of the opening range.
The upper cloud spans between the Opening High and Midpoint, while the lower cloud spans between the Midpoint and Opening Low.
Similarly, a second set of clouds can be drawn for the secondary range (if enabled).
Fibonacci Levels:
The script calculates Fibonacci retracement and extension levels based on the primary range (the difference between the Opening High and Opening Low).
Fibonacci levels can be used as entry and exit targets in a trading strategy, as these levels often act as potential support/resistance zones.
Fibonacci levels include standard values like -0.236, -0.382, -0.618, and positive extensions like 1.236, 1.618, etc.
Customizable Alerts:
Alerts can be set to trigger when:
The price crosses above the Opening High.
The price crosses below the Opening Low.
The price crosses the Opening Midpoint.
These alerts can help traders act quickly on important price movements relative to the opening range.
Customization Options:
The indicator allows users to adjust the time settings for both the primary and secondary ranges.
Custom colors can be set for the lines, clouds, and Fibonacci levels.
The visibility of each line and cloud can be toggled on or off, giving users flexibility in how the chart is displayed.
Fibonacci Levels Overview:
The script includes several Fibonacci retracement and extension levels:
Negative Retracements (e.g., -0.236, -0.382, -0.50, -0.618, etc.) are plotted below the Opening Low, and can act as potential support levels in a downtrend.
Positive Extensions (e.g., 1.236, 1.382, 1.618, 2.0, etc.) are plotted above the Opening High, and can act as potential resistance levels in an uptrend.
Fib levels can be used as entry and exit targets to capitalize on price reversals or breakouts.
Safety Warning:
This script is for educational and informational purposes only and is not intended as financial advice. While it provides valuable technical information about price ranges and Fibonacci levels, trading always involves risk. Users are encouraged to:
Paper trade or use a demo account before applying this indicator with real capital.
Use proper risk management strategies, including stop-loss orders, to protect against unexpected market movements.
Understand that no trading strategy, indicator, or tool can guarantee profits, and losses can occur.
Important: The creator, TenAMTrader, and TradingView are not responsible for any financial losses resulting from the use of this script. Always trade responsibly, and ensure you fully understand the risks involved in any trading strategy.
Max-IndicatorGold, Forex & Crypto Trading Indicator for TradingView – Automated, Powerful, Highly Customizable
Developed for modern traders on TradingView, this indicator is a comprehensive automated trading tool designed for Gold (XAUUSD), Forex, and Crypto markets, packed with advanced features:
🔹 Automatic Buy/Sell Signals
Detects precise trade entries based on price action and liquidity zones – ideal for both short-term and mid-term trading. Signals are clearly displayed directly on your TradingView chart.
🔹 Auto Stop Loss & Lot Size Calculation
Automatically calculates the optimal stop loss and accurate position size (lot) based on your risk settings, helping you manage risk professionally and effortlessly.
🔹 Automatic Liquidity Zone Detection
Scans and highlights liquidity areas on lower timeframes and on M15/M30, supporting smart money trading strategies.
🔹 Advanced Noise Filtering Mode for Higher Signal Accuracy
Applies customizable signal filtering methods, allowing users to fine-tune based on their trading style – including EMA conditions, candle body size, market structure, and more.
🔹 Automatically Draws Key Technical Elements:
Gap/FVG (Fair Value Gap)
Fractals
Trading Sessions
Killzones (high-probability trading timeframes)
...and many more powerful tools for price action and SMC-based analysis.
VWAP Anclado a Fecha//@version=5
indicator("Anchored VWAP (Custom Date)", overlay=true)
// === INPUT ===
// Select any specific date and time to anchor the VWAP
anchorDate = input.time(timestamp("2024-01-01 00:00 +0000"), title="Anchor Date")
// === VARIABLES ===
var float cumPV = na // cumulative price * volume
var float cumVol = na // cumulative volume
var float anchoredVWAP = na
// === VWAP CALCULATION ===
if (time >= anchorDate)
cumPV := na(cumPV) ? hlc3 * volume : cumPV + hlc3 * volume
cumVol := na(cumVol) ? volume : cumVol + volume
anchoredVWAP := cumPV / cumVol
// === PLOT ===
plot(anchoredVWAP, title="Anchored VWAP", color=color.blue, linewidth=2)
// Optional marker to show anchor start
plotshape(time == anchorDate ? close : na, title="Anchor Start", location=location.belowbar, color=color.red, style=shape.triangleup, size=size.small)
PeakPulse™ PremiumPeakPulse™ is an optimized signal indicator designed to detect price exhaustion zones with high accuracy.
It identifies potential tops and bottoms where the market is likely to reverse direction.
This tool:
Highlights price levels where momentum weakens
Generates precise reversal signals at extreme price regions
Combines multiple internal algorithms rather than relying on a single indicator
Displays clean visual signals directly on the chart
Does not include strategy or automation—purely signal-focused
🎯 Ideal for:
Scalpers, intraday traders, and swing traders
Traders looking for early signs of reversals or market turning points
Reducing noise and simplifying market structure recognition
✅ All logic and parameters are internally optimized. No user configuration is required.
🔒 The core formula is proprietary and fully hidden. Access is limited to invited users only.
Mingo Supreme Master AI vFinal 🌟 + Double Signal StatsMingo Supreme Master AI vFinal 🌟 + Double Signal Stats + Profit €
Overview:
Mingo Supreme Master AI vFinal is a next-generation smart trading toolkit for price action traders. It automatically detects high-probability Buy/Sell zones, tracks early reversal patterns, and provides visual entries, SL/TP levels, dashboard statistics, and backtestable alerts. Built for scalping, day trading, and swing strategies across Forex, Indices, Crypto, and Commodities.
🧠 Core Features
HTF Smart Zone Detection:
Automatically plots High Timeframe (HTF) demand and supply zones based on structure breaks.
Early Reversal Signal Detection:
Identifies powerful candle patterns with wick/body ratios, volume, and momentum filters. Scores each setup (1–10).
Double Signal Pattern Recognition (New):
Detects repeating entry patterns with a gap in between — a common professional strategy confirmation.
TP/SL Auto Projection:
Dynamically draws Take Profit and Stop Loss lines with labels, customizable in pips.
Bias Filter with EMA:
Avoid false signals using a 50 EMA-based directional bias.
Full Backtest Support:
Select any range ("Today", "Last 2 Weeks", "1 Month Ago", etc.) and the system will only calculate signals within that period.
Live Dashboard (Optional):
Shows win/loss stats
Total profit (€)
Double Buy/Sell counts
Win percentages
Configurable lot size to simulate realistic trade outcomes
📈 Alerts Included
🟢 Early Buy Signal
🔴 Early Sell Signal
✅ Confirmed Buy Zone Created
❌ Confirmed Sell Zone Created
🎯 TP/SL Levels Set
🛑 SL Triggered (Buy/Sell)
🔁 Double Signal Pattern Alerts
📊 All alerts are backtestable and customizable
⚙️ Settings & Customization
Sensitivity Controls: Adjust BOS/HTF pivots
Zone Display Options: Show/hide boxes, labels, only recent zones
Scoring Threshold: Minimum signal score filter (1–10)
Lot Size Input: Simulate earnings (e.g. €10/pip = lot size 1.0)
Dashboard On/Off Toggle
Date Range Filter: Choose Today or up to 6 months back
✅ Best For
Price Action Traders
Smart Money & Supply/Demand Traders
Scalpers, Intraday Traders, and Swing Traders
Anyone who wants auto-zones, TP/SL, and high-probability signal stats
Global ETF Capital FlowsThe Global ETF Capital Flows indicator is designed as a research and monitoring tool for identifying capital allocation trends across major global exchange-traded funds (ETFs). It provides standardized fund flow data for regional equity markets (including the United States, Europe, Asia, and Emerging Markets), as well as alternative asset classes such as bonds and gold.
Fund flows into and out of ETFs are increasingly recognized as a leading indicator of investor behavior, particularly in the context of tactical asset allocation and risk appetite (Ben-David et al., 2017). By tracking aggregated ETF flows, the script enables the user to detect shifts in global investment preferences, which may precede price action and influence broader macro trends (Bank of International Settlements, 2018). For example, consistent inflows into U.S. large-cap ETFs such as SPY or QQQ may signal heightened investor confidence in domestic equities, whereas rising flows into bond ETFs such as TLT may suggest a flight to safety or expectations of declining interest rates (Israeli et al., 2017).
The visualization aspect of the script uses standardized z-scores to represent cumulative flows over a specified period. This normalization allows users to compare fund flows across regions and asset classes on a relative basis, filtering out scale differences and allowing for more effective cross-market analysis. According to Coates and Herbert (2008), normalization techniques such as z-scores are crucial in behavioral finance research, as they help detect anomalies and emotional extremes in investor activity.
Practically, this indicator is suited for top-down macro analysis, sector rotation strategies, and confirmation of technical signals. For instance, significant positive deviations in the standardized flow data for European ETFs may support a bullish bias on regional equities, especially if corroborated by technical breakouts or improving economic indicators. Conversely, elevated inflows into gold ETFs may be interpreted as hedging behavior against geopolitical uncertainty or inflationary pressure, consistent with historical patterns of gold’s role as a safe haven (Baur and Lucey, 2010).
Additionally, the tool allows for visual alerts when flow anomalies exceed a user-defined threshold, thereby supporting more responsive and data-driven decision-making. This feature aligns with findings from the CFA Institute (2019), which emphasize the growing importance of alternative data and automated alert systems in modern portfolio management.
From a research perspective, the indicator facilitates empirical study into capital mobility, intermarket relationships, and ETF investor psychology. It offers real-time monitoring of region-specific investment flows, thus serving as a proxy for investor conviction, liquidity trends, and cross-border risk-on/risk-off sentiment. Several recent studies have demonstrated the predictive power of ETF flows on future returns and volatility, particularly during periods of market stress or structural dislocations (Madhavan, 2016; Pan and Zeng, 2019).
References
• Baur, D.G. and Lucey, B.M., 2010. Is gold a hedge or a safe haven? An analysis of stocks, bonds and gold. Financial Review, 45(2), pp.217-229.
• Ben-David, I., Franzoni, F. and Moussawi, R., 2017. Exchange-traded funds (ETFs). Annual Review of Financial Economics, 9, pp.169–189.
• Bank of International Settlements (BIS), 2018. ETFs – growing popularity, growing risks? BIS Quarterly Review, March 2018.
• CFA Institute, 2019. Investment Professional of the Future. Available at: www.cfainstitute.org .
• Coates, J.M. and Herbert, J., 2008. Endogenous steroids and financial risk taking on a London trading floor. Proceedings of the National Academy of Sciences, 105(16), pp.6167–6172.
• Israeli, D., Lee, C.M. and Sridharan, S.A., 2017. Is there a dark side to ETF trading? Evidence from corporate bond ETFs. SSRN Working Paper. Available at SSRN: ssrn.com
• Madhavan, A., 2016. Exchange-Traded Funds and the New Dynamics of Investing. Oxford University Press.
• Pan, K. and Zeng, Y., 2019. ETF Arbitrage Under Liquidity Mismatch. Journal of Finance, 74(6), pp.2731–2783.
Buy/Sell Signal Indicatorrength Calculation: The script checks how often the price has interacted with each support or resistance level within a certain look-back period (loopback). The more interactions, the stronger the support or resistance is considered.
Professional Multi-Indicator SystemDescription
Professional Multi-Indicator System merges several proven technical indicators into a single overlay, allowing you to monitor trend, momentum, volatility, and key price levels all at once. Below you’ll find why these components work together, default parameters, backtest results, usage recommendations, and important disclaimers.
1. Mashup Justification & Components
MACD: Detects trend direction and momentum shifts via fast/slow crossover and histogram analysis.
RSI: Filters overbought/oversold conditions and confirms momentum using a 50-level threshold.
Bollinger Bands: Captures volatility squeezes and band touches to signal potential breakouts or pullbacks.
Fibonacci Retracement: Automatically (or manually) draws key support/resistance levels at 23.6%, 38.2%, 50%, 61.8%, 78.6%, and 100%.
Combined Workflow:
Trend Confirmation (MACD + RSI)
Volatility Check (Bollinger Bands)
Level-Based Entries/Exits (Fibonacci)
This layered approach reduces false signals and increases overall reliability.
2. Default Settings
Account Size: $10,000 (example)
Commission: 0.1% per trade
Slippage: 0.05%
Test Instrument & Period: BTCUSDT 1H, Jan 1 2022 – Dec 31 2023
Risk per Trade: Maximum 5% of equity
Indicator Defaults:
MACD: 12 / 26 / 9 (optional confirmation)
RSI: 14 period, OB = 70, OS = 30 (optional confirmation)
Bollinger Bands: 20 period, ±2 σ (optional confirmation)
Fibonacci: 50 period, auto-trend detection on
Volume Filter: 20-period SMA, threshold = 1.5× average
Visuals: Modern labels, large icons, info table in top-right
3. Backtest Summary
Total Trades: 158
Win Rate: 58.2%
Average Risk/Reward: 1:1.6
Max Drawdown: 12.4%
Net Return: +24.7%
Note: Past performance does not guarantee future results. Adjust settings to your own instruments and timeframes.
4. How to Use
Add to Chart: Select “Professional Multi-Indicator System.”
Review Settings: Open Settings → Main, MACD, RSI, Bollinger, Volume, Fibonacci, Visuals.
Enable Confirmations: Turn on “confirmation” for each component to filter weak signals.
Wait for Strong Signal: Consider entries when signalStrength ≥ 3/5.
Manage Risk: Size positions ≤ 5% of your capital; factor in commission/slippage.
Exit Rules: Close on “Strong SELL” alert or your predefined stop-loss.
5. Warnings & Disclaimer
This indicator is for educational purposes only. Always apply your own analysis and risk management. Past performance is not indicative of future results. Update commission, slippage, and risk settings to match your trading environment.
Ticker DataThis script mostly for Pine coders but may be useful for regular users too.
I often find myself needing quick access to certain information about a ticker — like its full ticker name, mintick, last bar index and so on. Usually, I write a few lines of code just to display this info and check it.
Today I got tired of doing that manually, so I created a small script that shows the most essential data in one place. I also added a few extra fields that might be useful or interesting to regular users.
Description for regular users (from Pine Script Reference Manual)
tickerid - full ticker name
description - description for the current symbol
industry - the industry of the symbol. Example: "Internet Software/Services", "Packaged software", "Integrated Oil", "Motor Vehicles", etc.
country - the two-letter code of the country where the symbol is traded
sector - the sector of the symbol. Example: "Electronic Technology", "Technology services", "Energy Minerals", "Consumer Durables", etc.
session - session type (regular or extended)
timezone - timezone of the exchange of the chart
type - the type of market the symbol belongs to. Example: "stock", "fund", "index", "forex", "futures", "spread", "economic", "fundamental", "crypto".
volumetype - volume type of the current symbol.
mincontract - the smallest amount of the current symbol that can be traded
mintick - min tick value for the current symbol (the smallest increment between a symbol's price movements)
pointvalue - point value for the current symbol
pricescale - a whole number used to calculate mintick (usually (when minmove is 1), it shows the resolution — how many decimal places the price has. For example, a pricescale 100 means the price will have two decimal places - 1 / 100 = 0.01)
bar index - last bar index (if add 1 (because indexes starts from 0) it will shows how many bars available to you on the chart)
If you need some more information at table feel free to leave a comment.
X HL RangeOverview:
The X Range indicator is a multi-timeframe visualization tool designed to display the high and low price ranges of previous candles from higher timeframes (HTFs) directly on a lower timeframe chart. It helps traders identify significant price zones and potential support/resistance levels by visually representing the price range of up to three previous candles for each selected timeframe.
Key Features:
Multi-Timeframe Support: The indicator supports three configurable higher timeframes (default: 60 min, 15 min, 5 min) which can be independently toggled on or off.
Custom Candle Range Display: For each enabled timeframe, users can choose to display the range of the most recent 1, 2, or 3 completed candles.
Dynamic Box Drawing: Price ranges are highlighted using rectangular boxes that extend across the chart to show where the highs and lows of each selected HTF candle occurred.
Custom Styling: Each timeframe's boxes can be individually styled with user-defined background and border colors to suit visual preferences or chart themes.
Efficient Redrawing: Boxes update in real-time as new higher timeframe candles complete, and previous boxes are removed to prevent chart clutter.
Use Case:
This indicator is particularly useful for intraday traders who want to align entries and exits with higher timeframe levels. By visualizing previous HTF ranges on a lower timeframe chart, traders gain contextual awareness of where price is likely to react or consolidate, aiding in decision-making for breakouts, reversals, or trend continuation setups.
Opening Range Breakout Cloud Indicator by TenAMTraderOpening Range Breakout Cloud Indicator – by TenAMTrader
This indicator visually maps out the Opening Range of the trading day — the price high and low between a configurable start and end time (default: 9:30 AM–10:00 AM EST). It helps traders identify breakout levels, key intraday zones, and price behavior relative to the early range.
🔹 What It Shows:
Opening High, Low, and Midpoint lines for each day.
Clouds between the midpoint and high/low for visual clarity.
Optional Second Range (e.g., 9:30–9:45 AM) for more aggressive early signals.
Historical Ranges are preserved, allowing you to view previous days' levels on the chart.
Custom Alerts when price crosses the Opening High, Low, or Midpoint.
Full customization: colors, range times, and display toggles.
🔔 Use It For:
Spotting breakouts or rejections at key levels.
Finding early support/resistance zones.
Planning trades using intraday structure.
⚠️ Use this tool as part of a broader trading strategy. No indicator guarantees results — always trade at your own discretion.
Buy/Sell Signal Indicatorbuy sell signal that you can use then apply to chart and win, ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg
Profit Express Trading Reversal- Strateg Profit Express Trading Reversal $PXTR is based on the analysis of EURUSD market behavior and aims to trade opportunistically when a change in behavior is about to occur. This analysis involves the study of charts and key indicators which make it possible to effectively interpret the short-term transition from a market in range to a market on the verge of exploding upwards or downwards.
Size : 0,25 of capital
Stop loss : 5% equal to 18 Pips
Take profit : 100% equal to 3600 Pips
Withdraw : Each time capital graw up 10%
Hatim BAKZIZ
support band level 1📘 Support Band Level 1 – Fixed Timeframe EMAs
Description:
This indicator displays a dynamic support band composed of two exponential moving averages (EMA 21 and EMA 28) sourced from a fixed higher timeframe. The area between the EMAs is visually filled to make the zone more intuitive and easier to interpret.
The purpose of using a band instead of multiple moving averages is to reduce chart clutter and provide a clearer picture of potential support zones. Many overlapping EMAs can make analysis confusing, so this simplified structure helps maintain a clean and effective layout.
How to Use:
The blue band serves as a visual reference for potential dynamic support. In some cases, price revisits this area after moving above it. Observing how price behaves around this zone may assist in broader market analysis.
Disclaimer:
This indicator does not generate buy/sell signals and is not intended as financial advice. It is designed to support visual technical analysis. Always use your own judgment and apply proper risk management.
Market Cipher B Multi-TF Momentum FilteredMy new script signals when alignment in momentum is achieved at the same time in 4hr, 1hr and 12min only... I have seen that when momentum waves are deep in overbought or oversold territory (+- 53) and we have divergences many of time have explosion moves as LTF and HTF's are aligned...
Hope you enjoy it and let me know any thoughs...
[Pandora's Chambers] Liquidity Zones F[attr_rep] V1The Liquidity Zones F V1 indicator merges visual liquidity‐zone analysis with a mathematical model that quantifies opposing market forces. It scans a historical lookback window to compute average volume (avgVol), aggregates cumulative buy/sell volumes, detects significant wicks, and renders main and dotted lines plus background fills to show pressure at each price level. After constructing these graphic elements, it scores each signal (up to 130 points) and converts it into a percentage (0–100%) mapped onto a five‑domain polar scale:
0–50: Negative dominance
50–60: Initial equilibrium
60–75: Positive momentum build‑up
75–80: Decay of positive effect
80–100: Positive overextension with reversal potential
1. How It Works
Lookback & avgVol:
– Computes a simple moving average of volume over lookback bars.
cumBuy / cumSell:
– Adds volume to cumBuy when bar close > open; to cumSell when close < open.
Wick Detection:
– Flags bars whose wick length exceeds body length; records creation price, wickFactor, and volume.
Line Creation:
– For each strong wick, draws a solid “main” line and a dotted “secondary” line, with placeholder labels.
Scoring & Chance%:
– On each new bar, computes volume delta since creation, applies weighted scoring (wickFactor, volume ratio, proximity, leverage, imbalance) up to 130 points.
– Converts score to chancePerc (0–100%).
Style & Label Updates:
– ≥76%: dashed line; 50–76%: solid or dotted by classification; <50%: dotted “F_attr.”
– Labels show “F_rep …” or “F_attr X%.”
Magnet Lines:
– Identifies lowest bullish‐main price and highest bearish‐main price, computes midPrice and relative fraction, then calculates targetPrice A/B.
– Draws dotted magnet lines and labels “liquidity force (+)/(–)” beside price chart.
Background Fill:
– Fills area between midPrice and bullishTarget in bullish color; between midPrice and bearishTarget in bearish color.
2. Settings & Inputs
Parameter Default Description
lookback 200 Number of bars to calculate average and cumulative volumes.
offsetDot 0.0002 Vertical spacing between dotted lines.
ratioLineLength 8 Length (in bars) of the magnet line.
ratioLineOffset 8 Horizontal offset (bars) for magnet placement.
ratioLineWidth 1 Width of magnet lines (1–10).
bullish_line_color #00BCD4 Color for bullish main and dotted lines.
bearish_line_color #BA68C8 Color for bearish main and dotted lines.
Advanced Tweaks:
Adjust the number of dotted “grade” lines per wick or modify the scoring thresholds for custom classification.
3. Interpretation & Polar Scale
The x value (chancePerc) is interpreted across five polar domains for concise force balance reading:
0 ≤ x < 50: Selling dominance – consider exit or avoidance.
50 ≤ x < 60: Early balance – await confirmation.
60 ≤ x < 75: Rising buy pressure.
75 ≤ x < 80: Slowing bullish momentum.
80 ≤ x ≤ 100: Overextended bullish – watch for potential reversal.
Strike Price selection by GoldenJetThis script is designed to assist options traders in selecting appropriate strike prices based on the latest prices of two financial instruments. It retrieves the latest prices, rounds them to the nearest significant value, and calculates potential strike prices for both call and put options. The results are displayed in a customizable table, allowing traders to quickly see the relevant strike prices for their trading decisions.
The strike prices shown are In-The-Money (ITM), which helps options traders in several ways:
Saving from Theta Decay: On expiry day, ITM options experience less time decay (Theta), which can help preserve the option's value.
Capturing Good Points: ITM options have a higher Delta, meaning they move more in line with the underlying asset's price. This can help traders capture a good amount of points as the underlying asset's price changes.
In essence, this tool simplifies the process of determining strike prices, making it easier for traders to make informed decisions and potentially improve their trading outcomes.
GoldenJet - PDHLC🔍 Purpose:
It shows key levels from the previous trading day on your current chart. These levels are:
PDH = Previous Day High
PDL = Previous Day Low
PDC = Previous Day Close
📌 Main Features:
Draws Labels:
It adds labels on the chart showing:
PDH (Previous Day High)
PDL (Previous Day Low)
PDC (Previous Day Close)
Plots Lines:
It draws horizontal lines for PDH, PDL, and PDC on intraday charts only (not on 30-min, hourly, or higher timeframes).
✅ Use Case:
This helps traders identify important support/resistance zones from the previous day — useful for breakout, reversal, or scalping strategies.
JOEL - ATR WITH EMA INDICATORThis Indicator provides best BUY AND SELL for all index and stocks.
Colored VWAP:
Added VWAP calculation using ta.vwap(close).
Colored the VWAP line green when the price is above it and red when below it.
Plotted with a linewidth of 2 for visibility.
9 and 21 EMA:
Added inputs for 9-period and 21-period EMA lengths (default 9 and 21).
Calculated EMAs using ta.ema(close, length).
Plotted the 9 EMA in blue and 21 EMA in orange with a linewidth of 1.
EMA Crossover Signals:
Detected crossovers (9 EMA crossing above 21 EMA) and crossunders (9 EMA crossing below 21 EMA) using ta.crossover and ta.crossunder.
Plotted buy signals (blue triangles below bars) for crossovers and sell signals (orange triangles above bars) for crossunders.
CPR and support and resistance
CPR Inputs:
Added a checkbox show_cpr to toggle CPR display.
Added color inputs for Pivot, BC, TC, R1-R4, S1-S4, and tomorrow's CPR lines (Pivot, BC, TC).
CPR Calculations:
Used request.security to fetch daily high, low, and close for CPR calculations.
Calculated Pivot, BC, TC, R1-R4, and S1-S4 using standard CPR formulas.
For tomorrow's CPR, used the current day's data as a proxy (since exact future data isn't available).
Plotting:
Plotted CPR levels (Pivot, BC, TC, R1-R4, S1-S4) as dotted lines with user-defined colors when show_cpr is enabled.
Added labels for each level on the last confirmed bar.
Plotted tomorrow's CPR as short dotted lines extending 10 bars forward from the last bar, with labels.
Colors and Style:
Default colors: Pivot (yellow), BC/TC (blue), R1-R4 (red), S1-S4 (green), Tomorrow Pivot (orange), Tomorrow BC/TC (purple).
All lines are dotted (style=plot.style_dots for CPR, line.style_dotted for tomorrow's CPR).
Labels show price values with two decimal places.
Engulfing Logic Candle Consolidation
The "Engulfing Logic Candle Consolidation" indicator is designed to visualize price zones where multiple candlesticks are engulfing each other. When candles meet specific engulfing conditions, the script merges them into a single "virtual" range and displays it using semi-transparent boxes on the chart.
- Engulfing Range Logic : Automatically detects and consolidates groups of candles that are fully engulfed by others, forming clear structural zones.
- Multi-Session Time Highlights : Marks major trading sessions (Asia, Europe, U.S.) with customizable colors and visibility settings, helping traders identify time-based market rhythms.
The indicator uses two engulfing conditions to form virtual zones:
1、 Short-after-Long (right-side engulfing) : If the current candle is engulfed by the previous candle, a virtual box begins from that pair.
2、 Long-after-Short (left-side engulfing) : If the current candle engulfs one or more previous candles (looping backward), it triggers zone formation.
The zone grows as long as new candles are completely inside the range of prior ones. When engulfing ends, the range is boxed and preserved visually.
This tool is ideal for traders who focus on price structure. By consolidating engulfing candles into zones, it filters out noise and emphasizes meaningful price behavior. Works well when combined with trendlines, support/resistance, and volume indicators.
---
中文
<概述>
結合律 K 線整理指標用於視覺化市場中具有「吞噬行為」的價格結構。當多根 K 線出現互相包含的情況時,指標會將它們合併成一個虛擬區間,並以半透明區塊方式在圖表中標示出來。
<功能>
- 吞噬區間邏輯 :自動判斷多根 K 線是否符合「包容」邏輯,將其歸納為單一整理區。
- 多時區背景提示 :標示亞洲、歐洲、美國主要交易時段,並可自由設定顏色與開關,強化交易節奏感知。
<邏輯說明>
此指標使用兩種吞噬條件建立整理區:
短後長(右側包容) :若當前 K 線被前一根吞噬,將該兩根視為起點。
長後短(左側包容) :若當前 K 線吞噬一或多根前方 K 線,則回頭形成區間。
只要後續 K 線繼續落在區間內,就會不斷擴展。直到不再符合條件,該區間會被框選並視覺化標示。
<使用情境>
適合用於進行價格行為結構分析的交易者。它能簡化雜訊,聚焦在關鍵轉折與延續區。可與趨勢線、支撐壓力、成交量指標等搭配使用,提高 K 線策略的判讀效率。
seekho roj kamao 3 **Seekho Roj Kamao** is a powerful trend continuation indicator designed to enhance your trading strategy with precise entry and exit signals. It combines the strength of RSI, CMO, and MACD to identify momentum shifts, while ATR-based trailing stops help manage risk effectively. The indicator dynamically plots buy/sell signals on the chart, along with clearly labeled take profit and stop loss levels. Whether you're a beginner or an experienced trader, this tool offers a structured and disciplined approach to trading trends. Seekho Roj Kamao empowers you to make informed decisions and aim for consistent profits in volatile market conditions.