1-3-1 Setup This script highlights the last 1 on a 1-3-1 setup. You have to be on the 12hr time frame. So every last 1 of a 1-3-1 will be highlighted. This is great for backtesting.
Padrões gráficos
Fractal Breakout Trend Following System█ OVERVIEW
The Fractal Breakout Trend Following System is a custom technical analysis tool designed to pinpoint significant fractal pivot points and breakout levels. By analyzing price action through configurable pivot parameters, this indicator dynamically identifies key support and resistance zones. It not only marks crucial highs and lows on the chart but also signals potential trend reversals through real-time breakout detections, helping traders capture shifts in market momentum.
█ KEY FEATURES
Fractal Pivot Detection
Utilizes user-defined left and right pivot lengths to detect local highs (pivot highs) and lows (pivot lows). This fractal-based approach ensures that only meaningful price moves are considered, effectively filtering out minor market noise.
Dynamic Line Visualization
Upon confirmation of a pivot, the system draws a dynamic line representing resistance (from pivot highs) or support (from pivot lows). These lines extend across the chart until a breakout occurs, offering a continuous visual guide to key levels.
Trend Breakout Signals
Monitors for price crossovers relative to the drawn pivot lines. A crossover above a resistance line signals a bullish breakout, while a crossunder below a support line indicates a bearish move, thus updating the prevailing trend.
Pivot Labelling
Assigns labels such as "HH", "LH", "LL", or "HL" to detected pivots based on their relative values.
It uses the following designations:
HH (Higher High) : Indicates that the current pivot high is greater than the previous pivot high, suggesting continued upward momentum.
LH (Lower High) : Signals that the current pivot high is lower than the previous pivot high, which may hint at a potential reversal within an uptrend.
LL (Lower Low) : Shows that the current pivot low is lower than the previous pivot low, confirming sustained downward pressure.
HL (Higher Low) : Reveals that the current pivot low is higher than the previous pivot low, potentially indicating the beginning of an upward reversal in a downtrend.
These labels provide traders with immediate insight into the market structure and recent price behavior.
Customizable Visual Settings
Offers various customization options:
• Adjust pivot sensitivity via left/right pivot inputs.
• Toggle pivot labels on or off.
• Enable background color changes to reflect bullish or bearish trends.
• Choose preferred colors for bullish (e.g., green) and bearish (e.g., red) signals.
█ UNDERLYING METHODOLOGY & CALCULATIONS
Fractal Pivot Calculation
The script employs a sliding window technique using configurable left and right parameters to identify local highs and lows. Detected pivot values are sanitized to ensure consistency in subsequent calculations.
Dynamic Line Plotting
When a new pivot is detected, a corresponding line is drawn from the pivot point. This line extends until the price breaks the level, at which point it is reset. This method provides a continuous reference for support and resistance.
Trend Breakout Identification
By continuously monitoring price interactions with the pivot lines, the indicator identifies breakouts. A price crossover above a resistance line suggests a bullish breakout, while a crossunder below a support line indicates a bearish shift. The current trend is updated accordingly.
Pivot Label Assignment
The system compares the current pivot with the previous one to determine if the move represents a higher high, lower high, higher low, or lower low. This classification helps traders understand the underlying market momentum.
█ HOW TO USE THE INDICATOR
1 — Apply the Indicator
• Add the Fractal Breakout Trend Following System to your chart to begin visualizing dynamic pivot points and breakout signals.
2 — Adjust Settings for Your Market
• Pivot Detection – Configure the left and right pivot lengths for both highs and lows to suit your desired sensitivity:
- Use shorter lengths for more responsive signals in fast-moving markets.
- Use longer lengths to filter out minor fluctuations in volatile conditions.
• Visual Customization – Toggle the display of pivot labels and background color changes. Select your preferred colors for bullish and bearish trends.
3 — Interpret the Signals
• Support & Resistance Lines – Observe the dynamically drawn lines that represent key pivot levels.
• Pivot Labels – Look for labels like "HH", "LH", "LL", and "HL" to quickly assess market structure and trend behavior.
• Trend Signals – Watch for price crossovers and corresponding background color shifts to gauge bullish or bearish breakouts.
4 — Integrate with Your Trading Strategy
• Use the identified pivot points as potential support and resistance levels.
• Combine breakout signals with other technical indicators for comprehensive trade confirmation.
• Adjust the sensitivity settings to tailor the indicator to various instruments and market conditions.
█ CONCLUSION
The Fractal Breakout Trend Following System offers a robust framework for identifying critical fractal pivot points and potential breakout opportunities. With its dynamic line plotting, clear pivot labeling, and customizable visual settings, this indicator equips traders with actionable insights to enhance decision-making and optimize entry and exit strategies.
Hourly Cycle High/Low by BrijKey Features
16 Custom Sessions:
Define up to 16 custom time ranges (e.g., 09:00-10:00, 11:00-12:00, etc.).
Each session is independent and can be configured with its own time range and UTC offset.
Dynamic Boxes:
A box is drawn for each session, representing the high and low prices during that session.
The box dynamically updates as new highs or lows are formed within the session.
Session Labels:
A label is displayed on top of each box, showing the session name (e.g., "Session 1", "Session 2", etc.).
The label moves dynamically with the box as the session progresses.
Customizable Colors:
Each session's box and label can be customized with different colors for better visualization.
No Plots:
To stay within TradingView's 64-output limit, the indicator does not plot the high and low levels as separate lines. Instead, it focuses on the boxes and labels.
Daily Cycle high/low by brijKey Features:
✅ Custom Session Selection: Users can define a specific session (default: 09:00-10:00 UTC+1)
✅ Session High/Low Tracking: Plots the highest and lowest price of the session
✅ Real-Time Updates: Adjusts as new bars are formed within the session
✅ Visual Box Representation: Highlights the session range with a colored box
✅ Alerts: Notifies when the session starts or ends
Use Case:
This indicator is useful for traders using Opening Range Breakout (ORB) strategies, as it helps identify key support/resistance levels for potential trade entries. 🚀
Momentum MA RSI BreakoutMoving Averages (EMA 9 & EMA 21):
Fast EMA crossing above Slow EMA = Bullish Trend
Fast EMA crossing below Slow EMA = Bearish Trend
RSI-Based Buy/Sell Signals (14-period RSI):
RSI crosses above 30 → Buy signal
RSI crosses below 70 → Sell signal
Breakout Alerts (20-period lookback):
Price breaks above the highest high in the last 20 bars → Breakout Up
Price breaks below the lowest low in the last 20 bars → Breakout Down
Visual Enhancements:
Green/Red background for strong buy/sell signals
Up/Down triangles for breakout alerts
Alerts for key events
VWAP + RSI + MACD Strategy + Risk Management// TradingView Pine Script for VWAP + RSI + MACD Strategy with Risk Management
//@version=5
indicator("VWAP + RSI + MACD Strategy + Risk Management", overlay=true)
// VWAP Calculation
vwap_value = ta.vwap
plot(vwap_value, title="VWAP", color=color.blue, linewidth=2)
// RSI Calculation
rsi_length = 14
rsi_value = ta.rsi(close, rsi_length)
plot(rsi_value, title="RSI", color=color.purple, linewidth=2)
// MACD Calculation
= ta.macd(close, 12, 26, 9)
macdBullish = ta.crossover(macdLine, signalLine)
macdBearish = ta.crossunder(macdLine, signalLine)
// Entry Conditions
bullish_signal = ta.crossover(close, vwap_value) and rsi_value > 50 and macdBullish
bearish_signal = ta.crossunder(close, vwap_value) and rsi_value < 50 and macdBearish
// Stop-Loss Conditions (Risk Management)
stop_loss_long = close < vwap_value // Exit long if price drops below VWAP
stop_loss_short = close > vwap_value // Exit short if price rises above VWAP
// Alerts for Buy/Sell Signals
alertcondition(bullish_signal, title="Bullish Entry", message="Price above VWAP, RSI > 50, MACD Bullish")
alertcondition(bearish_signal, title="Bearish Entry", message="Price below VWAP, RSI < 50, MACD Bearish")
alertcondition(stop_loss_long, title="Exit Long", message="Price dropped below VWAP - Consider exiting long position")
alertcondition(stop_loss_short, title="Exit Short", message="Price rose above VWAP - Consider exiting short position")
// Background Highlighting
bgcolor(bullish_signal ? color.green : bearish_signal ? color.red : na, transp=85)
Budicon Market StructureThe Budicon Market Structure Indicator provides a clear and structured view of price action, making it easier to follow trends, identify breakouts, and avoid false moves.
How It Helps Traders
🔹 Break of Structure (BoS): Confirms trend continuation after price breaks a previous high/low.
🔹 Change of Character (ChoCh): Identifies early signs of trend reversals.
🔹 Liquidity Grabs & Fakeouts: Detects manipulations before big moves.
🔹 Key Support/Resistance Levels: Helps refine entry and exit points with precision
✅ Works on All Timeframes – Ideal for scalping, day trading, and swing trading.
Its designed by Budicon Technology
Checklist IndicatorThe Checklist Indicator is a customizable tool designed to help traders maintain discipline and consistency by displaying a personalized checklist directly on their TradingView charts. Positioned unobtrusively in the top-right corner, this indicator allows users to define up to five checklist items, each accompanied by a status icon—either a green tick (✔) for completed tasks or a red cross (✖) for pending ones.
Key Features:
Customizable Appearance: Users can adjust the background and text colors to match their chart's theme, ensuring the checklist integrates seamlessly without causing distractions.
Dynamic Content: Each checklist item is user-defined, allowing traders to tailor the list to their specific strategies or routines.
Visual Status Indicators: The inclusion of color-coded icons provides a quick visual reference, enabling traders to assess their preparedness at a glance.
Compact Design: The indicator's small, square-shaped table is designed to convey essential information without occupying significant chart space.
Usage Notes:
Due to the current limitations of Pine Script, the checklist's interactivity is managed through the indicator's settings menu. Traders can mark items as completed or pending by toggling the corresponding options within the settings. This manual process encourages deliberate reflection on each checklist item, reinforcing disciplined trading practices.
Incorporating the Checklist Indicator into your trading routine can serve as a constant reminder of your strategic rules and procedures, helping to reduce impulsive decisions and promote a structured approach to market analysis.
IMMU TRADERthis is orb indicator for open range breakout you can use in stock or make a rule and enjoy
Candlestick Pattern DetectorDetects popular candlestick patterns:
Hammer (Bullish Reversal)
Shooting Star (Bearish Reversal)
Bullish Engulfing (Strong Buy Signal)
Bearish Engulfing (Strong Sell Signal)
Doji (Indecision/Trend Reversal)
✅ Overlay on price chart (labels appear where patterns are detected)
✅ Compatible with any time frame
✅ Optimized for Pine Script v6
EMA - 20, 50, 150, 200Exponential Moving Average (EMA) Indicator
An Exponential Moving Average (EMA) indicator that reacts faster to price changes, helping traders identify trends and generate signals. Suitable for stocks, forex, crypto, and more. 🚀
Sweep DetectorThe Sweep Detector identifies liquidity sweeps by detecting when a swing high or low is broken only by the wick of a candle, ensuring the body does not close beyond the level. It highlights these sweep points with markers and draws a line from the broken level to the candle that triggered the sweep. This helps traders spot potential reversals and liquidity grabs in the market.
EMA 5 Alert Candle ShortThe 5 EMA (Exponential Moving Average) Strategy is a simple yet effective trading strategy that helps traders identify short-term trends and potential entry and exit points. This strategy is widely used in intraday and swing trading, particularly in forex, stocks, and crypto markets.
Components of the 5 EMA Strategy
5 EMA: A fast-moving average that reacts quickly to price movements.
15-minute or 1-hour timeframe (commonly used, but adaptable to other timeframes).
Candlestick Patterns: To confirm entry signals.
How the 5 EMA Strategy Works
Buy (Long) Setup:
Price Above the 5 EMA: The price should be trading above the 5 EMA.
Pullback to the 5 EMA: A minor retracement or consolidation near the 5 EMA.
Bullish Candlestick Confirmation: A bullish candle (e.g., engulfing or pin bar) forms near the 5 EMA.
Entry: Enter a long trade at the close of the bullish candle.
Stop Loss: Place below the recent swing low or 5-10 pips below the 5 EMA.
Take Profit: Aim for a risk-reward ratio of at least 1:2 or trail the stop using a higher EMA (e.g., 10 or 20 EMA).
Sell (Short) Setup:
Price Below the 5 EMA: The price should be trading below the 5 EMA.
Pullback to the 5 EMA: A small retracement towards the 5 EMA.
Bearish Candlestick Confirmation: A bearish candle (e.g., engulfing or pin bar) near the 5 EMA.
Entry: Enter a short trade at the close of the bearish candle.
Stop Loss: Place above the recent swing high or 5-10 pips above the 5 EMA.
Take Profit: Aim for a 1:2 risk-reward ratio or use a trailing stop.
Additional Filters for Better Accuracy
Higher Timeframe Confirmation: Check the trend on a higher timeframe (e.g., 1-hour or 4-hour).
Volume Confirmation: Enter trades when volume is increasing.
Avoid Sideways Market: Use the strategy only when the market is trending.
Advantages of the 5 EMA Strategy
✔️ Simple and easy to use.
✔️ Works well in trending markets.
✔️ Helps traders capture short-term momentum.
Disadvantages
❌ Less effective in choppy or sideways markets.
❌ Requires discipline in following stop-loss rules.
Dollar Difference (High-Low)This script shows the difference between the High and Low - indicating the complete range of movement of each candle, in all time frames. This enables you to get a birds eye view of the movement without having to see the values on the Chart top for each candle mouseover.
Bauhaus Reversal MasterWelcome to the Bauhaus Reversal Master!
A Pine Script (v6) creation for TradingView that detects market reversals using classic candlestick patterns. Think of yourself as a chart detective—this script does the heavy lifting by spotting signals, labeling them, and running an automated trading strategy with built-in risk management.
🔍 What Does This Script Do?
Identifies Candlestick Patterns: Recognizes formations like Hammer Time, Falling Star, Bullish Munch, and more.
Confirms the Trend: Uses stochastic to ensure patterns appear in extreme zones (overbought/oversold), increasing reliability.
Automates Trading: Places buy/sell orders with predefined risk parameters.
Labels the Chart: Displays clear tags (e.g., "HAM" or "STAR") for instant visualization.
Manages Risk: Calculates risk and reward based on market volatility (ATR-based).
It’s like having a trading assistant with precision and style! 🎯
🛠 How It Works: Step by Step
1️⃣ Setup (Control Panel)
Capital Allocation: Bets 10% per trade (adjustable).
Commission: Default 0.1% per trade (modifiable for your broker).
Custom Options:
ATR Period: Measures volatility (default 14 bars).
Profit & Loss: Multipliers for Take Profit (1.5x ATR) & Stop Loss (1x ATR).
Trend Lookback: Number of candles analyzed (default 14).
Reversal Threshold: Overbought/Oversold levels (default 80).
Smoothing Factor: Helps reduce noise (default 20).
2️⃣ Candlestick Patterns (The Stars of the Show)
📈 Bullish Patterns (Buy Signals)
Hammer Time: Long lower wick in a downtrend.
Inverted Hammer: Long upper wick in a downtrend.
Bullish Munch: A big green candle swallowing a red one.
Tweezer Bottom: Two candles with identical lows, one red, one green.
📉 Bearish Patterns (Sell Signals)
Hanging Man: A hammer-like candle but in an uptrend.
Falling Star: Long upper wick in an uptrend.
Bearish Gobble: A big red candle engulfing a green one.
Tweezer Top: Two candles with identical highs, one green, one red.
✅ Each pattern can be toggled ON/OFF.
3️⃣ Trend Confirmation (The Filter)
Uses stochastic (kTrend) to detect extreme market conditions:
Overbought (>80) → Bearish Zone
Oversold (<20) → Bullish Zone
Averages it (smoothK) to filter out false signals.
Buys only in bearish zones, sells only in bullish zones.
4️⃣ Candlestick Math (For Nerds 🤓)
Breaks each candle into:
Body
Upper Wick
Lower Wick
Measures proportions of each to detect valid patterns.
5️⃣ Risk & Reward (Your Money’s Bodyguard)
Uses ATR (atrVal) to set dynamic profit & loss levels:
Buy Trade:
Take Profit = Price + (ATR × 1.5)
Stop Loss = Price - (ATR × 1)
Sell Trade:
Take Profit = Price - (ATR × 1.5)
Stop Loss = Price + (ATR × 1)
Ensures a Risk/Reward Ratio favoring larger wins over losses.
6️⃣ Execution (Let’s Trade!)
Spots a bullish pattern? Places a Buy Order (GoLong).
Detects a bearish pattern? Places a Sell Order (GoShort).
Exits automatically at Take Profit or Stop Loss.
7️⃣ Chart Labels (Visual Cues)
Displays clear signals:
Bullish: "HAM" (hammer), "INV" (inverted hammer), "BULL" (bullish engulfing), "TWZB" (tweezer bottom) → Green Labels
Bearish: "STAR" (shooting star), "HANG" (hanging man), "BEAR" (bearish engulfing), "TWZT" (tweezer top) → Red Labels
📊 Why Use This Script?
✅ Automated Trading – Execute trades on TradingView effortlessly.✅ Visual Insights – Labels help identify patterns instantly.✅ Backtesting – Simulate past performance (e.g., starting with $10,000).✅ Customizable – Modify settings for risk, market type (stocks, forex, crypto), and strategy.
💡 Pro Tips for Users
Test Before Trading – Run TradingView’s backtest to evaluate performance.
Adjust Risk Settings – Increase Stop Loss or lower Take Profit in volatile markets.
Choose the Right Timeframe – Works best on H1 (1-hour) and H4 (4-hour) charts.
Match Commissions – Set the commission rate to match your broker’s fees.
Use Additional Analysis – Patterns aren’t 100% reliable; combine this with your own insights.
Enhanced Zigzag [victhoreb] (V2)** This is the updated version of my pre-existing Zigzag indicator **
Enhanced Zigzag is an optimized version of the classic zigzag indicator, crafted using 50 lines of Pine Script code compared to TradingView’s native version which exceeds 300 lines. Its compact logic efficiently detects pivot highs and lows using customizable lookback periods, then dynamically connects these key points with clear, color-adjustable zigzag lines. With options to toggle the zigzag display and enable repainting, this indicator offers both performance and flexibility—providing traders with a streamlined tool for identifying market swings and potential reversals with minimal code complexity.
FVG Breakout Lite by tradingbauhausExplanation of "FVG Breakout Lite by tradingbauhaus"
This script is a trading strategy built for TradingView that helps you spot and trade "Fair Value Gaps" (FVGs)—price areas where the market moved quickly, leaving a gap that might act as support or resistance later. It’s designed to catch breakout opportunities when the price moves strongly in one direction, with extra filters to make trades more reliable. Here’s how it works and how you can use it:
What It Does
1. Finds Fair Value Gaps (FVGs):
A "Bullish FVG" happens when the price jumps up quickly, leaving a gap below where it didn’t trade much (e.g., today’s low is higher than the high from two bars ago).
A "Bearish FVG" is the opposite: the price drops fast, leaving a gap above (e.g., today’s high is lower than the low from two bars ago).
The script draws colored boxes on your chart to show these gaps: green for bullish, red for bearish.
2. Spots Breakouts:
It looks for "strong" FVGs by comparing them to a trend (based on the highest highs and lowest lows over a set period).
If a bullish gap forms above the recent highs, or a bearish gap below the recent lows, it’s marked as a breakout opportunity.
3. Adds a Volume Check:
Trades only happen if the market’s volume is higher than usual (e.g., 1.2x the average volume over the last 20 bars). This helps ensure the breakout has real momentum behind it.
4. Trades Automatically:
Long Trades (Buy): If a bullish breakout FVG forms and volume is high, it buys at the current price.
Short Trades (Sell): If a bearish breakout FVG forms with high volume, it sells short.
Each trade comes with a stop loss (to limit losses) and a take profit (to lock in gains), both adjustable by you.
5. Shows Mitigation Lines (Optional):
If you turn on "Display Mitigation Zones," it draws lines at the edge of each breakout FVG. These lines show where the price might return to "fill" the gap later, helping you see key levels.
6. Includes Webull Costs:
The script factors in real trading fees from Webull, like tiny SEC and FINRA fees for selling, and a daily margin cost if you’re borrowing money to trade. These don’t show up on the chart but affect the strategy’s performance in backtesting.
How to Use It
1. Add to Your Chart:
Copy the script into TradingView’s Pine Editor, click "Add to Chart," and it’ll start drawing FVGs and running the strategy.
2. Customize Settings:
Trend Period (Default: 25): How many bars it looks back to define the trend. Longer periods mean fewer but stronger signals.
Volume Lookback (Default: 20) & Volume Threshold (Default: 1.2): Adjust how it measures "high volume." Increase the threshold for stricter trades.
Stop Loss % (Default: 1.5%) & Take Profit % (Default: 3%): Set how much you’re willing to lose or aim to gain per trade.
Margin Rate % (Default: 8.74%): Webull’s rate for borrowing money—lower it if your account qualifies for a better rate.
Display Mitigation Zones (Default: On): Toggle this to see or hide the gap lines.
Colors: Change the green (bullish) and red (bearish) shades to suit your chart.
3. Backtest It:
Go to the "Strategy Tester" tab in TradingView to see how it performs on past data. It’ll show trades, profits, losses, and Webull fees included.
4. Watch It Work:
Green boxes mean bullish FVGs; red boxes mean bearish FVGs. If volume spikes and the price breaks out, you’ll see trades happen automatically.
What to Expect
Visuals: You’ll see colored boxes for FVGs and optional lines showing where they start. These help you spot key price zones even if you’re not trading.
Trades: It’s selective—only trades when FVGs align with a breakout and volume confirms it. Expect fewer trades but with higher potential.
Risk: The stop loss keeps losses in check, while the take profit aims for a 2:1 reward-to-risk ratio by default (3% gain vs. 1.5% loss).
Costs: Webull’s fees are small but baked into the results, so you’re seeing a realistic picture of profits.
Tips for Users
Test it on a small timeframe (like 5-minute charts) for day trading or a larger one (like daily) for swing trading.
Play with the volume threshold—if you get too few trades, lower it (e.g., 1.1); if too many, raise it (e.g., 1.5).
Watch how price reacts to the mitigation lines—they’re often support or resistance zones traders target.
This strategy is lightweight, focused, and built for traders who like breakouts with a bit of confirmation. It’s not foolproof (no strategy is!), but it gives you a clear way to trade FVGs with some smart filters.
PAULS DOG HOUSEThe **3 EMA (Exponential Moving Average) Smooth Moving Average** is a technical indicator used in trading to identify trends and potential market reversals with greater accuracy. Unlike a simple moving average (SMA), the **Exponential Moving Average (EMA)** gives more weight to recent price data, making it more responsive to current market conditions. A **3 EMA smooth moving average** applies three EMAs in succession, further refining the signal by reducing noise and smoothing out fluctuations. This method helps traders recognize short-term price movements while filtering out false signals, making it a valuable tool for identifying trends in volatile markets. It is commonly used in forex, stocks, and cryptocurrency trading to enhance decision-making and improve entry and exit strategies.
T5-T55 Price Pulse ConfluenceThis script combines multiple technical indicators and price action analysis to generate clear and actionable buy and sell signals, offering a balanced approach to identifying trading opportunities. The inclusion of dynamic stop-loss, take-profit, and 20% profit targets allows for effective risk management while maximizing profit potential.
Short Screener: Declining EPSWhat This Script Does
🔹 Screens for Shorting Opportunities
🔹 Checks if EPS is declining (Current < Next Year)
🔹 Confirms Downtrend (Price < SMA 200)
🔹 Uses RSI & MACD for Bearish Signals
🔹 Checks Debt-to-Equity (> 1.5)
Enhanced Zigzag [victhoreb]Enhanced Zigzag is an optimized version of the classic zigzag indicator, crafted using 50 lines of Pine Script code compared to TradingView’s native version which exceeds 300 lines. Its compact logic efficiently detects pivot highs and lows using customizable lookback periods, then dynamically connects these key points with clear, color-adjustable zigzag lines. With options to toggle the zigzag display and enable repainting, this indicator offers both performance and flexibility—providing traders with a streamlined tool for identifying market swings and potential reversals with minimal code complexity.