Indicator

J225 Markets - WatermarkInspired by and adapted from the "AG FX - Watermark" indicator by AG FX. This version significantly extends the original with independent show/hide toggles for each of 5 subtitle lines, individual color/size/alignment control per line, and a refined 9-point positioning system for both the main watermark and the symbol info badge.
Features:
- Editable title and up to 5 independent subtitle lines, each with its own show/hide toggle
- Full control over color, text size, and alignment for every line individually
- Optional symbol + timeframe + date info badge, positionable anywhere on the chart
- 9-point positioning grid (top/middle/bottom x left/center/right) for both the main watermark and the symbol info badge
- Adjustable cell width/height and background transparency
Default text ships with a trading psychology theme (patience, discipline, risk management, process over outcome) but every line is fully editable in the settings, so you can replace it with your own reminders, rules, or branding.
How to use: Add the indicator to your chart, then open the settings to customize the text, position, and styling to match your own trading plan.
This script does not provide trading signals, buy/sell alerts, or predictive analysis. It is a visual and psychological aid only, intended to help traders stay disciplined and consistent while viewing their charts. Indicator

My Chart [Herman]---
## TITLE
My Chart
---
## DESCRIPTION
```
OVERVIEW
My Chart is a chart-identification badge with a hidden note attached to it. On the
chart it shows up to three compact lines - the symbol, the current timeframe, and a
short line of your own text. When you move the mouse pointer over the badge, a
tooltip opens containing a longer block of text you have written yourself, and closes
again when the pointer leaves.
The problem it addresses is a practical one. Traders who work from a written process
- a pre-trade checklist, a set of session rules, a reminder of the bias they decided
on before the open - normally keep that text somewhere off the chart, in a note app
or on a second screen, or they paste it onto the chart as a text drawing. Neither
works well. Text kept elsewhere is out of sight at the exact moment it matters, and
text pasted on the chart clutters the workspace permanently to serve a reading that
is only needed for a few seconds before an entry.
This script's approach is to keep almost nothing on the chart and put the full text
one hover away. The visible badge stays small. The detail lives in the tooltip and
appears on demand.
WHAT MAKES IT DIFFERENT
A standard watermark prints fixed information in a fixed way and is not interactive.
This script turns the same corner of the chart into a container that holds three
things at once: chart identity, a short label, and an on-demand body of text - with
independent styling for each visible line, nine anchor positions, per-row visibility,
and a text-wrapping routine that stops long notes from stretching the badge across
the chart.
HOW IT WORKS
The badge is a single-column table drawn once, on the most recent bar. It performs no
market calculation of any kind. It draws no levels, produces no signals, and reads no
data beyond the symbol name and the chart's timeframe. Everything it displays is
either taken from the chart context or typed in by the user.
Ticker row
By default the script reads the chart's symbol from built-in symbol information.
Switching the ticker source to Custom lets you type your own label instead. This is
useful on continuous futures contracts, where a plain "NQ" reads better than the
exchange's contract string, or on spreads and renamed symbols.
Timeframe row
The chart's timeframe is read from the built-in timeframe variables and normalised
into a short form: ticks as T, seconds as s, minutes as m, whole hours as h, and
D / W / M for daily, weekly and monthly. A 240-minute chart is therefore shown as 4h
rather than 240m, while a value that is not a whole number of hours, such as 45,
stays in minutes.
Custom text row
A free text field, meant to stay short: a header for the checklist behind it, the
name of the session you are trading, or a single rule you want in view.
Each of the three rows can be switched off individually, and the rows are assembled
dynamically - a row that is switched off is removed from the badge rather than left
as an empty gap. A ticker-only badge, a timeframe-only badge, or a note-only badge
are all valid configurations.
Automatic wrapping
Long custom text would stretch the table sideways, so the script includes its own
wrapping routine rather than relying on the user to insert line breaks. It splits the
text into tokens at spaces, assembles lines up to the character limit you choose
(8 to 60), preserves any line breaks you typed manually, and hard-splits a single
token that is longer than the limit - so an unbroken string cannot widen the badge
either. Wrapping can be switched off if you prefer to control every break by hand.
The hover tooltip
The tooltip contains only the text entered in the Additional tooltip text field.
Nothing is copied into it from the rows above, so the visible badge and the hidden
note are written independently. The field accepts line breaks, so the tooltip can
hold a structured list rather than one paragraph. This is where the longer content
belongs: an entry checklist, risk rules, a description of the setup you are waiting
for, or session times.
Styling
Content and appearance are kept separate so the badge can be matched to any theme:
- Nine anchor positions (three columns by three rows of the chart area).
- Background colour and outer frame colour, each with its own transparency value.
- Frame width from 0 to 4; 0 removes the frame for a borderless look.
- Independent text colour for the ticker, the timeframe and the custom text.
- Eight typography presets, combining the two font families Pine supports (system and
monospace) with bold and italic variants.
- Independent text size for each row.
Switching the badge off clears the table and its background and frame, rather than
leaving an empty box on the chart.
HOW TO USE IT
1. Add the script and open its settings.
2. Under Content, switch off any row you do not want, and type the short label you
want permanently visible.
3. Under Hover Tooltip, type the full text you want hidden behind the hover. Use
blank lines to separate sections so it stays readable.
4. Under Position, move the badge to a corner that does not overlap your other tools.
5. Under Style and Typography, match the colours to your theme. On a dark chart,
start from a dark background with light text.
6. Hover over the badge to read the note.
If you want two separate notes on one chart, add the script twice and give each copy
a different position.
A NOTE ON THE CODE
The cell-drawing function contains one branch per typography preset, which looks
repetitive at first reading. This is deliberate: the text_font_family and
text_formatting parameters require constant arguments, so the values cannot be
assembled at runtime from the user's selection and each preset needs its own call
with literal constants.
LIMITATIONS YOU SHOULD KNOW ABOUT
- This is a display tool only. It does not analyse price, does not generate signals
or alerts, and nothing it shows carries any analytical or predictive meaning. It
cannot tell you what to trade; it can only keep your own written process in view.
- The tooltip needs a mouse pointer. On touch devices and in the mobile app there is
no hover state, so tooltip content may not be reachable there. It also does not
appear in chart snapshots or exported images. If you need the text visible in a
screenshot, put it in the custom text row instead of the tooltip.
- The badge is drawn only on the most recent bar. It is not historical and does not
change as you scroll back through the chart.
- Wrapping counts characters, not pixel width. With the proportional system font,
lines of equal character count will not be exactly equal in width. The monospace
presets give the most even result.
- The badge uses one of the nine standard table anchors. Other indicators placing
tables in the same corner will stack with it; move one of them if they collide.
- Colours are not theme-aware. Switching between a light and a dark chart requires
setting the colours again.
- The tooltip text is shared by the whole badge; individual rows do not have separate
tooltips.
- Very long tooltip text will be cut off by the platform's tooltip display, so keep
it to a length that can be read at a glance.
The script displays only information you supply and information already present on
the chart. It makes no claim about future price behaviour and is not trading advice.
The source is published under the Mozilla Public License 2.0. If you reuse it, the
House Rules on open-source reuse apply: credit the original author in your
publication's description, make significant improvements to the code base, and
publish your own script open-source.
```
---
## WHAT CHANGED IN THE CODE
1. Standard licence header plus the `© helmans13` attribution line, and a header
block stating the reuse terms.
2. Title and shorttitle are now `My Chart `, so the tag is permanently
visible in every user's chart legend.
3. New per-row visibility toggles: **Show ticker** and **Show timeframe**, alongside
the existing **Show custom text**.
4. Rows are now assembled dynamically with a running row counter. This replaces the
old placeholder cell (`text_size = 1`) used when the custom text row was hidden,
which left a thin sliver in the badge.
5. `table.clear` now runs before every redraw, so hidden rows leave no residue.
6. The badge auto-hides when every row is switched off, instead of drawing an empty
framed box.
7. Explanatory comment above `f_drawCell` so reviewers understand why the branches
are repetitive.
8. Removed the check-mark characters from the default tooltip text in favour of plain
hyphens, keeping the source fully 7-bit ASCII.
---
Indicator

Watermark Pro @SafarTradesWatermark Pro
Watermark Pro is a customizable branding and metadata overlay for PulseWire charts. It helps create a clean, professional workspace while keeping important chart information consistently visible.
The indicator combines customizable branding, chart metadata, and account status badges into a single configurable layout, making it suitable for personal trading, screenshots, educational content, and social media publishing.
Branding Panel
Display a fully customizable title and subtitle with flexible positioning to maintain a consistent visual identity across all charts.
Account Status Badge
Display a customizable status badge (e.g., Live Account, Demo Account, Funded Account, Backtesting) with multiple styling options to clearly identify the chart environment.
Chart Metadata
Optionally display the current date, trading symbol, and timeframe in a dedicated information panel that updates automatically as charts change.
Customization
Every component can be customized independently, allowing you to configure the layout to match your personal workflow and visual preferences.
Theme presets
Branding panel
Account status badge
Chart metadata panel
Flexible positioning
Color and typography controls
Badge styling options
Intended Use
Watermark Pro is suitable for traders, educators, analysts, and content creators who want consistent chart branding and a clean presentation for trading, analysis, screenshots, and educational content. Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

InCrypto WatermarkInCrypto Watermark
A customizable overlay indicator that displays essential trading information directly on your PulseWire charts. This tool helps traders quickly access key market data without cluttering the chart interface.
KEY FEATURES:
• Symbol Information: Displays current trading pair and active timeframe
• Price Display: Optional current price with smart precision formatting
• Price Change: Optional price change percentage over 24 bars with color-coded indicators
• Date & Time: Multiple format options for date (DD/MM/YYYY, MM/DD/YYYY, YYYY-MM-DD, DD.MM.YYYY) and time (HH:MM, HH:MM:SS)
• Custom Text: Customizable title and subtitle text
• Full Customization: Adjustable positioning, colors, sizes, alignment, and opacity for all elements
• Visibility Controls: Show/hide individual elements independently
• Background Options: Customizable background color, opacity, and optional borders
SETTINGS:
The indicator is organized into logical groups:
- Text Content: Title and subtitle customization
- Visibility: Individual show/hide controls for each element
- Watermark Position: Flexible placement options
- Symbol Info Position: Separate positioning controls
- Cell Size: Width and height adjustments
- Title/Subtitle/Symbol Info Settings: Color, size, alignment, and opacity controls
- Background Settings: Background color, opacity, and border options
USE CASES:
• Chart branding for trading groups or channels
• Quick reference for essential trading information
• Professional-looking charts for screenshots
• Multi-timeframe analysis assistance
TECHNICAL DETAILS:
• Pine Script v6
• Overlay indicator
• Works on all PulseWire-supported markets and timeframes
• Real-time updates
HOW TO USE:
1. Add the indicator to your chart
2. Customize title and subtitle in Text Content settings
3. Adjust positioning for watermark and symbol info sections
4. Enable/disable individual information elements as needed
5. Fine-tune colors, sizes, and opacity to match your chart style
The indicator automatically adjusts price precision based on the asset's price level. Price change is calculated over 24 bars of the current timeframe (not 24 hours).
DISCLAIMER:
This indicator is for informational purposes only. It does not constitute investment advice, financial advice, trading advice, or any other type of advice. Past performance does not guarantee future results. Always conduct your own research and risk management before making trading decisions. Trading involves substantial risk of loss and is not suitable for every investor.
Indicator

Watermark | Bar Time | Average Daily RangeMulti Info Panel & Watermark
Multi Info Panel & Watermark is a utility indicator that displays several pieces of chart information in a single, customizable panel. It is designed to support intraday and swing analysis by making key data—such as symbol details, date, and average daily range—easy to see at a glance, as well as providing simple tools for notes and backtesting.
Features
Watermark / Custom Note
Optional text overlay that can be used as a watermark or personal note.
Can display a strategy name, reminder, or any other user-defined label on the chart.
Ticker Info
Shows information about the currently active symbol on the chart (for example, symbol name and other basic details depending on the inputs).
Helps keep track of which market or pair is being analyzed, especially when using multiple charts.
Current Date
Displays the current date directly on the chart.
Useful for screenshots, journaling, and documenting analysis.
Average Daily Range (ADR)
Calculates the average daily range of the active symbol over a user-defined number of recent days.
Helps visualize how much price typically moves in a day, which can support position sizing, target setting, or volatility awareness within your own trading approach.
Open Bar Time Marker
Marks the open time of a selected bar (for example, a session open or a specific reference bar).
Primarily intended as a visual aid for manual backtesting and reviewing historical price action.
Usage
Use the watermark and ticker info to keep your charts labeled and organized.
Refer to the ADR readout to understand typical daily volatility of the instrument you are studying.
Use the date and open bar time marker when creating screenshots, trade journals, or when replaying historical sessions for review.
This script does not generate trading signals and does not guarantee any performance or results. It is provided solely as an informational and visualization tool. Always combine it with your own analysis, risk management, and decision-making. Nothing in this indicator or description should be considered financial advice. Indicator

One for AllOne for All (OFA) - Complete ICT Analysis Suite
Version 3.3.0 by theCodeman
📊 Overview
One for All (OFA) is a comprehensive PulseWire indicator designed for traders who follow Inner Circle Trader (ICT) concepts. This all-in-one tool combines essential ICT analysis features—sessions, kill zones, previous period levels, and higher timeframe candles with Fair Value Gaps (FVGs) and Volume Imbalances (VIs)—into a single, highly customizable indicator. Whether you're a beginner learning ICT concepts or an experienced trader refining your edge, OFA provides the visual structure needed for precise market analysis and execution.
✨ Key Features
- 🏷️ Customizable Watermark**: Display your trading identity with customizable titles, subtitles, symbol info, and full style control
- 🌍 Trading Sessions**: Visualize Asian, London, and New York sessions with high/low lines, range boxes, and open/close markers
- 🎯 Kill Zones**: Highlight 5 critical ICT kill zones with precise timing and visual boxes
- 📈 Previous Period H/L**: Track Daily, Weekly, and Monthly highs/lows with customizable styles and lookback periods
- 🕐 Higher Timeframe Candles**: Display up to 5 HTF timeframes with OHLC trace lines, timers, and interval labels
- 🔍 FVG & VI Detection**: Automatically detect and visualize Fair Value Gaps and Volume Imbalances on HTF candles
- ⚙️ Universal Timezone Support**: Works globally with GMT-12 to GMT+14 timezone selection
- 🎨 Full Customization**: Control colors, styles, visibility, and layout for every feature
🚀 How to Use
Watermark Setup
The watermark overlay helps you identify your charts and maintain focus on your trading principles:
1. Enable/disable watermark via "Show Watermark" toggle
2. Customize the title (default: "Name") to display your trading name or account identifier
3. Set up to 3 subtitles (default: "Patience", "Confidence", "Execution") as trading reminders
4. Choose position (9 locations available), size, color, and transparency
5. Toggle symbol and timeframe display as needed
Use Case: Display your trading principles or account name for multi-monitor setups or content creation.
Trading Sessions Analysis
Sessions define market character and liquidity availability:
1. Enable "Show All Sessions" to visualize all three sessions
2. Adjust timezone to match your local market (default: UTC-5 for EST)
3. Customize session times if needed (defaults cover standard hours)
4. Enable session range boxes to see consolidation zones
5. Use session high/low lines to identify key levels for the current session
6. Enable open/close markers to track session transitions
Use Case: Identify which session you're trading in, track session highs/lows for liquidity, and anticipate session transition volatility.
Kill Zones Trading
Kill zones are ICT's high-probability trading windows:
1. Enable individual kill zones or use "Show All Kill Zones"
2. **Asian Kill Zone** (2000-0000 GMT): Early positioning and smart money accumulation
3. **London Kill Zone** (0300-0500 GMT): European market opening volatility
4. **NY AM Kill Zone** (0930-1100 EST): Post-NYSE open expansion
5. **NY Lunch Kill Zone** (1200-1300 EST): Midday consolidation or manipulation
6. **NY PM Kill Zone** (1330-1600 EST): Afternoon positioning and closes
7. Customize colors and times to match your trading style
8. Set max days display to control historical visibility (default: 30 days)
Use Case: Focus entries during high-probability windows. Watch for liquidity sweeps at kill zone openings and institutional positioning.
Previous Period High/Low Levels
Previous period levels act as magnetic price targets and support/resistance:
1. Enable Daily (PDH/PDL), Weekly (PWH/PWL), or Monthly (PMH/PML) levels individually
2. Set lookback period (how many previous periods to display)
3. Choose line style: Solid (current emphasis), Dashed (standard), or Dotted (subtle)
4. Customize colors per timeframe for visual hierarchy
5. Adjust line width (1-5) for visibility preference
6. Enable gradient effect to fade older periods
7. Position labels left or right based on chart layout
8. Customize label text for your preferred notation
Use Case: Identify key levels where price is likely to react. Daily levels work on intraday timeframes, Weekly on daily charts, Monthly for swing trading.
Higher Timeframe (HTF) Candles
HTF candles reveal the larger market context while trading lower timeframes:
1. Enable up to 5 HTF slots simultaneously (default: 5m, 15m, 1H, 4H, Daily)
2. Choose display mode: "Below Chart" (stacked rows) or "Right Side" (compact column)
3. Customize timeframe, colors (bull/bear), and titles for each slot
4. **OHLC Trace Lines**: Visual lines connecting HTF candle levels to chart bars
5. **HTF Timer**: Countdown showing time remaining until HTF candle close
6. **Interval Labels**: Display day of week (Daily+) or time (intraday) on each candle
7. For Daily candles: Choose open time (Midnight, 8:30, 9:30) to match your market structure preference
Use Case: Trade lower timeframes while respecting higher timeframe structure. Watch for HTF candle closes to confirm directional bias.
FVG & VI Detection
Fair Value Gaps and Volume Imbalances highlight inefficiencies that price often revisits:
1. **Fair Value Gaps (FVGs)**: Detected when HTF candle wicks don't overlap between 3 consecutive candles
- Bullish FVG: Gap between candle 1 high and candle 3 low (green box by default)
- Bearish FVG: Gap between candle 1 low and candle 3 high (red box by default)
2. **Volume Imbalances (VIs)**: Similar detection but focuses on body gaps
- Bullish VI: Gap between candle 1 close and candle 3 open
- Bearish VI: Gap between candle 1 open and candle 3 close
3. Enable FVG/VI detection per HTF slot individually
4. Customize colors and transparency for each imbalance type
5. Boxes appear on chart at formation and remain visible as retracement targets
**Use Case**: Identify high-probability retracement zones. Price often returns to fill FVGs and VIs before continuing the trend. Use as entry zones or profit targets.
🎨 Customization
OFA is built for flexibility. Every feature includes extensive customization options:
Visual Customization
- **Colors**: Independent color control for every element (sessions, kill zones, lines, labels, FVGs, VIs)
- **Transparency**: Adjust box and label transparency (0-100%) for clean charts
- **Line Styles**: Choose Solid, Dashed, or Dotted for previous period lines
- **Sizes**: Control text size, line width, and box borders
- **Positions**: Place watermark in 9 positions, labels left/right
Layout Control
- **HTF Display Mode**: "Below Chart" for detailed analysis, "Right Side" for space efficiency
- **Drawing Limits**: Set max days for sessions/kill zones to manage chart clutter
- **Lookback Periods**: Control how many previous periods to display (1-10)
- **Gradient Effects**: Enable fading for older previous period lines
Timing Adjustments
- **Timezone**: Universal GMT offset selector (-12 to +14) for global markets
- **Session Times**: Customize each session's start/end times
- **Kill Zone Times**: Adjust kill zone windows to match your market's characteristics
- **Daily Open**: Choose Midnight, 8:30, or 9:30 for Daily HTF candle open time
💡 Best Practices
1. Start Simple: Enable one feature at a time to learn how each element affects your analysis
2. Match Your Timeframe: Use Daily levels on intraday charts, Weekly on daily charts, HTF candles one or two levels above your trading timeframe
3. Kill Zone Focus: Concentrate your trading activity during kill zones for higher probability setups
4. HTF Confirmation: Wait for HTF candle closes before committing to directional bias
5. FVG/VI Entries: Look for price to return to unfilled FVGs/VIs for entry opportunities with favorable risk/reward
6. Customize Colors: Use a consistent color scheme that matches your chart theme and reduces visual fatigue
7. Reduce Clutter: Disable features you're not actively using in your current trading plan
8. Session Context: Understand which session controls the market—trade with session direction or anticipate reversals at session transitions
⚙️ Settings Guide
OFA organizes settings into logical groups for easy navigation:
- **═══ WATERMARK ═══**: Title, subtitles, position, style, symbol/timeframe display
- **═══ SESSIONS ═══**: Enable/disable sessions, times, colors, high/low lines, boxes, markers
- **═══ KILL ZONES ═══**: Individual kill zone toggles, times, colors, max days display
- **═══ PREVIOUS H/L - DAILY ═══**: Daily high/low lines, style, color, lookback, labels
- **═══ PREVIOUS H/L - WEEKLY ═══**: Weekly high/low lines, style, color, lookback, labels
- **═══ PREVIOUS H/L - MONTHLY ═══**: Monthly high/low lines, style, color, lookback, labels
- **═══ HTF CANDLES ═══**: Global display mode, layout settings
- **═══ HTF SLOT 1-5 ═══**: Individual HTF configuration (timeframe, colors, title, FVG/VI detection, trace lines, timer, interval labels)
Each setting includes tooltips explaining its function. Hover over any input for detailed guidance.
📝 Final Notes
One for All (OFA) represents a complete ICT analysis toolkit in a single indicator. By combining watermark customization, session visualization, kill zone highlighting, previous period levels, and higher timeframe candles with FVG/VI detection, OFA eliminates the need for multiple indicators cluttering your chart.
**Version**: 3.3.0
**Author**: theCodeman
**Pine Script**: v6
**License**: Mozilla Public License 2.0
Start with default settings to learn the indicator's structure, then customize extensively to match your personal trading style. Remember: tools provide information, but your edge comes from disciplined execution of a proven strategy.
Happy Trading! 📈
Indicator

Indicator

Indicator

Indicator

Watermark [TakingProphets] Watermark
A fully customizable watermark & chart info panel to keep your charts branded, organized, and informative — without clutter.
Special thanks to for inspiring the original concept that led to this expanded version.
📌 Overview
Perfect for:
Traders who stream, record, or share charts
Keeping essential info (symbol, TF, date, price) visible
Intraday traders who want day-of-week labels without messy vertical lines
✨ Key Features
1. Personal Watermark
Custom text, colors, size, opacity
Position anywhere: Top, Middle, Bottom × Left, Center, Right
Alignment options: left, center, right
Optional border with adjustable color or hide completely
2. Chart Info Panel
Show any combination of:
Custom text
Symbol
Timeframe (auto-formatted)
Date (MM-DD-YYYY)
Last price
Day of the week
Position independently from watermark
Adjustable background opacity
3. Day-of-Week Labels
Labels Sunday → Saturday at session start or midday
Works on intraday ≤ 15m timeframes
Option to hide weekends
Place labels Top or Bottom
⚙️ How to Use
Enable Watermark → Personal Watermark Settings → Toggle Show Watermark, enter your text, style it.
Set Up Info Panel → Chart Information Panel → Select details, choose position, adjust style.
Add Day Labels → Day of Week Labels Settings → Turn on for intraday charts.
💡 Tips
Lower background opacity for a subtle look.
Use bright colors for streaming so your brand stands out.
Hide unused features to keep charts clean & fast.
🙏 Acknowledgments
This script’s concept was inspired by toodegrees.
Developed by TakingProphets — tools for traders who value clarity, precision, and style.
⚠️ Disclaimer:
This script is for informational purposes only. It is not financial advice. Always trade responsibly and manage your risk. Indicator

Indicator

Indicator

Watermark Clarity V33🌟 Introducing Watermark Clarity V33 – Banner 🌟
Watermark Clarity V33 is a visual utility tool designed to enhance chart awareness, focus, and clean aesthetics without adding market noise. Unlike traditional indicators, this script does not generate buy/sell signals or perform technical analysis. Instead, it provides a customizable on-chart watermark banner that clearly communicates your current mindset, risk awareness, or trading bias directly on the chart — helping traders stay aligned with their pre-defined plans and reducing impulsive behavior.
Whether you’re a discretionary trader, scalper, or swing trader, Watermark Clarity V33 offers an adaptive display that blends clarity with minimalism, keeping your chart clean while remaining informative.
🛠 Customizable Parameters
• Dual Text Banners: Configure two independent headers to reflect trading goals, risk posture, or emotional cues.
• Smart Animation Toggle: Optionally animate between messages to help reinforce shifting market awareness or draw attention during high-alert periods.
• Size, Color & Positioning: Adjust the info box’s text size, banner dimensions, background color, transparency, and placement (top/middle/bottom – left/center/right).
• Transparent Mode: Switch to semi-transparent mode for cleaner overlays during live sessions or screen recording.
🚀 New Feature – Custom Alerts & Smart Animation Control
• Market-Aware Animation Logic:
When Enable Animation is turned on and both Heading 1 and Heading 2 are filled:
• 📈 During Market Hours → The banner alternates smoothly between both headings, helping maintain awareness and visual engagement.
• 💤 Outside Market Hours → The banner remains fixed on Heading 1. This acts as a subtle visual cue that markets are currently closed — giving you peace of mind and a cleaner screen.
✨ Visual Utility Use Cases
• Accountability Layer: Keep yourself accountable to your trading rules or session checklist.
• Mindset Anchor: Display motivational or tactical reminders that guide your trading behavior.
• Multi-Timeframe Syncing: Use different watermarks across charts to stay aligned across timeframes or instruments.
📘 How to Use
1. Add the Indicator: Apply “Watermark Clarity V33 – Banner” to your chart.
2. Configure Inputs: Adjust the banner texts, size, color scheme, and screen position to your liking.
4. Focus & Trade: Let the visual cue support your decision-making environment without interfering with price action.
❗ Important Notes
• This indicator does not analyze price data or generate signals. It is designed solely for visual clarity and trader discipline support.
• All display logic runs in real-time and responds to your settings only, no repainting or lookahead bias. Indicator

Indicator

Indicator
