📈 RX Swing This Pine Script strategy is designed for trading Nifty options on a 4-hour chart. Here’s a breakdown of how it works:
Timeframe Enforcement: The strategy is designed to only work on a 4-hour chart. If you try to run it on any other timeframe, it will throw an error.
Inputs:
RSI length: Determines the length for the Relative Strength Index (RSI) indicator.
RSI MA Length: Determines the moving average length for smoothing the RSI.
MA Type: Allows you to choose between SMA or EMA for the RSI moving average.
Stop Loss & Take Profit: These define the exit points in percentage terms.
Capital per Trade: Defines how much capital is allocated per trade.
Lot Size: Specifies the number of Nifty options contracts to trade.
Trailing Stop-Loss Points: Defines how many points the price has to move against the position before the trailing stop is triggered.
Trading Logic:
RSI & Moving Average: The strategy generates buy (call) and sell (put) signals based on the crossover and crossunder of RSI and its moving average.
Position Size: The position size is based on capital allocated and the current price of the Nifty.
Stop Loss/Take Profit: The strategy uses both percentage-based stop loss and take profit levels, as well as a trailing stop mechanism to lock profits.
Exit Conditions:
The strategy has several exit triggers:
Trailing Stop-Loss: When the price moves against the trade by a certain number of points, it exits.
Reversal Exit: The strategy will exit a position if the opposite signal (long vs. short or vice versa) occurs.
TP/SL Exit: The strategy will also exit the position when the target profit or stop loss levels are hit.
Loss Count: The strategy tracks the number of consecutive losing trades, and if the count exceeds two, no new trades are allowed until the count resets.
Reset Loss Count: The loss count resets every day at 9:15 AM.
Plotting:
Entry signals (long/short) are marked with green (buy call) and red (buy put) triangles.
Exit signals for TP, SL, Reversal, and Trailing SL are marked with respective shapes (crosses, circles, squares).
This strategy is designed to manage risk with a stop loss and take profit system, while also incorporating a trailing stop-loss mechanism to lock in profits. It ensures that the strategy works only on the 4-hour chart, and limits trading activity after consecutive losses to maintain discipline.
Indicators and strategies
Market Pulse TableMarket Pulse Table — Multi-Asset Momentum Dashboard
This indicator creates a customizable dashboard that monitors key market assets and their momentum using MACD and RSI signals. It's designed to give a quick pulse of market sentiment and trend strength in one glance.
📊 What it shows:
% Daily Change of selected symbols (e.g., VIX, ES1!, NQ1!, YM1!, RTY1!, DXY)
MACD Signal: Buy / Sell / Neutral, based on your selected timeframe
RSI Value: Color-coded by strength and potential overbought/oversold conditions
⚙️ How to use:
Select the assets you want to track in the settings.
Choose your preferred timeframes for MACD and RSI.
The table updates in real time with:
Price % change (colored by intensity)
MACD signal direction
RSI value (green/red for oversold/overbought)
📍 Table placement:
You can position the table anywhere on your chart (top, middle, bottom — left, center, or right).
EMA200/EMA7 HA w/ TP/SL & Markdown Alerts1. Purpose
A hybrid trend-and-momentum strategy on Heikin-Ashi candles that:
Enters long when price is sufficiently below the 200-period EMA and then crosses up above the 7-period EMA, plus bullish HA trend/momentum.
Enters short when price is sufficiently above the 200-period EMA and then crosses down below the 7-period EMA, plus bearish HA trend/momentum.
Applies configurable take-profit and stop-loss levels on every trade.
Emits rich “Markdown” alerts and plots key levels and a live stats table on the chart.
2. Inputs
Input Description Default
Enable Longs Toggle permission to open long trades true
Enable Shorts Toggle permission to open short trades false
Take Profit % TP distance from entry (percent) 2 %
Stop Loss % SL distance from entry (percent) 2 %
Long Threshold % How far below EMA200 price must be to trigger a long raw signal 0.1 %
Short Threshold % How far above EMA200 price must be to trigger a short raw signal 0.1 %
3. Core Calculations
Heikin-Ashi candles
ha_open / ha_close via request.security(heikinashi,…)
Trend EMAs on HA close
ema200 (200-period) in red
ema7 ( 7-period) in blue
Trend filters
Bullish HA if ha_close > ha_open
Bearish HA if ha_close < ha_open
Momentum filters (two consecutive HA closes rising/falling)
momBull: two rising bars
momBear: two falling bars
4. Signal Generation
Raw long signal (sigLong0) when
(ema200 - ha_close)/ema200 > thLong (price sufficiently below EMA200)
ta.crossover(ha_close, ema7)
Raw short signal (sigShort0) when
(ha_close - ema200)/ema200 > thShort (price sufficiently above EMA200)
ta.crossunder(ha_close, ema7)
Final signals only fire if the corresponding raw signal AND trend/momentum filters and the “enable” checkbox are satisfied.
5. Entries & Exits
On Long:
Record entryPrice = close
Compute tpLine = entryPrice * (1 + tpPerc)
Compute slLine = entryPrice * (1 - slPerc)
strategy.entry("Long", …)
On Short:
tpLine = entryPrice * (1 - tpPerc)
slLine = entryPrice * (1 + slPerc)
strategy.entry("Short", …)
All exits handled by
pinescript
Copier
Modifier
strategy.exit("Exit Long", from_entry="Long", limit=tpLine, stop=slLine)
strategy.exit("Exit Short", from_entry="Short", limit=tpLine, stop=slLine)
6. Alerts
Rich Markdown alerts sent at each entry, containing:
Pair & exchange
Entry price & leverage (hard-coded “5x”)
Calculated TP & SL levels
Simpler alertconditions for chart-based alerts:
“🔥 Achat {{ticker}} à {{close}}”
“❄️ Vente {{ticker}} à {{close}}”
7. Visuals & Stats Table
Plots:
TP/SL lines in green/red (only when a position is open)
EMA200 (red) & EMA7 (blue) overlays
Live stats table (bottom-right) updated every 10 bars showing:
Total trades
Win rate (%)
Net profit
Average profit per trade
Max drawdown
In essence, this strategy blends a trend-filter (200 EMA) with a momentum-confirmation (crossover of 7 EMA on HA bars), applies strict risk management (TP/SL), and surfaces both visual and alert-based feedback to help you capture small, disciplined scalps in trending markets. Ready for telegram
GCM Supreme Trading System ProOverview:
The GCM Supreme Trading System Pro is a next-generation, all-in-one indicator designed to identify high-probability trade setups with unmatched precision. Built for both intraday and swing traders, it combines dynamic trend analysis, smart volume confirmation, liquidity sweeps, institutional zone detection, and automated breakout alerts into one powerful tool.
✨ Key Features:
Dynamic Trend Detection:
Instantly visualize bullish and bearish trends with a proprietary Jurik-like smoothing algorithm.
Sentiment Background Coloring:
Quickly gauge market sentiment with automatic background shading for bullish, bearish, or neutral phases.
Smart Volume Spike Filter:
Filters out weak moves by confirming entries only when volume surges above the dynamic average.
Liquidity Sweep Detection:
Identifies stop-hunt moves (false breakouts) to catch smart money entries at optimal reversal points.
Auto Trendline Breakout System:
Automatically draws key trendlines and alerts you on confirmed breakouts with volume validation.
Institutional Zones Mapping:
Highlights important high/low zones where major players (institutions) are likely positioning.
Integrated Dashboard:
Real-time dashboard showing Trend Status, Volume State, Last Entry, Breakout Alerts, and Risk Conditions — keeping you informed at a glance.
Optimized Alerts:
Receive instant notifications for Smart Long/Short entries and Breakouts directly to your phone, app, or email.
🚀 Ideal For:
Intraday Traders
Swing Traders
Smart Money Concepts (SMC) Followers
Breakout Traders
Risk-Conscious Professionals
Linear Regression with StdDev BandsLinear Regression with Standard Deviation Bands Indicator
This indicator plots a linear regression line along with upper and lower bands based on standard deviation. It helps identify potential overbought and oversold conditions, as well as trend direction and strength.
Key Components:
Linear Regression Line: Represents the average price over a specified period.
Upper and Lower Bands: Calculated by adding and subtracting the standard deviation (multiplied by a user-defined factor) from the linear regression line. These bands act as dynamic support and resistance levels.
How to Use:
Trend Identification: The direction of the linear regression line indicates the prevailing trend.
Overbought/Oversold Signals: Prices approaching or crossing the upper band may suggest overbought conditions, while prices near the lower band may indicate oversold conditions.
Dynamic Support/Resistance: The bands can act as potential support and resistance levels.
Alerts: Option to enable alerts when the price crosses above the upper band or below the lower band.
Customization:
Regression Length: Adjust the period over which the linear regression is calculated.
StdDev Multiplier: Modify the width of the bands by changing the standard deviation multiplier.
Price Source: Choose which price data to use for calculations (e.g., close, open, high, low).
Alerts: Enable or disable alerts for band crossings.
This indicator is a versatile tool for understanding price trends and potential reversal points.
Horizontal Lines from Arrayđây công cụ kẻ
cực hữu dụng
cho trend ngang
quá tuyệt với
đánh mọi khung thời gian
Directional Movement IndexThis is a basic DMI without the ADX and two lines added into the field to show volume imbalance more clearly.
Easy MA SignalsEasy MA Signals
Overview
Easy MA Signals is a versatile Pine Script indicator designed to help traders visualize moving average (MA) trends, generate buy/sell signals based on crossovers or custom price levels, and enhance chart analysis with volume-based candlestick coloring. Built with flexibility in mind, it supports multiple MA types, crossover options, and customizable signal appearances, making it suitable for traders of all levels. Whether you're a day trader, swing trader, or long-term investor, this indicator provides actionable insights while keeping your charts clean and intuitive.
Configure the Settings
The indicator is divided into three input groups for ease of use:
General Settings:
Candlestick Color Scheme: Choose from 10 volume-based color schemes (e.g., Sapphire Pulse, Emerald Spark) to highlight high/low volume candles. Select “None” for TradingView’s default colors.
Moving Average Length: Set the MA period (default: 20). Adjust for faster (lower values) or slower (higher values) signals.
Moving Average Type: Choose between SMA, EMA, or WMA (default: EMA).
Show Buy/Sell Signals: Enable/disable signal plotting (default: enabled).
Moving Average Crossover: Select a crossover type (e.g., MA vs VWAP, MA vs SMA50) for signals or “None” to disable.
Volume Influence: Adjust how volume impacts candlestick colors (default: 1.2). Higher values make thresholds stricter.
Signal Appearance Settings:
Buy/Sell Signal Shape: Choose shapes like triangles, arrows, or labels for signals.
Buy/Sell Signal Position: Place signals above or below bars.
Buy/Sell Signal Color: Customize colors for better visibility (default: green for buy, red for sell).
Custom Price Alerts:
Custom Buy/Sell Alert Price: Set specific price levels for alerts (default: 0, disabled). Enter a non-zero value to enable.
Set Up Alerts
To receive notifications (e.g., sound, popup, email) when signals or custom price levels are hit:
Click the Alert button (alarm clock icon) in TradingView.
Select Easy MA Signals as the condition and choose one of the four alert types:
MA Crossover Buy Alert: Triggers on MA crossover buy signals.
MA Crossover Sell Alert: Triggers on MA crossover sell signals.
Custom Buy Alert: Triggers when price crosses above the custom buy price.
Custom Sell Alert: Triggers when price crosses below the custom sell price.
Enable Play Sound and select a sound (e.g., “Bell”).
Set the frequency (e.g., Once Per Bar Close for confirmed signals) and create the alert.
Analyze the Chart
Moving Average Line: Displays the selected MA with color changes (green for bullish, red for bearish, gray for neutral) based on price position relative to the MA.
Buy/Sell Signals: Appear as shapes or labels when crossovers or custom price levels are hit.
Candlestick Colors: If a color scheme is selected, candles change color based on volume strength (high, low, or neutral), aiding in trend confirmation.
Why Use Easy MA Signals?
Easy MA Signals is designed to simplify technical analysis while offering advanced customization. It’s ideal for traders who want:
A clear visualization of MA trends and crossovers.
Flexible signal generation based on MA crossovers or custom price levels.
Volume-enhanced candlestick coloring to identify market strength.
Easy-to-use settings with tooltips for beginners and pros alike.
This script is particularly valuable because it combines multiple features into one indicator, reducing chart clutter and providing actionable insights without overwhelming the user.
Benefits of Easy MA Signals
Highly Customizable: Supports SMA, EMA, and WMA with adjustable lengths.
Offers multiple crossover options (VWAP, SMA10, SMA20, etc.) for tailored strategies.
Custom price alerts allow precise targeting of key levels.
Volume-Based Candlestick Coloring: 10 unique color schemes highlight volume strength, helping traders confirm trends.
Adjustable volume influence ensures adaptability to different markets.
Flexible Signal Visualization: Choose from various signal shapes (triangles, arrows, labels) and positions (above/below bars).
Customizable colors improve visibility on any chart background.
Alert Integration: Built-in alert conditions for crossovers and custom prices support sound, email, and app notifications.
Easy setup for real-time trading decisions.
User-Friendly Design: Organized input groups with clear tooltips make configuration intuitive.
Suitable for beginners and advanced traders alike.
Example Use Cases
Swing Trading with MA Crossovers:
Scenario: A trader wants to trade Bitcoin (BTC/USD) on a 4-hour chart using an EMA crossover strategy.
Setup:
Set Moving Average Type to EMA, Length to 20.
Set Moving Average Crossover to “MA vs SMA50”.
Enable Show Buy/Sell Signals and choose “arrowup” for buy, “arrowdown” for sell.
Select “Emerald Spark” for candlestick colors to highlight volume surges.
Usage: Buy when the EMA20 crosses above the SMA50 (green arrow appears) and volume is high (dark green candles). Sell when the EMA20 crosses below the SMA50 (red arrow). Set alerts for real-time notifications.
Scalping with Custom Price Alerts:
Scenario: A day trader monitors Tesla (TSLA) on a 5-minute chart and wants alerts at specific support/resistance levels.
Setup:
Set Custom Buy Alert Price to 150.00 (support) and Custom Sell Alert Price to 160.00 (resistance).
Use “labelup” for buy signals and “labeldown” for sell signals.
Keep Moving Average Crossover as “None” to focus on price alerts.
Usage: Receive a sound alert and label when TSLA crosses 150.00 (buy) or 160.00 (sell). Use volume-colored candles to confirm momentum before entering trades.
When NOT to Use Easy MA Signals
High-Frequency Trading: Reason: The indicator relies on moving averages and volume, which may lag in ultra-fast markets (e.g., sub-second trades). High-frequency traders may need specialized tools with real-time tick data.
Alternative: Use order book or market depth indicators for faster execution.
Low-Volatility or Sideways Markets:
Reason: MA crossovers and custom price alerts can generate false signals in choppy, range-bound markets, leading to whipsaws.
Alternative: Use oscillators like RSI or Bollinger Bands to trade within ranges.
This indicator is tailored more towards less experienced traders. And as always, paper trade until you are comfortable with how this works if you're unfamiliar with trading! We hope you enjoy this and have great success. Thanks for your interested in Easy MA Signals!
Djay Strategy with EMA Crossover and Sideways FilterDjay Strategy with EMA Crossover and Sideways Filter
ryantrad3s session highs and lowsbecome profitable with this.
pwease subscribe to my youtube aswell: ryantrad3s
StochRSI+ LiteStochRSI+ Lite is an enhanced version of the classic Stochastic RSI.
It includes:
✅ Adaptive smoothing using ATR
✅ EMA-based trend filter to reduce false signals
✅ RSI calculated on HLC3 for smoother response
✅ Transparent 20–80 range highlight
✅ Basic divergence detection with visual markers
Ideal for crypto and volatile markets.
Open source & free to use — if you like it, tips are appreciated 🙏
bc1qnzc2s4t9kws8xpcxthsemth5m3kqmnkutsfe3f
RSI + MA Kombine AL-SAT//@version=5
indicator("RSI + MA Kombine AL-SAT", overlay=true)
// Hareketli Ortalamalar
shortMA = ta.sma(close, 9)
longMA = ta.sma(close, 21)
// RSI
rsi = ta.rsi(close, 14)
// Kombine Sinyaller
buySignal = ta.crossover(shortMA, longMA) and rsi < 30
sellSignal = ta.crossunder(shortMA, longMA) and rsi > 70
// MA'ları çiz
plot(shortMA, title="Kısa MA", color=color.green)
plot(longMA, title="Uzun MA", color=color.red)
// Sinyalleri göster
plotshape(buySignal, title="AL", location=location.belowbar, color=color.green, style=shape.labelup, text="AL")
plotshape(sellSignal, title="SAT", location=location.abovebar, color=color.red, style=shape.labeldown, text="SAT")
Planting & Harvesting SeasonsHello all,
as a commodity trader, I use a lot of seasonal patterns in my analysis. Some time ago, I came up with the idea to develop a simple script that visually overlays the typical planting and harvesting periods for key agricultural futures directly on the chart.
This script automatically detects the underlying commodity based on the symbol (e.g. ZC, ZW, ZS, CT) and displays color-coded zones for each seasonal window. These zones are based on historical crop calendars and help identify when planting or harvesting typically takes place. The goal is to better align technical setups with fundamental seasonal factors.
This is a basic version and meant as a visual aid — not a trading signal in itself.
Hope you enjoy it and any feedback is highly appreciated!
SAR Pullback By TradingConTotoName & Version
SAR Pullback UX Improved (Pine Script v5)
Core Logic
Calculates two EMAs (fast and slow) to identify overall trend direction.
Uses the Parabolic SAR to detect “flip” points (when SAR crosses price), marking micro-trend reversals.
Micro-Trend Extremes
Tracks the highest high after a bullish flip (SAR below price) and the lowest low after a bearish flip (SAR above price).
These extremes feed into the stop-loss approximation.
Approximate Stop-Loss (“SL aprox”)
If SAR is below price (bullish), SL ≔ (micro-trend high − current SAR).
If SAR is above price (bearish), SL ≔ (current SAR − micro-trend low).
Leverage Calculation
User-defined “UR in USD” input.
Computes leverage as UR ÷ SL, giving you an estimate of position sizing potential.
On-Chart Signals
BUY label at each bullish flip, with SL and leverage printed.
SELL label at each bearish flip, likewise showing SL and leverage.
Customizable UI
Inputs to toggle display of SL, leverage, or both.
Choose your UR value, panel background/text colors, and BUY/SELL label colors.
Panel position fixed at top-right by default, showing a 2×3 table:
Header row (“Metric” / “Value”)
“SL aprox” row
“Leverage” row
Visuals
Plots the slow EMA colored by trend.
Draws SAR as crosses.
Bar colors shade green/red according to bullish/bearish conditions.
Semi-transparent, styled panel for quick glance of key metrics.
This indicator combines trend filtering, automated stop-loss sizing, and leverage guidance into a single, fully-configurable Pine Script tool—giving you clear on-chart signals plus a neat metrics panel for streamlined decision-making.
Opening RangeGrabs 30 sec opening/closing range data, must have premium subscription to do so, if not only 1 minute opening/closing range is possible.
Look at the opening range of the first 30 seconds at 9:30:00 to 9:30:30 I use that as the baseline for positioning. I look to be long above or short below that price range.
If we are above yesterday’s closing range and we trend above the current opening range I look for a trend day which is around 20% of trading days
If we are in between those levels we are likely in a range bound consolidation and which is the majority of trading days.
From: x.com
Inspiration for indicator: Wicky
📦 Sessions + 🎯 Killzones (Brussels Time)📦 Sessions + 🎯 Killzones (Brussels Time)
This script visually highlights the main Forex trading sessions and killzones directly on your chart, adjusted to Brussels Time (automatically handles summer/winter time). It includes:
✅ Asia, London, and New York Sessions — shown with colored background zones
🎯 Killzones for London & New York — marked with darker overlays during high-probability trading windows
📍 Session Opens — triangle markers at the start of each session
📈 Previous Day's High & Low — automatically plotted with dynamic lines that reset each day
Ideal for ICT-style traders and anyone who uses session-based strategies. Clean, clear, and timezone-aware.
M2 Global Liquidity Index [Extended + Offset]M2 Global Liquidity Index
This indicator visualizes global M2 money supply, weighted in USD, based on major economic regions.
Features:
Standard Mode: Includes M2 data from the USA, China, Eurozone, Japan, and the UK.
Extended Mode: Adds Switzerland, Canada, India, Russia, Brazil, South Korea, Mexico, and South Africa.
Offset Function: Adjustable time lag (78 or 108 days) to analyze the delayed impact of liquidity on financial markets.
Use Case:
Designed to help identify global liquidity cycles and assess potential turning points in financial markets. Rising global liquidity generally supports risk assets like equities and crypto, while declining liquidity can put downward pressure on these markets.
Technical Details:
Non-USD M2 values are converted using real-time FX rates.
All values are displayed in trillions of USD (Tn).
Note:
Not all countries release M2 data in real-time or at the same frequency. Minor delays and discrepancies may occur.
Example:
Dynamic Trend Bands [ChartPrime]The Dynamic Trend Bands is a versatile trend-following indicator that uses a double-smoothed Hull Moving Average (HMA) to detect market trends, combined with dynamic bands that provide insight into potential momentum shifts and volatility-based price zones.
⯁ KEY FEATURES
Double HMA Trend Filter
Utilizes a double-smoothed HMA for a smoother and more responsive trend line, reducing noise while highlighting clear market trends.
float base = ta.hma(ta.hma(close, length - 10), length)
Dynamic Volatility Bands
Plots upper and lower bands based on volatility, positioned above the price in a downtrend and below the price in an uptrend.
Momentum Shift Detection
Highlights bars in orange when a potential momentum shift occurs:
- During a downtrend, if the high breaks above the upper band.
- During an uptrend, if the low breaks below the lower band.
Customizable Band Appearance
Users can adjust the size, distance, and colors of the bands, as well as choose whether to display the mid-band line and fill the area between bands.
Timeframe Flexibility
Allows selection of different calculation timeframes, enabling traders to adapt the indicator to various trading strategies.
⯁ HOW TO USE
Identify Trend Direction
Use the double HMA line to confirm the prevailing trend:
- Above the bands: downtrend.
- Below the bands: uptrend.
Spot Potential Momentum Shifts
Watch for orange-highlighted bars signaling potential reversals or weakening trends.
Optimize Entries and Exits
Enter trades on trend continuation signals while using band breaks to spot potential reversal zones.
Customize to Fit Your Strategy
Adjust the bands’ size, distance, and calculation timeframe to suit scalping, swing, or position trading.
⯁ CONCLUSION
The Dynamic Trend Bands is an all-in-one tool that helps traders assess trend strength, detect momentum shifts, and identify key price zones. Its customizable features make it adaptable for various trading styles and market conditions.
Customized VWAP + Signals + Session Dashboard📊 What This Indicator Does
Plots a custom VWAP line (based on the current session)
Calculates RSI (from the same timeframe)
Gives buy/sell signals based on VWAP + RSI logic
Shows a clean live dashboard on the right side of your screen with:
Current price
VWAP value
RSI value
Trading session (Asian, London, NY, etc.)
Signal (BUY / SELL / No Signal)
🛠 How It Works (Logic Behind Signals)
Signal Type Conditions
🔵 Buy Price crosses above VWAP AND RSI is below 30 (oversold = possible bottom)
🔴 Sell Price crosses below VWAP AND RSI is above 70 (overbought = possible top)
This is a mean-reversion style strategy — buying dips near VWAP and selling tops, using RSI as exhaustion confirmation.
📈 How To Use It On Your Chart
Apply the indicator to a chart like Gold (XAUUSD) or any asset you like.
Use a short-term timeframe (1m, 5m, 15m, 1 hour) and for intraday trades or scalping.
Watch the dashboard on the right:
Green = Buy signal triggered
Red = Sell signal triggered
Gray = No signal
Understand the VWAP Line
This is the volume-weighted average price since the start of the day.
It resets daily.
Green VWAP means price is trading above (bullish bias).
Red VWAP means price is trading below (bearish bias).
🟢 BUY SIGNAL:
Triggered when price crosses above the VWAP and
RSI is rising over the last 2 candles (momentum confirmation)
🔴 SELL SIGNAL:
Triggered when price crosses below the VWAP and
RSI is falling over the last 2 candles
These signals are momentum-based VWAP reversals or continuations.
Use the Dashboard
You’ll see the live dashboard on the right center:
📈 Price
📊 VWAP
📉 RSI
🕒 Session (Asian, London, NY, Sydney)
🟢/🔴 Signal Status
Use it as a quick glance tool for market bias and signal clarity.
🧠 Best Practices
Combine with price action: Look for structure, candle patterns, or support/resistance near VWAP.
Trade in the direction of trend: Use a higher timeframe EMA or VWAP trend bias for confluence.
Avoid ranging markets: In sideways markets, VWAP gets chopped and signals may be false.
Like this indicator? Boost it ♥
LAOS Gold Price in LAK By LSENMany people in Laos are confused about the actual price of Gold in local currency.
This script provides a simple and live updating way to convert the international gold price (XAU/USD) into Lao Kip Currency in BAHT-weight gold (15.244g).
By default, it uses an exchnage rte of 21,000 KIP = 1 USD, But you can easily customize the rate to fit your needs.
-See things as they truly are. Suffering arises when you try to resist reality. Don't let greed and FOMO fuel the fire.
ຂໍໃຫ້ທຸກທ່ານໂຊກດີ
Highest/Lowest Range in TimeframeThis script helps traders visually identify the highest high and lowest low within a customizable range of recent bars.
🔍 Key Features
Scans the last 100 to 1000 bars (user-defined)
Automatically detects:
The highest wick (high) and lowest wick (low)
Draws dotted green horizontal lines at both levels
Shows a label indicating the percentage range between high and low
Displays real-time high and low price labels directly on the chart
⚙️ Use Cases
Quickly spot price extremes over your desired time window
Visually measure market range and volatility
Identify breakout potential or reversal zones
✅ How to Use
Add the script to your chart.
Set the “Bars to Scan” input to your desired lookback period (between 100–1000).
Use the displayed lines and labels to identify key high/low price levels and range metrics.
SMC + EMA + Candles + RSI/CCI + BOS + Trailingfind SMC + EMA + Candles + RSI/CCI + BOS + Trailing in chart