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

Sumarna17 Control Plan TradingSumarna17 Trade Plan Control System
Adalah indikator PulseWire yang dirancang untuk membantu trader membuat keputusan entry dengan lebih disiplin, terukur, dan terencana. Indikator ini menggabungkan sistem Trade Plan, Risk Reward Manager, Lot Calculator, Checklist Validasi, Smart Execution Panel, Running Trade Management, dan Review Journal dalam satu alat lengkap.
Dengan fitur Pre Entry, Running Trade, dan Review Mode, trader bisa mengecek kelayakan setup sebelum entry, mengelola posisi saat trade berjalan, hingga mengevaluasi hasil setelah trade selesai. Cocok untuk trader yang ingin mengurangi entry asal-asalan, menjaga risk management, menghindari overlot, dan membangun kebiasaan trading yang lebih profesional.
Fitur utama:
- Smart Trade Plan System
- RR dan Lot Calculator
- Validasi Entry, SL, dan TP
- Checklist disiplin sebelum entry
- Smart Execution Panel
- TP1, TP2, TP3 Scale Out
- Break Even, Lock Profit, dan Trailing Helper
- Prop Firm Guard
- Running Trade Management
- Review Journal untuk evaluasi trade
Indikator ini cocok untuk trader XAUUSD, Forex, BTCUSD, US100, dan market lainnya yang ingin trading lebih rapi, disiplin, dan tidak emosional.
Catatan Pengembangan:
Indikator ini masih terus dikembangkan dan belum sempurna. Setiap fitur dibuat untuk membantu trader lebih disiplin, bukan untuk menjamin profit. Gunakan indikator ini sebagai alat bantu analisis, bukan sebagai pengganti pemahaman market, manajemen risiko, dan kontrol emosi.
Trade with plan, manage with discipline, review with honesty.
Indicator

Indicator

Trading Rules ChecklistA simple and clean trade entry checklist for disciplined traders. The indicator displays a table with your trading rules — each rule can be toggled on or off directly from the settings. Once the required number of rules are met, the chart background turns green and the table shows "VSTUP" (Entry). If the conditions are not met, the background stays red showing "NEVSTUPUJ" (No Entry).
Features:
7 toggleable trading rules (default: VWAP, CVD, FIBO, Break, PDPOC, WPOC, POC)
Each rule can be renamed to match your own trading strategy
Configurable minimum number of rules required for entry (default: 3 out of 7)
Full-chart color background — green = entry confirmed, red = wait
Adjustable table position (4 corners of the chart)
Background colors fully customizable via the Style tab
How to use:
Before every trade, go through your checklist and toggle the rules that are currently met. The indicator will visually confirm whether you have enough confluences to enter the trade — helping you stay consistent and avoid impulsive decisions.
Works best with: VWAP, Volume Profile, CVD, Fibonacci retracements and trendline analysis. Indicator

Trading Checklist with ScoreThis indicator displays a customizable trading checklist directly on the chart.
It is designed to help discretionary traders organize their trade validation process before entering a position. The script does not generate buy or sell signals, does not automate trading decisions, and does not make any performance claims.
Main features:
• Up to 20 checklist rows
• 10 rows displayed by default
• Adjustable number of visible rows from 1 to 20
• Optional trade score based only on the visible checklist rows
• Custom text for each checklist item
• Custom table position, colors, text size, and header
• Optional symbol pinning, so the checklist can be linked to one chart symbol
How to use:
1. Add the indicator to the chart.
2. Open the indicator settings.
3. Edit each checklist row with your own trading criteria.
4. Select the number of visible rows.
5. Check or uncheck each row depending on your trade plan.
6. Use the score as an organizational aid, not as a trading signal.
This script is intended for education, journaling, and discretionary trade preparation. It does not predict market direction and should not be used as a standalone trading system.
Credits:
This version was customized and published by Faouzi Community. If this script is based on or inspired by another open-source checklist script, credit to the original author must be preserved according to PulseWire’s open-source reuse rules. Indicator

Indicator

Indicator

Indicator

Risk Panel (RR Dropdown)**Risk Panel PRO — Trade Smarter, Not Harder**
Turn your PulseWire chart into a complete decision-making dashboard.
This tool combines a precision risk calculator with a structured trading checklist, helping you stay disciplined, consistent, and in control — no matter your experience level.
🔹 **Instant Risk Clarity**
Know exactly how much you’re risking on every trade with real-time percentage calculations.
🔹 **Structured Rule-Based Trading**
Follow a clear checklist including session, bias, timeframe alignment, liquidity, stop placement, and risk-to-reward.
🔹 **Traffic Light Feedback System**
Simple green/red signals let you instantly see if your setup meets your rules — no overthinking.
🔹 **Custom Risk-to-Reward Control**
Quickly select between 1:1, 1:2, and 1:3 setups to maintain high-quality trades.
🔹 **Built for All Traders**
Whether you’re just starting out or refining a professional system, this panel keeps your process clean and consistent.
---
**Trade with confidence.
Eliminate guesswork.
Stick to your edge.**
Indicator

Indicator

Indicator

Indicator

Momentum ChecklistMomentum Checklist - Visual Trading Dashboard
A clean, easy-to-read dashboard that displays key momentum indicators in one convenient table. This indicator helps traders quickly determine the directional bias of price action by combining ADX, Directional Movement Index (DMI), and Money Flow Index (MFI).
What It Shows:
ADX (Average Directional Index): Measures trend strength. Green checkmark appears when ADX ≥ 20, indicating a strong trending market
DI+ (Positive Directional Indicator): Tracks upward price movement
DI- (Negative Directional Indicator): Tracks downward price movement
MFI (Money Flow Index): Volume-weighted momentum indicator. When > 50 indicates bullish money flow
Bias: Automatically calculates directional bias:
LONG: When DI+ > 25 and DI- < 20
SHORT: When DI- > 25 and DI+ < 20
NEUTRAL: When conditions are mixed
Trading Strategy:
This indicator helps determine the bias of price movement in a certain direction. When coupled with Bollinger Bands, it becomes a very powerful combination to catch those big explosive moves up or down. The momentum confirmation from this checklist combined with Bollinger Band squeezes or breakouts can significantly improve entry timing.
Recommended Usage:
Timeframes: 5-minute to 15-minute charts for optimal performance
Best Assets: US30, XAUUSD (Gold), BTCUSD, and most major indices
Works exceptionally well on volatile instruments with strong directional moves
Features:
Color-coded cells for instant visual confirmation
Customizable position (Top Right, Top Left, Bottom Right, Bottom Left)
Adjustable text size (Tiny, Small, Normal)
Configurable ADX, DMI, and MFI period settings
Perfect for day traders and scalpers looking for quick momentum confirmation before entering trades! Feel free to adjust any part of this description to match your style! 🎯 Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

Indicator

SMC Pre-Trade Checklist (Mozzys)Here is a **clean, professional description** you can use when publishing your PulseWire script.
It clearly explains what the indicator does and why traders use it—perfect for the public library.
---
# **📌 Script Description (for Publishing)**
**SMC Pre-Trade Checklist (Compact Edition)**
This indicator provides a **smart, compact on-chart checklist** designed for traders who use **Smart Money Concepts (SMC)**.
Instead of guessing or rushing entries, the checklist helps you confirm the essential SMC conditions *before* taking a trade.
The checklist displays as a **small 3-column panel** in the corner of your chart, making it easy to scan without covering price action.
All items are controlled through indicator settings, where you can tick each condition as you validate it in your analysis.
---
## **🔥 What This Tool Helps You Do**
This script helps you stay disciplined by verifying the core components of an SMC setup:
### **1. Higher-Timeframe (HTF) Bias**
* Market direction clarity
* Premium vs. discount zones
* HTF POIs and liquidity targets
### **2. Liquidity Conditions**
* Liquidity sweeps
* Liquidity-based take-profit targets
### **3. Market Structure**
* BOS/CHOCH confirmation
* Displacement
* Clean pullback into POI
### **4. Entry Validation**
* Quality POI
* LTF confirmation
* Logical SL/TP and RR
### **5. Risk Management**
* Correct position sizing
* Avoiding high-impact news
* Spread/volatility conditions
### **6. Trader Discipline**
* Trade matches your model
* No revenge or emotional trading
---
## **🎯 Why Traders Love This**
Most losses come from **breaking rules**, not market randomness.
This checklist forces consistency, clarity, and patience—especially in fast environments like FX, indices, and crypto.
* Prevents emotional entries
* Reduces impulsive trades
* Keeps you aligned with your SMC plan
* Works with any strategy or SMC style
* Clean, minimal, non-intrusive layout
---
## **📌 Features**
* Compact 3-column layout
* Customizable from the indicator settings
* Works on all timeframes and assets
* Zero chart clutter
* Perfect for rule-based traders
---
## **🚀 Who This Indicator Is For**
* SMC traders
* ICT-style traders
* Liquidity-based traders
* Anyone who wants more discipline & consistency
* Backtesters who want structured trade evaluation
--
Indicator

Goal Setting Strategies Viprasol# 🎯 Goal Setting Strategies Viprasol
A powerful goal tracking tool designed for disciplined traders who want to monitor their trading objectives, milestones, and progress directly on their charts.
## ✨ KEY FEATURES
### 📊 Flexible Goal Management
- Track anywhere from 1 to 20 trading goals simultaneously
- Adjustable goal count via simple input slider
- Each goal has its own unique emoji identifier
- Real-time progress counter
### ✅ Visual Tracking System
- Interactive checkbox system for goal completion
- Clear visual indicators (✅ completed, ⬜️ pending)
- Customizable goal names and descriptions
- Dynamic progress display
### 🎨 Full Customization
- **4 Position Options**: Top Left, Top Right, Bottom Left, Bottom Right
- **5 Font Sizes**: Tiny, Small, Normal, Large, Huge (optimized for all screen sizes)
- **Custom Colors**: Header, labels, background, achievement text
- **Premium Styling**: Modern cyber-themed design with professional appearance
### 💡 Perfect For:
- Daily/Weekly trading goal tracking
- Risk management milestones
- Profit target monitoring
- Trading plan compliance
- Personal development objectives
- Learning milestones
## 🔧 HOW TO USE
1. **Set Your Primary Goal**: Enter your main objective in "Primary Goal" field
2. **Choose Goal Count**: Select how many goals you want (1-20)
3. **Name Your Goals**: Customize each goal name in the "Goal Definitions" section
4. **Track Progress**: Check off goals as you complete them
5. **Customize Display**: Adjust colors, sizes, and position to match your chart setup
## 📐 INPUT GROUPS
### 🎯 Viprasol Goal Configuration
- Primary Goal Name
- Number of Goals (1-20)
### 📋 Goal Definitions
- All 20 goals with individual names and checkboxes
- Only enabled goals (based on count) will display
### 🌈 Premium Styling
- Goal Header Color
- Label Color
- Panel Background Color
- Achievement Color
- Header Font Size
- Milestone Font Size (Tiny/Small optimized for space)
### 📍 Elite Display
- Dashboard Position selector
## 💎 UNIQUE FEATURES
- **Space Efficient**: Tiny and Small font options for compact displays
- **Scalable**: Grow from 1 goal to 20 as your needs evolve
- **Non-Intrusive**: Overlay indicator that doesn't interfere with price action
- **Professional Design**: Clean, modern interface with cyber aesthetic
## 🎓 USE CASES
**Day Traders**: Track daily profit targets, trade count limits, max loss thresholds
**Swing Traders**: Monitor weekly/monthly goals, position management rules
**New Traders**: Learning milestones, strategy development checkpoints
**Experienced Traders**: Advanced risk management, portfolio objectives
## ⚙️ TECHNICAL DETAILS
- Version: Pine Script v5
- Type: Overlay Indicator
- Max Labels: 500
- Table-based display system
- No repainting
- Lightweight performance
## 🚀 GETTING STARTED
1. Add indicator to your chart
2. Set "Number of Goals" to your desired count (start small, scale up)
3. Customize goal names
4. Check boxes as you achieve goals
5. Watch your progress build!
## 📊 DISPLAY OPTIMIZATION
- Use "Tiny" or "Small" for maximum goals on small screens
- Use "Normal" or "Large" for standard monitors
- Use "Huge" for presentation or large displays
- Adjust position to avoid chart overlap
## 🎯 TRADING DISCIPLINE
This tool helps reinforce:
- Goal-oriented trading mindset
- Progress tracking accountability
- Milestone celebration
- Structured approach to trading development
---
**© viprasol**
*Designed for traders who take their goals seriously.* Indicator

Indicator

Indicator
