Swing Breakout SequenceHere’s the translation to English:
---
**Structure and Variable Declarations**: The script uses the appropriate type structure in Pine Script for swing points and sequences. The use of `type`, `var`, and `array` is correct and should work in version 5, on which the script is based.
**User Functions**: All user functions have clearly defined parameters and return the appropriate types. The use of `array` and `chart.point` is fine, and the logic related to data processing appears to be coherent.
**Sequence Logic**: The functions `gatherInternalSBS` and `gatherSwingSBS` collect swing points and should correctly identify bullish/bearish patterns. It is important to ensure that thresholds and parameters are appropriately adjusted to market data.
**State Conditions**: Using `barstate.isconfirmed` as a condition for executing the script logic is a technique that ensures operations will only be performed on confirmed candles.
**Drawing Graphic Elements**: The script contains functions for drawing labels (`label.new`), lines (`line.new`), and boxes (`box.new`). It is important to check whether the conditions for their drawing are correct and do not lead to errors.
---
Corak carta
Livelli che terminano con 26 - Linee ContinueIt draws on the chart the 26 levels of the Golden setup
Volatility ContractionA very simple indicator which calculates the range of a definable period (the default is 5 bars) using a percentage range between the highest and lowest prices calculated from the candle bodies (i.e. open and close values). The plotted line makes it easy to see when price movement is tightening (volatility contraction). The dashed threshold line (default 10%) provides a reference point for setting alerts, helping to identify periods of low volatility (e.g. for stocks in your watchlist) that could signal upcoming market action.
Instant Engulfing Candle alert from YAVDThis indicator is created for Japanese candlestick charts, it marks bullish and bearish engulfing candles. Bearish engulfing candles change color to blue and bullish engulfing candles change color to yellow. The main difference of this indicator is that you can set a quick alert message that will notify you that the candle has closed engulfing. I created it for myself, maybe it will be useful to someone
London Session 15-min Range – Clean AEST Timestamp Fix (w/ EMAs)London Session 15-min Range – Clean AEST Timestamp Fix (with EMAs)
What it does:
This script is made for traders who want to track the high and low of the first 15-minute candle of the London session, using AEST (UTC+10) as the time reference. It also plots the 50 EMA and 200 EMA to help identify trend direction.
How it works:
Session Timing:
The London session is defined as starting at 6:00 PM AEST.
The session ends at 2:00 AM AEST the next day.
Detects the first 15 minutes of the London session:
During this time, it records the highest and lowest price.
Draws lines once the 15-minute window is over:
A red horizontal line is drawn at the session high.
A green horizontal line is drawn at the session low.
These lines extend 50 bars into the future.
It only draws these once per day/session.
Includes EMAs:
A 50-period EMA is calculated and plotted in yellow.
A 200-period EMA is calculated and plotted in white.
Why use it:
It helps visualise important price levels from the start of the London session and pairs that with moving averages to spot trends or potential breakouts.
Option Stop-Limit Calculator1. Indicator Overview
Purpose: Automates stop-loss calculations for call/put options by linking the underlying stock’s stop price to the option’s limit price using delta and a buffer percentage.
Key Features:
Plots a horizontal line for the stock’s stop price.
Displays real-time option limit prices in a table.
Supports alerts for stop triggers.
Complete Users Training Manual is embedded into the code of the indicator.
You may not use any portion of this code for monetization purposes.
The intent is to serve everyone in the community and hopefully make us all prosper.
Good Luck
DIR Pro (ʘ‿ʘ)ノMomentum System
Detection: Uses ta.barssince() to count consecutive closes above/below EMA25
Threshold: Requires ≥7 consecutive bars (momentum_length)
Output: Directional integer (-1/0/1) + duration count
Intensity Metric
pinescript
Copy
intensity = sum(last 3 bars' distance > historical reference) × 0.5
Comparison Window: Current vs momentum start period (3-bar rolling window)
Scaling: 0.5 points per confirmation (max 1.5)
Score Weighting
Copy
Total = (Base × 70%) + (Momentum × 20%) + (Intensity × 10%)
Base (70%): Long-term EMA25 positioning (144-period exponential decay)
Momentum (20%): Trend persistence confirmation
Intensity (10%): Short-term acceleration strength
Key Fixes Applied
NaN Protection: Added ternary checks (peso_total != 0 ?) in all metric calculations
Position Adjustment:
Horizontal: bar_index + 12 (moved 3cm right)
Vertical: high * 1.015 (moved 3cm up from price)
Metric Visibility: Explicit inclusion of AvgD/Body in Section A
Precision Formatting: #.0 format for 1-decimal consistency
Ichimoku CloudDetailed Description of the Pine Script Code for Ichimoku Indicator with Buy/Sell Signals
1. Indicator Declaration:
Uses Pine Script version 5.
Sets the title to "Enhanced Ichimoku Signals (Buy/Sell on Tenkan-sen)".
Displays the indicator directly on the price chart (overlay=true).
2. Ichimoku Parameter Settings:
Tenkan-sen (Conversion Line Length): Default period of 9.
Kijun-sen (Base Line Length): Default period of 26.
Senkou Span B (Leading Span B Length): Default period of 52.
Displacement (Lagging Span): Default period of 26.
3. Signal Display Settings:
Enables/disables Buy and Sell signals.
Allows customization of signal colors:
Buy Signal: Green upward arrow.
Sell Signal: Red downward arrow.
4. Ichimoku Component Calculations:
Donchian Channel: Computes the average between the highest and lowest prices over a defined period.
Tenkan-sen: Average of the highest and lowest prices over the last 9 periods.
Kijun-sen: Average of the highest and lowest prices over the last 26 periods.
Senkou Span A: Average of Tenkan-sen and Kijun-sen.
Senkou Span B: Average of the highest and lowest prices over the last 52 periods.
5. Plotting Ichimoku Lines:
Plots Tenkan-sen in blue.
Plots Kijun-sen in red.
6. Buy/Sell Signal Conditions:
Buy Signal:
Previous candle closed below Tenkan-sen.
Current candle closes above Tenkan-sen.
Sell Signal:
Previous candle’s high was above or equal to Tenkan-sen.
Current candle closes below Tenkan-sen.
7. Displaying Buy/Sell Signals:
Buy Signal: Green upward arrow appears below the candle when triggered.
Sell Signal: Red downward arrow appears above the candle when triggered.
Signal visibility is controlled by showBuySignals and showSellSignals settings.
8. Trade Alerts:
Alerts are generated when a Buy or Sell signal is triggered.
Notifications specify whether a candle closed above or below Tenkan-sen.
9. Error Handling with plot(na):
A dummy plot(na) ensures at least one plot function exists, preventing script errors.
Summary of Functionality:
Computes Ichimoku lines (Tenkan-sen, Kijun-sen, Senkou Span A, Senkou Span B).
Identifies Buy/Sell signals based on:
Candle’s closing position relative to Tenkan-sen.
Previous candle’s high/low position.
Plots Buy/Sell signals with customizable colors.
Triggers alerts for trade signals.
Opening Range BreakoutThis is an Opening Range Breakout script. It will plot the opening range high and low (green and red lines, respectively) as determined by the user input (default is a 15 min window from market open, 9:30 - 9:45 am). The time period for the breakout is also configured by a user input (default is from 9:45 am - 2:30 pm).
Alerts are sent for breakouts either above (bullish) or below (bearish) the opening range high and low. An EMA is also used for trend confirmation before sending alerts for breakouts (to avoid false signals).
A bullish breakout is determined by all of the following being true:
- The current price being above the opening range high (green line)
- The EMA trending up (ie the current value of the EMA > prior EMA value)
- The current price is > the EMA
- The EMA is > the opening range high
A bearish breakout is determined by all of the following being true:
- The current price being below the opening range low (red line)
- The EMA trending down (ie the current value of the EMA < prior EMA value)
- The current price is < the EMA
- the EMA is < the opening range low
Enjoy this simple indicator!
Optimized Trading Strategy v6my strategy is about support and demand, support and resistance timeframe m5 and m15
ForexFlex SMC IndicatorThe ForexFlex SMC Indicator is a Smart Money Concepts (SMC)-based TradingView script designed for traders using Break of Structure (BOS), Liquidity Sweeps, Fair Value Gaps (FVGs), and Fibonacci retracements to identify high-probability trading setups. It is specifically built for ForexFlex students, featuring manual licensing to restrict access.
GIGANEVA V6.6 PublicFib levels and Fib Fans from Top and Bottom of the "Range".
Plots are calculated on Log and Linear Scale.
It calculates Time pivots by fans crossing each other
It calculates Time pivots by fans crossing top and bottom of the "Range"
Golden pivots are 0.5 fan crossing log 0.5 or via versa
Selecting Bool Fib Right, expends them Right, no matter how you picked top or bottom (doesn't matter which you picked first.
Why is this code unique?
It incorporates all the fib functions together and it's coded to the max Plot capabilities Trading View allows.
Opening Range Box with Highs and LowsThis indicator is designed to use the Time-Based Range of the 9 am candle and the 3 pm candle
This indicator can be used as a zone to take a trade when the price closes bullish or bearish
Another secret is that when the lows or highs are swept, you can find an entry in the opposite direction.
sideways market for strangle📌 Description of "Sideways Market for Strangle" Script**
This **Pine Script** is designed to identify a **sideways market**, which is ideal for **option strangle strategies**. The script plots a **green signal** below the price chart when the market is in a low-volatility, non-trending phase.
---
🔹 How It Works**
1️⃣ **RSI Condition (Measures Market Momentum)**
- The script uses a **Relative Strength Index (RSI) with a length of 11**.
- If **RSI is between 40 and 60**, the market is neither overbought nor oversold, indicating a range-bound or sideways trend.
2️⃣ **ADX Condition (Checks Trend Strength)**
- The **Average Directional Index (ADX)** is used to measure trend strength.
- If **ADX is below 25**, it confirms a weak trend.
- Additionally, ADX must be **lower than both DI+ and DI-**, ensuring that there’s no strong bullish or bearish momentum.
3️⃣ **Signal Plotting**
- When both conditions are met (RSI between 40-60 and ADX < 25 with ADX < DI+ & DI-), a **green shape appears below the price chart**.
- This signal suggests that the market is in a **sideways phase**, making it suitable for **strangle or non-directional option strategies**.
---
🔹 Why Use This for a Strangle Strategy?**
- **Strangles perform best in a sideways market** where implied volatility is low.
- This indicator helps traders avoid **trending markets**, reducing risk.
- **Simple visualization** makes it easy to identify low-movement zones at a glance.
---
🔹 How to Use in TradingView**
1. **Add this script** as a custom indicator.
2. **Look for green signals** appearing below candles.
3. When the signal appears, consider setting up a **strangle options strategy**.
4. Avoid trading when the market shows **strong trends** (RSI out of range or ADX above 25).
---
🚀 Summary**
✅ **Detects sideways markets for strangle strategies**
✅ **Uses RSI (11) & ADX (14) for confirmation**
✅ **Filters out trending conditions**
✅ **Easy-to-use signal for option traders**
HB Inside BarThe indicator highlights inside bar patterns that can be used to identify price direction. This indicator supports alerts so that if you trade inside bars you can set an alert to be notified when one has formed.
Shaved Candle IdentifierThis script is different because it actually highlights the candle and is not just an icon. It will identify bars that have no wick. Each color represents a different type of candle.
Shaved candles represent major liquidity zones, and tend to get swept in the future.
Shaved candles are useful for spotting reversals and as price targets.
Green is when open = low
Red is when open = high
Blue is when close = high
Orange is when close = low
There is 0 tolerance for any deviation, if the price is 0.001 off, it will not be identified. Only absolutely shaved candles will be identified.
Custom Opening Range FillThis TradingView indicator visualizes a customizable opening range. Users define the start hour, minute (UTC), and range duration. It calculates the high and low prices within this period and fills the area between them on the chart. The range resets daily. This highlights a specific trading window, aiding in identifying potential breakout or breakdown levels. Traders can adjust the time parameters to analyze various market sessions or strategies. It's useful for those focusing on price action within a defined timeframe, simplifying the observation of key price levels.
EMAs Table: Price, 22 Cross, 50 Cross, and SlopesA basic EMA indicator that does a few checks:
1) Checks if the price is above the 22 EMA.
2) Checks if the 22 EMA is above the 50 EMA
3) Checks if the 50 EMA is above the 200 EMA.
4) Checks if the slopes for the EMA's are positive.
ZRK 30m This TradingView indicator draws alternating 30-minute boxes aligned precisely to real clock times (e.g., 10:00, 10:30, 11:00), helping traders visually segment intraday price action. It highlights every other 30-minute block with customizable colors, line styles, and opacity, allowing users to clearly differentiate between trading intervals. The boxes automatically adjust based on the chart’s timeframe, maintaining accuracy on 1-minute to 60-minute charts. Optional time labels can also be displayed for additional context. This tool is useful for identifying patterns, measuring volatility, or applying breakout strategies based on defined, consistent time windows across global trading sessions.
[COG]Adaptive Volatility Bands# Adaptive Volatility Bands (AVB) Indicator Guide for Traders
## Special Acknowledgment 🙌
This script is inspired by and builds upon the foundational work of **DonovanWall**, a respected contributor to the trading community. His innovative approach to adaptive indicators has been instrumental in developing this advanced trading tool.
## What is the Adaptive Volatility Bands Indicator?
The Adaptive Volatility Bands (AVB) is a sophisticated technical analysis tool designed to help traders understand market dynamics by creating dynamic, responsive price channels that adapt to changing market conditions. Unlike traditional static indicators, this script uses advanced mathematical techniques to create flexible bands that adjust to market volatility in real-time.
## Key Features and Inputs
### 1. Price and Filtering Options
- **Price Source**: Determines the base price used for calculations (default is HLC3 - Average of High, Low, and Close)
- **Filter Poles**: Controls the smoothness of the indicator (1-9 poles)
- Lower values: More responsive, more noise
- Higher values: Smoother, but slower to react
### 2. Volatility and Band Settings
- **Sample Length**: Determines how many bars are used to calculate volatility (default 144)
- **Volatility Multiplier**: Adjusts the width of the main bands (default 1.414)
- **Outer Band Multiplier**: Controls the width of the outer bands (default 2.5)
- **Inner Band Ratio**: Positions the inner bands between the center and outer bands (default 0.25)
### 3. Advanced Processing Options
- **Lag Reduction Mode**: Helps reduce indicator delay
- **Fast Response Mode**: Makes the indicator more responsive to recent price changes
### 4. Signal and Visualization Options
- **Show Entry Signals**: Displays buy and sell signals
- **Signal Display Style**: Choose between labels or shapes
- **Range Filter**: Adds an additional filter for signal validation
## How the Indicator Works
The Adaptive Volatility Bands create a dynamic price channel with three key components:
1. **Center Line**: Represents the core trend direction
2. **Inner Bands**: Closer to the center line
3. **Outer Bands**: Wider bands that show broader price potential
### Color Dynamics
- The indicator uses a smart color gradient system
- Colors change based on price position within the bands
- Helps visualize bullish (green/blue) and bearish (red) market conditions
## Trading Strategies for Beginners
### Basic Entry Signals
- **Buy Signal**:
- Price touches the center line from below
- Candle is bullish (closes higher than it opens)
- Price is above the center line
- Trend is upward
- **Sell Signal**:
- Price touches the center line from above
- Candle is bearish (closes lower than it opens)
- Price is below the center line
- Trend is downward
### Risk Management Tips
1. Use the bands to identify:
- Potential trend changes
- Volatility levels
- Support and resistance areas
2. Combine with other indicators for confirmation
3. Always use stop-loss orders
4. Adjust parameters to match your trading style and asset
## When to Use This Indicator
Best suited for:
- Trending markets
- Swing trading
- Identifying potential entry and exit points
- Understanding market volatility
### Recommended Markets
- Stocks
- Forex
- Cryptocurrencies
- Futures
## Customization
The script offers extensive customization:
- Adjust smoothness
- Change band multipliers
- Modify color schemes
- Enable/disable features like lag reduction
## Important Considerations for Beginners
🚨 **Disclaimer**:
- No indicator guarantees profits
- Always practice with a demo account first
- Learn and understand the indicator before live trading
- Market conditions change, so continually adapt your strategy
## Getting Started
1. Add the script to your TradingView chart
2. Experiment with different settings
3. Backtest on historical data
4. Start with small positions
5. Continuously learn and improve
Happy Trading! 📈🔍
AI Trend Momentum SniperThe AI Trend Momentum Sniper is a powerful technical analysis tool designed for day trading. This strategy combines multiple momentum and trend indicators to identify high-probability entry and exit points. The indicator utilizes a combination of Supertrend, MACD, RSI, ATR (Average True Range), and On-Balance Volume (OBV) to generate real-time signals for buy and sell opportunities.
Key Features:
Supertrend for detecting market direction (bullish or bearish).
MACD for momentum confirmation, highlighting changes in market momentum.
RSI to filter out overbought/oversold conditions and ensure high-quality trades.
ATR as a volatility filter to adjust for changing market conditions.
OBV (On-Balance Volume) to confirm volume strength and trend validity.
Dynamic Stop-Loss & Take-Profit based on ATR to manage risk and lock profits.
This indicator is tailored for intraday traders looking for quick market moves, especially in volatile and high liquidity assets like Bitcoin (BTC) and Ethereum (ETH). It helps traders capture short-term trends with efficient risk management tools.
How to Apply:
Set Your Chart: Apply the AI Trend Momentum Sniper to a 5-minute (M5) or 15-minute (M15) chart for optimal performance.
Buy Signal: When the indicator generates a green arrow below the bar, it indicates a buy signal based on positive trend and momentum alignment.
Sell Signal: A red arrow above the bar signals a sell condition when the trend and momentum shift bearish.
Stop-Loss and Take-Profit: The indicator automatically calculates dynamic stop-loss and take-profit levels based on the ATR value for each trade, ensuring proper risk management.
Alerts: Set up custom alerts for buy or sell signals, and get notified instantly when opportunities arise.
Best Markets for Use:
BTC/USDT, ETH/USDT – High liquidity and volatility.
Major altcoins with sufficient volume.
Avoid using it on low-liquidity assets where price action may become erratic.
Timeframes:
This indicator is best suited for lower timeframes (5-minute to 15-minute charts) to capture quick price movements in trending markets.
Monday Double Highlight EnhancedThis indicator highlights Monday's price action in two ways:
Bar Highlighting: Colors the price bar green for a bullish Monday and red for a bearish Monday.
Background Highlighting: Colors the chart background with a transparent green or red, enhancing the visibility of Monday's trading activity.
It provides a quick way to visually identify and analyze Monday price movements on any chart.