المؤشرات والاستراتيجيات
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.
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")
Horizontal Price TableOverview:
This script displays a dynamic price table on your chart, showing real-time prices and daily percentage changes for up to 7 user-defined tickers. You can customize both which tickers are shown and how many are visible, all through the settings panel.
How it works (Step-by-Step):
User-Defined Tickers:
The script provides input fields for up to 7 tickers using input.symbol(). You can track stocks, indexes, ETFs, crypto, or futures — anything supported by TradingView.
Choose How Many to Display:
An additional dropdown lets you choose how many of the 7 tickers to actually display (between 1 and 7). This gives you control over screen space and focus.
Market Data Fetching:
For each displayed ticker, the script fetches:
The current day’s closing price (close)
The previous day’s closing price (close )
This data is pulled using request.security() on the daily timeframe (1D).
% Change Calculation:
The script calculates the daily percentage change using:
(Current Price−Previous Close)/Previous Close×100(Current Price−Previous Close)/Previous Close×100
Cleaned Ticker Names:
Ticker symbols often include an exchange prefix like NASDAQ:AAPL. The script automatically removes anything before the colon (:), so only the clean symbol (e.g., AAPL) is shown in the table.
Table Display:
A visual table appears at the top-center of your chart, showing:
Row 1: Ticker symbol (cleaned)
Row 2: Current price (rounded to 2 decimals)
Row 3: Daily % change (green for gains, red for losses)
Customization:
You can choose the background color of the table.
Ticker names appear in white text with a gray background.
% change is color-coded: green for positive, red for negative.
Why Use This Script?
Track multiple tickers at once without leaving your chart.
Clean, customizable layout.
Useful for monitoring watchlists, portfolios, or related markets.
Tips:
Combine this with your favorite indicators for a personalized dashboard.
Works great on any chart or timeframe.
Ensure the tickers entered are valid on TradingView (e.g., SPY, BTCUSD, NQ1!, etc.).
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!
📦 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.
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.
ຂໍໃຫ້ທຸກທ່ານໂຊກດີ
Mother Fish ตีเส้น 0 กับ 5 TCMother Fish line 0 and 5
This indicator draws horizontal lines on your price chart at price levels ending in 0 and 5 within a price range you specify. You can adjust the starting and ending prices of the range, as well as choose the colors for lines ending in 0 and 5. This helps you easily visualize potential support and resistance levels based on these key price points.
Market Open & Pre-Open Linesversion 1.0 2025-04-23
Stated vertical line for market open and pre-market open. Market option include US, EU, UK, JP and AU. This line do auto-defined during daylight saving time. This help for those trade during market open and benefit for those doing backtest on it.
CandleLibraryLibrary "CandleLibrary"
f_isGreen(c)
Parameters:
c (candle)
f_isRed(c)
Parameters:
c (candle)
f_isBullishEngulfing(arr, i)
Parameters:
arr (array)
i (int)
f_isDragonflyDoji(arr, i)
Parameters:
arr (array)
i (int)
is_dragonfly_doji(c0)
Parameters:
c0 (candle)
f_isHammer(arr, i)
Parameters:
arr (array)
i (int)
f_isDoji(arr, i)
Parameters:
arr (array)
i (int)
f_isDoji(can)
Parameters:
can (candle)
f_isOutsideBar(arr, i)
Parameters:
arr (array)
i (int)
f_isInsideBar(arr, i)
Parameters:
arr (array)
i (int)
f_is2up(arr, i)
Parameters:
arr (array)
i (int)
f_is2down(arr, i)
Parameters:
arr (array)
i (int)
f_isDojiStar(arr, i)
Parameters:
arr (array)
i (int)
f_isSmallGreenCandle_80(can)
Parameters:
can (candle)
f_isTinyGreenCandle(can)
Parameters:
can (candle)
f_isSmallRedCandle(can)
Parameters:
can (candle)
f_isTinyRedCandle_30(can)
Parameters:
can (candle)
f_isLessThanATR_90(can)
Parameters:
can (candle)
f_isSmallCandle(can)
Parameters:
can (candle)
f_candlePercentATR(can)
Parameters:
can (candle)
f_isTinyCandle(can)
Parameters:
can (candle)
f_isSmallBody(can)
Parameters:
can (candle)
f_isTinyBody(can)
Parameters:
can (candle)
f_isDojiStarReversal(arr, n)
Parameters:
arr (array)
n (int)
numConsecutive2down(arr)
Parameters:
arr (array)
numConsecutive2up(arr)
Parameters:
arr (array)
numConsecutiveLH(arr)
Parameters:
arr (array)
f_numLLorLH(htf_array)
Parameters:
htf_array (array)
f_numHigherLows(arr)
Parameters:
arr (array)
f_isMorningStar(arr)
Parameters:
arr (array)
f_lowerHighSeriesReversalSetup(arr, n)
Parameters:
arr (array)
n (int)
redSeriesDojiAlert2(arr)
Parameters:
arr (array)
f_isEveningStar(arr, i)
Parameters:
arr (array)
i (int)
candle
Fields:
open_next (series float)
open_ (series float)
high_ (series float)
low_ (series float)
close_ (series float)
volume_ (series float)
rsi_ (series float)
atr_ (series float)
candle_size (series float)
body_size (series float)
upperwick (series float)
lowerwick (series float)
rsi_candle
Fields:
rsiopen (series float)
rsihigh (series float)
rsilow (series float)
rsiclose (series float)
Forex Overwiew True Strenght IndexNew oscillator for all currencies—I’m about to add NOK, SEK, and other lower-volume currencies that are interesting due to their lack of correlation with the major ones.
1H 200 EMA with Custom Bounce Signal1 Hour 200 EMA with signals
No complication, as simple as possible
2 EMA Crossover Strategy (scalping)9 & 21 EMA and cross-over
Best for 5min Scalping
in the most Easy and Simple way Possible
Multi EMA/SMA inkl. TimeframeThis simple indicator shows:
4 different SMAs
4 different EMAs
You can chose an independent timeframe for the moving averages.
4 Closes + Current Price SMAThis calculates the 5 day Simple Moving Average in the same way that the backtester in Option Omega does, by using the 4 previous closes and current price of the 5th day.
Trading Sessions (Modified)📝 Description of Modifications – Trading Sessions Indicator
Modified by:
✅ Key Enhancements:
1. 📊 Live Session Range Delta Analysis
Calculates the real-time difference between the current session's range and the historical average range over a user-defined lookback period (lookbackDays)
2. Presented in both points and percentage terms
3. 🎨 Dynamic Color Coding
The label text color changes based on the delta:
🟢 Green when the range is above average
🔴 Red when it's below average
⚪ Gray when unchanged
4. 🧾 Rich Session Label Content
Displays:
- Session range (ticks and points)
- Average session price
- Average range over lookback period
- Real-time delta to average range
- Session name
🙏 Acknowledgment:
Special thanks and credit to the original developer of this session indicator. Your well-structured, modular script made this expansion possible.
The modifications introduced here aim to extend your great work — not to replace it.
🚀 Support This Work
If you find this enhanced indicator useful, consider giving it a boost.
That small gesture helps bring visibility to thoughtful, utility-driven tools in the TradingView community.
— With respect,
BTC Correlation & Manual Delay OverlayIt will automatically plot BTCUSDT.P Bitget and see what delay gives maximum correlation.
You can also manually plot the delay too.
BTCUSDT.P Delayed OverlayYou can see overlay of Bitget's BTCUSDT.P on chart.
You can delay it as much as you want.
I honestly made this for myself.
Líneas Horizontales cada 100 Pips - XAUUSDlineas horizontales, del oro cada 100pips para valores sicologicos y tener una mejor operativa
Nirvana Mode PRONirvana Mode PRO is an advanced automated swing trading strategy designed for BTCUSDT on 15-minute charts. It uses a multi-indicator system including EMA crossover (8 & 21), RSI confirmation (thresholds: 55/45), Supertrend direction filter, and a dynamic volume spike condition to identify high-conviction entries.
Features:
– EMA (8/21) trend logic
– RSI momentum filter
– Supertrend confirmation
– Volume spike validation
– Full signal automation for integration with WunderTrading bots
– Supports Webhook alerts and 100% hands-free execution on Bitget USDT-M Futures
This strategy is optimized for stable low-risk performance with Swing Trade logic and custom alert messaging. Perfect for traders seeking consistent entries without manual intervention.
The Mayan CalendarThis indicator displays the current date in the Mayan Calendar, based on real-time UTC time. It calculates and presents:
🌀 Long Count (Baktun.Katun.Tun.Uinal.Kin) – A linear count of days since the Mayan epoch (August 11, 3114 BCE).
🔮 Tzolk'in Date – A 260-day sacred cycle combining a number (1–13) and one of 20 day names (e.g., 4 Ajaw).
🌾 Haab' Date – A 365-day civil cycle divided into 18 months of 20 days + 5 "nameless" days (Wayeb').
The calculations follow Smithsonian standards and align with the Maya Calendar Converter from the National Museum of the American Indian:
👉 maya.nmai.si.edu
The results are shown in a table overlay on your chart's top-right corner. This indicator is great for symbolic traders, astro enthusiasts, or anyone interested in ancient timekeeping systems woven into financial timeframes. Enjoy, time travelers! ⌛