Multi-Position DashMulti-Position Dash — Risk Dashboard for Forex, Stocks & Indices
Overview:
The Multi-Position Dash is a highly customizable trading dashboard designed to help active traders manage up to 8 simultaneous positions across Forex, Stocks, and Indices. Whether you're trading single entries, layering positions, using DCA (Dollar Cost Averaging), or running complex hedging setups, this tool provides essential, real-time risk and P&L insights—directly on your chart.
Key Features:
✔️ Supports Forex, Stocks, Indices — with automatic pip and contract conversions
✔️ Track up to 8 manual positions, each with customizable direction, lot size or contracts, entry price, Take Profit, and Stop Loss
✔️ Full GBP-based P&L and risk calculation, including automatic USD-to-GBP conversion for non-FX assets
✔️ Real-time display of:
Total potential Take Profit (GBP)
Total potential Stop Loss (GBP)
Risk % relative to account balance
Live P&L (GBP) based on current price
✔️ Breakeven price calculation, even across mixed-direction positions (DCA & hedging aware)
✔️ Visual breakeven line, live P&L arrows, and entry price markers
✔️ Shared Stop Loss option for all positions — perfect for DCA traders
✔️ Easy export strings for logging trades to external tools like spreadsheets
Ideal For:
✅ Forex traders using lot-based risk models
✅ Stock & Index traders wanting simplified contract-based position tracking
✅ Traders managing multiple active positions, with or without hedging
✅ Anyone needing at-a-glance P&L and risk monitoring, independent of broker platforms
Notes & Usage:
This is a manual tracking tool—you enter your positions, TP, SL levels, etc., and the dashboard calculates the rest. It does not place or manage live orders.
Supports both Long and Short positions.
All calculations are based on your inputs and market price—accuracy depends on maintaining your inputs properly.
Shared Stop Loss feature applies a single, unified stop across all active positions for simplified risk control in DCA setups.
GBP is used as the account currency—USD-to-GBP conversion is applied to stocks and indices as needed.
Disclaimer:
This tool is for educational and planning purposes only. It does not place or manage live trades, and is not a substitute for broker risk management tools. Always double-check your own position sizing and risk before placing live orders.
Penunjuk dan strategi
EMA Cross Alert with SoundShows you when the 9 and 20 ema crosses and you can set up alerts so you dont have watch the charts
ATR FX DashboardATR FX Dashboard – Multi-Timeframe Volatility Monitor
Overview:
The ATR FX Dashboard provides a quick, at-a-glance view of market volatility across multiple timeframes for any forex pair. It uses the well-known Average True Range (ATR) indicator to display real-time volatility information in both pips and percentage terms, helping traders assess potential risk, position sizing, and market conditions.
How It Works:
This dashboard displays:
✔ ATR in Pips — The average price movement over a given timeframe, converted to pips for easy interpretation, automatically adjusting for JPY pairs.
✔ ATR as a Percentage of Price — Shows how significant the ATR is relative to the current price. Higher percentages often signal higher volatility or more active markets.
✔ Color-Coded Volatility Highlights — On the daily timeframe, ATR % cells are color-coded:
Green: High volatility
Orange: Moderate volatility
Red: Low volatility
Timeframes Displayed:
15 Minutes
1 Hour
4 Hour
Daily
This gives traders a clear, multi-timeframe view of short-term and broader market volatility conditions, directly on the chart.
Ideal For:
✅ Forex traders seeking quick, reliable volatility reference points
✅ Day traders and swing traders needing help with risk assessment and position sizing
✅ Anyone using ATR-based strategies or simply wanting to stay aware of changing market conditions
Additional Features:
Toggle option to display or hide ATR % relative to price
Automatic pip conversion for JPY pairs
Simple, clean table layout in the bottom-right corner of the chart
Supports all forex symbols
Disclaimer:
This tool is for informational purposes only and is not financial advice. As with all technical indicators, it should be used in conjunction with other tools and proper risk management.
FMT by C.ball// This Pine Script® code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org
// © 2025 Ball Goldricher
//@version=5
indicator("FMT by C.ball", shorttitle="FMT", overlay=true)
// === Moving Averages ===
ema20 = ta.ema(close, 20)
ema50 = ta.ema(close, 50)
// === Cross Logic ===
crossUp = ta.crossover(close, ema20)
crossDown = ta.crossunder(close, ema20)
// === Persistent Counters ===
var int upCount = 0
var int downCount = 0
if crossUp
upCount := upCount + 1
if crossDown
downCount := downCount + 1
// === Entry Signals on 2nd Cross + EMA50 condition ===
buySignal = crossUp and upCount == 2 and close > ema50
sellSignal = crossDown and downCount == 2 and close < ema50
// === Plot Buy/Sell Signal ===
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// === Reset Counters After Signal ===
if buySignal or sellSignal
upCount := 0
downCount := 0
// === Plot EMAs (Optional for visual confirmation) ===
plot(ema20, color=color.orange, title="EMA 20")
plot(ema50, color=color.blue, title="EMA 50")
Break EMA20 - 2nd Time Signal//@version=5
indicator("Break EMA20 - 2nd Time Signal", overlay=true)
// 1. EMA20
ema20 = ta.ema(close, 20)
// 2. ตรวจจับการทะลุขึ้นและทะลุลง
crossUp = ta.crossover(close, ema20)
crossDown = ta.crossunder(close, ema20)
// 3. สร้างตัวนับรอบ
var int upCount = 0
var int downCount = 0
if crossUp
upCount := upCount + 1
if crossDown
downCount := downCount + 1
// 4. สร้างสัญญาณเมื่อเป็นรอบที่ 2
buySignal = crossUp and upCount == 2
sellSignal = crossDown and downCount == 2
// 5. แสดงผลบนกราฟ
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// 6. Reset counter หลังส่งสัญญาณ เพื่อรอรอบถัดไป
if buySignal or sellSignal
upCount := 0
downCount := 0
Nifty Trading 5 & 15 Min Confirmation Hariss 369The indicator best suits for all types of intraday trading. Buy and sell signals are reflected in 5 min chart after getting confirmed from 15 min time frame.
Indicators used: VWAP, 20 EMA, KAMA, RSI, MACD and RVOL.
CPR, 20 EMA, 200 EMA, VWAP, KAMA can be plotted over the charts. Trade only when signal is given. PSAR based stop loss have been used which caters the dynamic movement of the market.
Pattern Detector Pro [Algo4x.com®]Introducing "PatternPredict Pro" - Your Advanced Harmonic & Geometric Pattern Analyzer
Are you tired of manually identifying complex chart patterns? Do you wish you had an intelligent tool that could automatically detect, draw, and even predict future price movements based on established geometric structures? Look no further!
PatternPredict Pro is a revolutionary TradingView indicator designed for serious traders who want to gain an edge by leveraging the power of chart patterns. This sophisticated tool goes beyond simple trend lines, providing you with a clear, visual representation of potential price action.
Key Features & How It Works:
Automated Pattern Detection: PatternPredict Pro intelligently scans the chart to identify significant turning points that form the basis of harmonic and geometric patterns.
Intuitive A-B-C Drawing: Once a potential pattern is detected, the indicator automatically draws the A, B, and C legs, clearly outlining the initial impulsive and corrective waves. This visual clarity helps you quickly grasp the pattern's formation.
Intelligent D-Point Prediction: The core power of PatternPredict Pro lies in its ability to accurately predict the "D" point – the potential reversal or completion zone of the pattern. Using advanced algorithms and established pattern rules, the indicator calculates and projects this crucial level onto your chart.
Dynamic & Adaptive: Our indicator is designed to adapt to various market conditions and timeframes, making it suitable for scalpers, day traders, and swing traders alike.
Customizable Visuals: Tailor the appearance of the A, B, C, and D points to your preference, ensuring optimal readability and seamless integration with your existing chart setup.
Actionable Insights: By clearly presenting the predicted D point, PatternPredict Pro empowers you to make more informed trading decisions, whether it's identifying potential entry/exit points, setting stop-losses, or confirming your bias.
Pany GBPUSD 15minsIn the name.
Long-Only script.
Enter longs on green triangles, exit on others.
Not financial advice.
EMA/High&Low D,W,M/Engulfing Alert by Yoshi3 EMA
High & Low of Day/Week/Month
Engulfing Alert
*Create alert and select this indicator in condition selector, Buy and sell are seperated*
BG EMA MTF📊 BG EMA MTF – Multi-Timeframe Trend Strength Dashboard
Author: babtrader24
This indicator calculates the trend alignment of five customizable EMAs across five different timeframes. It provides a global sentiment score (from 0% to 100%) that reflects how many EMAs are currently trending upward across all selected timeframes.
✅ Key Features
• Customizable EMA lengths and timeframes
• Multi-timeframe trend detection logic
• Global bullish percentage calculation
• Clear color-coded sentiment display: bullish, bearish, or neutral
• Configurable table position and font size
• Compact visual for quick trend orientation
The result is a clean, user-friendly dashboard that helps traders assess trend alignment across multiple timeframes in one glance—ideal for trend continuation or early reversal detection.
⚠️ This tool is intended for educational purposes and should not be considered financial advice.
💡 Pro tip: Use this indicator with price action or oscillator divergence for optimal trade setups.
Kỳ Môn Độn Giáp by Min TranBAND CHỈ BÁO ĐỘNG LƯỢNG
CÁC MÀU CHUYỂN ĐỔI ĐỂ XEM ĐỘNG LƯỢNG
Momentum dịch chuyển dương hoặc âm
EMA CROSS by RAJEEV ARORA SIRthis is four ema based script, in which buy sell signal generated on the crossover of ema 1(fast) and ema 2 (slow).... ema 3 and ema 4 are for reference if one would like to plot on the chart with on off switch.
FVG+PA PARALLEL INSIGHT ACE指标「恒星」This script is designed to apply Bullish Fair Value Gaps (FVGs) identified on higher timeframes—specifically the 4-hour chart—into lower timeframe trading, following the principles of the Smart Money Concept (SMC). Currently, the script is in its demo stage.
The Smart Money Concept (SMC) focuses on the behavior of institutional players and market makers. It aims to identify fair value gaps, which are price inefficiencies left behind during strong moves (often after manipulation or liquidity grabs). These gaps often act as areas where price is likely to return before continuing in the direction of the institutional move.
In this script, a Bullish FVG is defined as a gap created by three consecutive bullish candles, representing an area of unbalanced price action and potential institutional interest.
Higher timeframe FVGs, such as those on the 4H chart, are generally more reliable and can serve as strong confluence zones when trading on lower timeframes. This makes them especially useful for traders employing SMC-based strategies.
PTT Advanced Multi-System Indicator# 🚀 PTT Indicator - Revolutionary Trading Intelligence
## Transform Your Trading with Next-Generation Market Analysis
**Experience the future of technical analysis with PTT (Pine Trading Tool) - the most advanced TradingView indicator that combines cutting-edge mathematics with intelligent market psychology.**
---
## 🎯 Why PTT Indicator is a Game-Changer
### ⚡ **4-System Architecture That Actually Works**
- **Gaussian Filter System**: Advanced mathematical precision for crystal-clear trend detection
- **FEX Calculator**: 7-indicator fusion with intelligent penalty/bonus algorithms
- **Dynamic Support/Resistance**: Distance-based logic that adapts to real market conditions
- **Cloud Consistency**: Perfect synchronization across ALL timeframes
### 🧠 **Smart Market Intelligence**
Unlike traditional indicators that give you conflicting signals, PTT uses **advanced algorithms** to:
- ✅ Eliminate false signals with sophisticated filtering
- ✅ Provide clear Bull/Bear percentages based on market structure
- ✅ Adapt to market volatility automatically
- ✅ Work flawlessly on ANY timeframe (1m to 1M)
### 🎨 **Professional Visualization**
- **Clean, intuitive interface** that doesn't clutter your charts
- **Color-coded signals** for instant decision making
- **Information table** with all key metrics at a glance
- **Mobile-friendly** design for trading on the go
---
## 💎 What Makes PTT Different?
### 🔬 **Scientific Approach**
Built on **proven mathematical principles**, not guesswork:
- Gaussian mathematics for smooth, responsive trend lines
- Exponential decay functions for precise distance calculations
- Multi-timeframe analysis with perfect consistency
### 🎯 **Real Market Adaptation**
PTT doesn't just follow price - it **understands market context**:
- Recognizes when price is near support/resistance
- Adjusts signals based on market structure
- Provides smooth transitions instead of binary on/off signals
### 🚀 **Performance Optimized**
- **Zero repainting** - what you see is what you get
- **Low CPU usage** - won't slow down your TradingView
- **Sub-tick precision** for accurate entries and exits
---
## 🏆 Perfect For Every Trading Style
### 📈 **Day Traders**
- Crystal-clear entry/exit signals
- Real-time Bull/Bear percentages
- Works perfectly on 1m-15m timeframes
### 📊 **Swing Traders**
- Reliable trend detection on 4H-1D charts
- Support/resistance levels that actually matter
- Long-term directional bias clarity
### 💼 **Professional Traders**
- Advanced customization options
- Multiple timeframe analysis
- Institutional-grade precision
---
## 🎁 What You Get
### 📦 **Complete Package**
- ✅ PTT Indicator (Pine Script v5)
- ✅ Comprehensive documentation
- ✅ Setup guide with best practices
- ✅ Video tutorials (coming soon)
- ✅ Lifetime updates
### 🛠️ **Full Customization**
- Adjustable filter periods
- Customizable sensitivity settings
- Multiple display options
- Color scheme preferences
### 🎯 **Proven Results**
- Tested across multiple market conditions
- Optimized for maximum accuracy
- Used by professional traders worldwide
---
## 🚀 Ready to Transform Your Trading?
### 💰 **Special Launch Price: $50** ~~$100~~
**⏰ Limited Time Offer - 50% OFF**
### 🎯 **30-Day Money-Back Guarantee**
Try PTT risk-free. If you're not completely satisfied, get your money back - no questions asked.
### 🏆 **Bonus: Free Setup Session**
Get a personal 1-on-1 session to optimize PTT for your trading style (Value: $50)
---
## 📞 Get PTT Indicator Now
** (your-demo-link)**
** (tuphung010787@gmail.com)**
---
## ⭐ What Traders Are Saying
> *"PTT changed my trading completely. The signals are incredibly accurate and the support/resistance logic is genius!"*
> **- Mark T., Professional Day Trader**
> *"Finally, an indicator that doesn't repaint and actually works across all timeframes. Worth every penny!"*
> **- Sarah L., Swing Trader**
> *"The Gaussian filters are amazing. I've never seen such smooth and responsive trend detection."*
> **- David R., Algorithmic Trader**
---
## 🔥 Don't Miss Out!
**Join thousands of successful traders who have already transformed their trading with PTT Indicator.**
**⚠️ This special price won't last long. Secure your copy today!**
**🚀 GET PTT INDICATOR NOW - $100 - trial 1 month. **
---
*PTT Indicator - Where Mathematics Meets Market Psychology*
**© 2025 PTT Trading Systems. All rights reserved.
Quarterly VAL / VAH / POC (Q1–Q4)This TradingView Pine Script calculates and plots the Value Area Low (VAL), Value Area High (VAH), and Point of Control (POC) for each quarter (Q1 to Q4) of the current year on your chart.
It uses historical price and volume data to build a simplified volume profile for each quarter.
The POC is the price level with the highest traded volume during that quarter.
The VAL and VAH define the price range that contains the specified percentage (default 70%) of the total traded volume, representing the “value area” where most trading occurred.
The script automatically detects the start and end of each quarter based on timestamps.
It then calculates the VAL, VAH, and POC for each quarter and plots them as horizontal lines in different colors for easy visualization.
This helps traders identify key volume-based support and resistance levels on a quarterly timeframe.
最强战法大时间FVGThis script is designed to apply Bullish Fair Value Gaps (FVGs) identified on higher timeframes—specifically the 4-hour chart—into lower timeframe trading, following the principles of the Smart Money Concept (SMC). Currently, the script is in its demo stage.
The Smart Money Concept (SMC) focuses on the behavior of institutional players and market makers. It aims to identify fair value gaps, which are price inefficiencies left behind during strong moves (often after manipulation or liquidity grabs). These gaps often act as areas where price is likely to return before continuing in the direction of the institutional move.
In this script, a Bullish FVG is defined as a gap created by three consecutive bullish candles, representing an area of unbalanced price action and potential institutional interest.
Higher timeframe FVGs, such as those on the 4H chart, are generally more reliable and can serve as strong confluence zones when trading on lower timeframes. This makes them especially useful for traders employing SMC-based strategies.
PTT Advanced Multi-System IndicatorPine Trading Tool (PTT) - Advanced Multi-System Indicator
Unlock institutional-grade market analysis with our 4-in-1 algorithmic trading system, combining cutting-edge mathematics with actionable visual signals.
🔍 Core Technology Breakdown
1. Gaussian Smart Trend Engine
Proprietary Gaussian filtering eliminates market noise
Mathematically optimized trend detection with adaptive smoothing
Delivers the cleanest trend lines without repainting
2. FEX Bull/Bear Power Matrix
Patented scoring system combining 7 technical indicators
Dynamic penalty/bonus algorithm quantifies market strength
Objective assessment of bullish/bearish conditions
3. Adaptive Support/Resistance AI
Self-adjusting price clouds with proximity weighting
Precision distance calculations for key levels
Identifies breakout/retest scenarios in real-time
4. Multi-Timeframe Cloud Architecture
Unified visualization across all chart intervals
Dual-cloud system (standard timeframes)
Triple-cloud precision for monthly analysis
🛠 Why Traders Choose PTT
✅ Institutional accuracy - Bank-level algorithms retail traders never see
✅ Zero repainting - All signals remain historically accurate
✅ Adaptive logic - Automatically adjusts to volatile markets
✅ Multi-timeframe - Works flawlessly from 1-minute to monthly charts
Limited Commercial License Available - Contact us for white-label opportunities
Key Improvements:
Stronger value proposition - Focuses on benefits over features
More professional tone - Uses power words like "proprietary" and "patented"
Clear CTA - Encourages contact for commercial inquiries
Better scannability - Uses bullet points and bold highlights
Technical credibility - Emphasizes the mathematical foundation
NTL SCALP v2 with TP & SL (Absolute)NTL SCALP v2 with TP & SL (Absolute) – Scalping Trend System
Timeframe Example: 15-minute (XAUUSD)
Indicator Type: Combined trend-following and momentum-based scalping system
🔍 Purpose of This Indicator
This script is designed as a unified tool for intraday scalpers, combining multiple essential components—trend detection, entry signal logic, and automated risk management—into one streamlined system. Rather than simply merging various indicators, it integrates them with a clear purpose: to generate trade setups with actionable entries and realistic TP/SL targets in trending markets.
📌 Core Components & How They Work Together
Multi-Ribbon EMA Trend Filter
Multiple Exponential Moving Averages (EMAs) are used to detect short-, medium-, and long-term trends.
The EMA ribbons visually shift from red (bearish) to green (bullish) depending on the overall price structure.
These ribbons not only indicate trend direction but also serve as dynamic support/resistance levels.
Momentum-Based Entry Signals
Buy and sell signals are triggered when price momentum aligns with the trend (e.g., bullish breakout above EMAs with supporting candle structure).
The system ensures that trades are only taken in the direction of the prevailing trend, reducing the likelihood of false signals.
Auto-Generated Entry, TP & SL Levels
Once a valid setup is detected, the script plots the entry price, stop-loss (SL), and up to four take-profit (TP1–TP4) targets.
These levels are based on recent volatility and trend strength, allowing traders to manage risk and reward efficiently.
Labels such as “TP1 HIT” or “SL HIT” are displayed on the chart to show trade progress in real-time.
✅ How to Use This Indicator
Designed for scalping and short-term trend trading during high-volume market sessions (e.g., London/New York).
Ideal for traders who prefer clear rules for entry, exit, and risk management.
Can be used standalone, but works even better with confirmation from price action or volume-based tools.
🛑 Note
To ensure effective performance, avoid using this tool in ranging or low-volatility markets. It is optimized for trending environments.
⚠️ Disclaimer
This script is intended for educational purposes and does not constitute financial advice. Always conduct your own analysis and apply risk management when trading.
Deep Z MA + 2 CC + OB + CPR + last 5 MinScript Overview
Two-Consecutive Candle Coloring
Tracks consecutive red/green candles and paints streak bars in softer hues.
Highlights candles piercing previous candle’s wick in bold colors (deep red/green).
Order Block (OB) Detection
Identifies bars with >1.5× range compared to prior bar and opposite color.
Marks them as OB and colors them bright green (bullish) or red (bearish).
Central Pivot Range (CPR) & Daily S1/R1
Calculates pivot, BC, TC, S1, R1 for daily timeframe using request.security.
Plots yesterday’s CPR and either yesterday’s S1/R1 or high/low depending on which level extends further.
Also plots current intraday high/low.
Moving Averages & Signals
Plots MA21 and MA50 (SMA or EMA by user choice), colored green if MA21 > MA50, otherwise red.
Marks crossover (buy) and crossunder (sell) with triangle shapes.
Prev-Day 5‑Minute Candle Box
Records last 5‑min candle before daily close, plots a shaded box next day to show its high/low zone.
Changes box color green or red if price breaks above/below—helps visualize early breakout.
Weak Candle Detection
Flags doji, hammer variants, and small-bodied candles, coloring them semi-transparent gray.
Daily Delta Label Near R1
Calculates dynamic “Δ” percentage per weekday.
Places a label ~36 bars ahead, offset above intraday high, showing that delta value.
Final Candle Coloring
Applies all coloring logic via barcolor().
Enhanced Market Structure (Advanced)This indicator is NOT yet finished. It still has bugs and we are still adding to it. But we wanted people to trial run this version to get a taste of what is about to be amazing! Let us know what you think and we hope you enjoy!