Stochastic Clean & ClearA simple yet sharp take on the Stochastic Oscillator, built for traders who want to read momentum cleanly without extra clutter.
💡 Main Features:
Dynamic %K and %D line colors — green for bullish momentum, red for bearish.
Auto dots appear whenever %K crosses %D, so you’ll never miss a signal.
Clearly marked overbought (80) and oversold (20) zones with a soft transparent background.
Adjustable smoothing parameters to fit your trading style.
🎯 Perfect for traders who rely on price action + momentum, especially on intraday and swing timeframes.
Minimalist design, no noise — just colors and dots that tell you when the market mood starts to shift.
Indikator dan strategi
PDB 4 MA + Candle Strength/Weakness Detector
4MA Strength & Reversal Detector
Unlock the power of momentum with this advanced 4 Moving Average system (20, 50, 100, 200) designed to pinpoint market strength and early reversal zones with precision.
How It Works:
- Bearish Reversal: Triggered when all moving averages align (20 < 50 < 100 < 200) and bearish reversal candles appear — highlighting potential tops.
- Bullish Reversal: Triggered when all moving averages align (200 < 100 < 50 < 20) and bullish reversal candles form — marking potential bottoms
:Best For:
⚡ Scalpers and day traders using 1–5 minute timeframes
📈 Identifying momentum shifts and trend exhaustion early
Tip: Combine this with volume or RSI for stronger confirmation and fewer false signals.
MACD + Supertrend + DEMA StrategySTRATEGY 📊 STRATEGY LOGIC:
Long Entry: When ALL of these occur simultaneously:
MACD histogram crosses above 0
Supertrend is bullish (green)
Short DEMA > Long DEMA
Short Entry: When ALL of these occur simultaneously:
MACD histogram crosses below 0
Supertrend is bearish (red)
Short DEMA < Long DEMA
Exits: Based on your TP/SL percentages from entry price
This follows the same clean structure as your MACD strategy but adds the alignment concept and proper risk management!
MarketMonkey-Indicator-Set-6 Support & Resistance v3.0 colorsMarketMonkey-Indicator-Set-6 Support & Resistance v3.0 colors
Automatically detects and plots up to four recent support and resistance levels using pivot highs and lows. Lines update dynamically with adaptive colours, highlighting key price zones in real time. Optional R1–R4 and S1–S4 labels keep charts clean yet informative. Ideal for identifying trend reversals, breakout points, and areas where buyers or sellers are likely to act.
________________________________________
🔍 What It Does
The script uses pivot highs and pivot lows to detect recent swing points — the moments where price has clearly turned.
• Resistance levels are drawn at recent pivot highs (red lines).
• Support levels are drawn at recent pivot lows (blue lines).
• Each level automatically updates as new price data forms, keeping your analysis current.
The indicator displays up to four recent resistance and support levels on each side (R1–R4, S1–S4), with labels and colours that adapt to whether the line is above or below current price.
________________________________________
🎨 Features
• Dynamic Detection: Automatically identifies and updates support and resistance using pivot logic.
• Multi-Level Display: Shows up to four most recent highs and lows for a broader market view.
• Customisable Inputs: Adjust the number of bars used to confirm pivots and control how many levels are displayed.
• Colour-Coded Clarity:
o Resistance lines = soft red tone (indicating potential ceiling levels).
o Support lines = soft blue tone (indicating price floors).
• Optional Labels: Toggle on/off “R1–R4” and “S1–S4” tags for quick reference.
• Strong Level Highlighting: The nearest (most recent) levels are drawn thicker for emphasis.
ADX +DI/-DI with Buy/Sell Signals//@version=5
indicator("ADX +DI/-DI with Buy/Sell Signals", overlay=true)
// Inputs
adxLength = input.int(14, "ADX Length")
threshold = input.float(25.0, "ADX Threshold")
// Directional Movement
upMove = ta.change(high)
downMove = -ta.change(low)
plusDM = (upMove > downMove and upMove > 0) ? upMove : 0.0
minusDM = (downMove > upMove and downMove > 0) ? downMove : 0.0
// True Range and Smoothed Values
tr = ta.rma(ta.tr, adxLength)
plusDI = 100 * ta.rma(plusDM, adxLength) / tr
minusDI = 100 * ta.rma(minusDM, adxLength) / tr
dx = 100 * math.abs(plusDI - minusDI) / (plusDI + minusDI)
adx = ta.rma(dx, adxLength)
// Buy/Sell Conditions
buySignal = ta.crossover(plusDI, minusDI) and adx > threshold
sellSignal = ta.crossover(minusDI, plusDI) and adx > threshold
// Plot Buy/Sell markers
plotshape(buySignal, title="BUY", location=location.belowbar,
color=color.new(color.lime, 0), style=shape.triangleup, size=size.large, text="BUY")
plotshape(sellSignal, title="SELL", location=location.abovebar,
color=color.new(color.red, 0), style=shape.triangledown, size=size.large, text="SELL")
// Optional ADX + DI lines (hidden by default)
plot(adx, title="ADX", color=color.yellow, linewidth=2, display=display.none)
plot(plusDI, title="+DI", color=color.green, display=display.none)
plot(minusDI, title="-DI", color=color.red, display=display.none)
hline(threshold, "ADX Threshold", color=color.gray, linestyle=hline.style_dotted)
// Alerts
alertcondition(buySignal, title="BUY Alert", message="ADX Buy Signal Triggered")
alertcondition(sellSignal, title="SELL Alert", message="ADX Sell Signal Triggered")
Easy-Read MACD (Signals & Zones)This Pine Script transforms the traditional MACD into a much clearer, more visual momentum tool. It calculates the standard MACD (12, 26, 9) and then enhances readability using color cues and signal markers. The histogram bars dynamically change brightness to show whether momentum is strengthening or weakening — bright green/red means increasing strength, while faded colors mean losing momentum.
Background colors further simplify interpretation: green when MACD is above zero and above the signal (bullish), red when below zero and below the signal (bearish), and pale yellow in neutral or transition periods. Arrows clearly mark signal-line and zero-line crossovers, giving instant visual confirmation of bullish or bearish momentum shifts. The indicator also includes optional alerts for these events, so you can get notified when momentum flips even without watching the chart.
⚡ Quick-Read Sheet
Green background:
→ MACD > 0 and above signal — bullish momentum zone. Market trending up.
Red background:
→ MACD < 0 and below signal — bearish momentum zone. Market trending down.
Yellow background:
→ Transition or sideways momentum. Trend is uncertain — avoid strong directional trades.
Bright green histogram bars:
→ Positive momentum increasing — bulls gaining strength.
Faded green histogram bars:
→ Positive momentum weakening — rally may be losing steam.
Bright red histogram bars:
→ Negative momentum increasing — bears gaining control.
Faded red histogram bars:
→ Negative momentum weakening — possible bottoming or reversal setup.
Up arrow “MACD↑Sig”:
→ MACD crosses above signal line — bullish shift, potential buy or long continuation signal.
Down arrow “MACD↓Sig”:
→ MACD crosses below signal line — bearish shift, possible sell or short signal.
Up arrow “MACD>0”:
→ MACD crosses above zero line — confirms bullish trend bias.
Down arrow “MACD<0”:
→ MACD crosses below zero line — confirms bearish trend bias.
Single MA Distance Oscillator with Threshold Colorsused from another developer and Ai modified. input the percentage (make sure if percent below 1 you input 0. and then the number
Multi-Timeframe Stochastic (4x) z Podświetlaniemnowy skrypt bez etykietek o wyprzedaniu i wykupieniu
Trading Sessions with 15 minute ORBA working copy of the original Tradingview trading sessions indicator with the addition of horizontal lines marking the 15 minute opening range for your ORB strategy. The lines reset with each session start.
BTC Flow Dashboard : Spot Premium + OI + Funding + Cycle SignalsSpot Premium vs Perpetual Basket (%):
Tracks how aggressively perps are trading relative to spot, a leading indicator of speculative activity and leverage buildup.
Aggregated Open Interest Z-Score:
A normalized view of OI expansion/contraction across major exchanges (Binance, BitMEX, Bybit, Kraken, etc.), highlighting when leverage enters overheated zones.
Composite Funding Rate Analysis:
Calculates a TWAP-smoothed funding composite across major venues, with optional APR scaling, showing where perpetual markets are paying for long or short exposure.
Confluence Signal Engine:
Dynamically flags bullish or bearish market conditions based on premium behavior and leverage environment — including over-leverage warnings that often precede volatility spikes.
Extreme Cycle Tops & Bottoms (Experimental):
Optional signal module that highlights historically significant extremes (e.g., 2020 bottom or 2021 top) based on statistical Z-score thresholds across the three core metrics.
Notes & Tips
Works best on weekly or monthly timeframes for macro cycle analysis.
Daily and 3D views provide short-term leverage context but may produce more frequent signals.
The Extreme Signal Engine is experimental — not a trading signal on its own, but a contextual tool to support macro decision-making.
ICT Silver Bullet Setup SessionsEN:
NY Setup Sessions highlights key intraday trading windows based on New York time (America/New_York) and automatically adjusts for DST.
These are the hours when liquidity spikes, setups form, and market direction often changes.
Highlighted windows (NY time):
🕒 03:00 – 04:00 — London Open (liquidity shift)
🕔 10:00 – 11:00 — New York Open (volatility surge)
🕑 14:00 – 15:00 — US session momentum phase
If your chart timezone is Europe/Kyiv, these correspond to 10:00–11:00, 17:00–18:00, and 21:00–22:00.
✅ Features:
– Background highlight for sessions
– Optional border lines and labels
– Built-in alerts for each window
Ideal for Smart Money Concepts / ICT / intraday liquidity strategies.
UA:
NY Setup Sessions підсвічує ключові торгові вікна за часом Нью-Йорка (America/New_York) та автоматично враховує перехід на літній/зимовий час.
Саме в ці проміжки зазвичай відбувається сплеск ліквідності та формуються основні сетапи.
Підсвічувані інтервали (за NY):
🕒 03:00 – 04:00 — відкриття Лондона
🕔 10:00 – 11:00 — відкриття Нью-Йорка, пікова волатильність
🕑 14:00 – 15:00 — вечірні рухи перед закриттям ринку
Для таймзони Europe/Kyiv це 10:00–11:00, 17:00–18:00, 21:00–22:00.
✅ Функціонал:
– Підсвічування фону сесій
– Опціональні вертикальні границі та підписи
– Три готові умови для Alerts
Підходить для аналізу внутрішньоденних сетапів (SMC, ICT, Order Blocks, Liquidity Zones тощо).
Pin Bar EMA34 - Full (Labels High/Low + Custom)update label close price and coditional of signal pin bar.
KDJ Max-Distance (K-D vs K-J)This indicator measures the maximum divergence between K and its related lines (D or J) in the KDJ stochastic system.
KEY CONCEPT:
- Calculates two distances: |K-D| and |K-J|
- Outputs whichever distance is larger
- Shows which component (D or J) is most diverged from K at any given time
CALCULATION:
1. Standard KDJ: K (fast), D (K smoothed), J (3K - 2D)
2. Distance K-D: momentum between fast and slow lines
3. Distance K-J: captures extreme divergence
4. Output: max(|K-D|, |K-J|) or signed version
INTERPRETATION:
• High positive values: K strongly above both D and J (strong upward momentum)
• High negative values: K strongly below both D and J (strong downward momentum)
• Near zero: K aligned with D/J (consolidation or reversal zone)
• Background color shows which is dominant: Teal=K-D, Orange=K-J
USE CASES:
- Identify extreme momentum conditions
- Spot divergence exhaustion
- Confirm trend strength
- Filter ranging vs trending markets
SETTINGS:
- Signed mode: preserves direction (positive/negative)
- Absolute mode: shows pure distance magnitude
- Adjustable guide levels for visual reference
Material Color Palette Library█ OVERVIEW
Unlock a world of color in your Pine Script® projects with the Material Color Palette Library . This library provides a comprehensive and structured color system based on Google's Material Design palette, making it incredibly easy to create visually appealing and professional-looking indicators and strategies.
Forget about guessing hex codes. With this library, you have access to 19 distinct color families, each offering a wide range of shades. Every color can be fine-tuned with saturation, darkness, and opacity levels, giving you precise control over your script's appearance.
To make development even easier, the library includes a visual cheatsheet. Simply add the script to your chart to display a full table of all available colors and their corresponding parameters.
█ KEY FEATURES
Vast Spectrum: 19 distinct color families, from vibrant reds and blues to subtle greys and browns.
Fine-Tuned Control: Each color function accepts parameters for `saturationLevel` (1-13 or 1-9) and `darkLevel` (1-3) to select the perfect shade.
Opacity Parameter: Easily add transparency to any color for fills, backgrounds, or lines.
Quick Access Tones: A simple `tone()` function to grab base colors by name.
Visual Cheatsheet: An on-chart table displays the entire color palette, serving as a handy reference guide during development.
█ HOW TO USE
As a library, this script is meant to be imported into your own indicators or strategies.
1. Import the Library
Add the following line to the top of your script. Remember to replace `YourUsername` with your TradingView username.
import mastertop/ColorPalette/1 as colors
2. Call a Color Function
You can now use any of the exported functions to set colors for your plots, backgrounds, tables, and more.
The primary functions take three arguments: `functionName(saturationLevel, darkLevel, opacity)`
`saturationLevel`: An integer that controls the intensity of the color. Ranges from 1 (lightest) to 13 (most vibrant) for most colors, and 1-9 for `brown`, `grey`, and `blueGrey`.
`darkLevel`: An integer from 1 to 3 (1: light, 2: medium, 3: dark).
`opacity`: An integer from 0 (opaque) to 100 (invisible).
Example Usage:
Let's plot a moving average with a specific shade of teal.
// Import the library
import mastertop/ColorPalette/1 as colors
indicator("My Script with Custom Colors", overlay = true)
// Calculate a moving average
ma = ta.sma(close, 20)
// Plot the MA using a color from the library
// We'll use teal with saturation level 7, dark level 2, and 0% opacity
plot(ma, "MA", color = colors.teal(7, 2, 0), linewidth = 2)
3. Using the `tone()` Function
For quick access to a base color, you can use the `tone()` function.
// Set a red background with 85% transparency
bgcolor(colors.tone('red', 85))
█ VISUAL REFERENCE
To see all available colors at a glance, you can add this library script directly to your chart. It will display a comprehensive table showing every color variant. This makes it easy to pick the exact shade you need without guesswork.
This library is designed for fellow Pine Script® developers to streamline their workflow and enhance the visual quality of their scripts. Enjoy!
Custom Moving Average Cross - White//@version=5
indicator("Custom Moving Average Cross", overlay=true)
// User-defined parameters for moving averages
short_period = input.int(10, title="Short Period", minval=1)
long_period = input.int(100, title="Long Period", minval=1)
// Calculate the moving averages
short_ma = ta.sma(close, short_period)
long_ma = ta.sma(close, long_period)
// Plot the moving averages
plot(short_ma, color=color.blue, title="Short MA")
plot(long_ma, color=color.red, title="Long MA")
// Define the buy and sell conditions based on crossovers
buy_signal = ta.crossover(short_ma, long_ma)
sell_signal = ta.crossunder(short_ma, long_ma)
// Plot the buy and sell signals with labels (white text)
plotshape(buy_signal, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY", textcolor=color.white)
plotshape(sell_signal, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL", textcolor=color.white)
// Optional: Background color to highlight the signals
bgcolor(buy_signal ? color.new(color.green, 90) : na, title="Buy Signal Background")
bgcolor(sell_signal ? color.new(color.red, 90) : na, title="Sell Signal Background")
5/15-Min-ORB-Trend-Finder-WiPIndicator Features:
> "Open" flag for each market day.
> Toggleable 5-min and 15-min High/Low markings.
> Horizontal support (red) and resistance (blue) lines.
> EMA-based trend line: green for long/buy, purple for short/sell.
> Recommended to use with my other indicator: Buy-or-Sell-WiP.
Strategy:
> Use with 1-min chart with 5-min High/Low or 5-min chart with 15-min High/Low
> After a breakout, wait for confirmation before placing a trade, which is:
- Two confirming candles (green for long/buy, red for short/sell)
and
- Buy-or-Sell-WiP histogram: green for long/buy, red for short/sell
Easy-Read RSI (Signals & Zones)This custom Pine Script reimagines the traditional RSI to make signals easier to see and act on. It smooths the RSI line using an EMA, adds a signal line (a moving average of the RSI), and colors the background for quick visual reference. Green shading marks oversold conditions, red shading marks overbought conditions, and a faint yellow band highlights the neutral zone (45–55). Together, these visual cues help you instantly recognize momentum shifts and potential reversals without staring at raw numbers.
The script also plots bullish and bearish signal arrows: upward arrows appear when RSI crosses above its signal line or exits the oversold zone, while downward arrows mark when RSI crosses below its signal or falls from the overbought zone. It includes built-in TradingView alerts for each event, so you can receive notifications of key turning points automatically.
Quick-Read Guide for Easy-Read RSI
Green background: RSI is in the oversold zone (typically below 30). The market may be near a short-term bottom. Watch for an up arrow (OS↑) — this suggests a possible bullish reversal or entry point.
Red background: RSI is in the overbought zone (typically above 70). The market may be overextended to the upside. Watch for a down arrow (OB↓) — this can signal a bearish reversal or exit opportunity.
Yellow background: RSI is in the neutral zone (roughly between 45 and 55). This usually means the market is consolidating or lacks a clear direction. Signals in this area are weaker and often less reliable.
Up arrow (RSI↑MA): RSI crosses above its signal line — a sign of strengthening bullish momentum or trend continuation. Can be used as a buy or add signal when confirmed by price action.
Down arrow (RSI↓MA): RSI crosses below its signal line — a sign of weakening momentum or potential reversal to the downside. Can be used as a sell or reduce-exposure signal.
OS↑ arrow: RSI moves up out of the oversold zone. This indicates early recovery momentum and potential reversal from a dip.
OB↓ arrow: RSI moves down out of the overbought zone. This signals momentum cooling and possible reversal from a high.
G_GMMA• Comprehensive GMMA Visualization: It plots six fast EMAs and six slow EMAs, clearly distinguishing short term and long term trends. The indicator fills the space between the fastest and slowest EMAs in each group, turning the moving averages into easily identifiable ribbons rather than a mass of overlapping lines.
• Customizable Appearance: Users can adjust the colors of the fast and slow EMA lines, the fill colors of each ribbon, and the overall line thickness. This makes it easy to tailor the chart to personal preferences or trading templates.
• Dynamic Background Shading: The script can shade the chart’s background depending on whether the fast ribbon is above or below the slow ribbon, giving a quick visual cue for trend direction (uptrend vs. downtrend).
• Touch Alert System: Up to three different EMA lengths can be monitored for “touch” events. When price touches a selected EMA (e.g., 20 , 50 or 200 period EMA), the indicator triggers an alert condition and plots a small circle on the chart at the contact point. This helps traders catch precise entry or exit signals without staring at the screen.
• Flexible Input: Both fast and slow EMA lengths, colors, and alert parameters are user adjustable from the indicator’s settings. This allows the same script to be used on different instruments (e.g., Gold, forex pairs) and time frames by simply changing the period values.
• Trend Sensitive Support/Resistance: By treating the slow EMA ribbon as a dynamic support/resistance zone, the indicator helps traders identify where price is likely to stall or reverse. Combining this with the touch alerts makes it well suited for scalping or intraday trades.
Tristan's Devil Mark (Short)"Devil's Mark" in trading refers to a specific candlestick pattern where a candle opens and moves significantly in one direction without creating a wick on that side. This creates an "inefficiency" in the market, and traders use this as a signal that price will likely return to that level to "rebalance" the imbalance and print the missing wick.
This strategy marks every green candle with no bottom wick using a purple downward wedge above the candle. This is highlighting a candle where buyers dominated from the open, but creating inefficiency below.
The purple wedge marks candles that opened at their lowest point and closed higher.
These candles indicate buyer dominance from the start of the period. In downtrends, a green candle with no bottom wick may indicate a potential short-term reversal.
Wait for the candle to close, and short it. Wait for the price to go below the bottom of the body of the marked candle.
Combine with Trend Analysis
Look for these candles in uptrends to confirm continuation momentum.
In downtrends, a green candle with no bottom wick may indicate a potential short-term reversal.
Support/Resistance Filters
Use horizontal support/resistance levels or moving averages to filter trades.
A green no-wick candle bouncing off support is a stronger bullish signal.
Timeframe Consideration
Works on any timeframe; adjust your strategy accordingly.
For intraday scalping, use 1–15 minute charts; for swing trades, use daily or 4-hour charts.
Backtesting and Pattern Recognition
Since the indicator works on historical bars, review past setups to identify patterns where this candle type reliably predicts price movement.
Master Trading Bot by NeurodocMTB Reverse DCA Trading Strategy by Neurodoc.
BINANCE REFERRAL: www.binance.com
BINANCE CODE REFERRAL: CPA_00XQBFQODB
BINANCE FUTURES REFERRAL LINK: binance.com/futures/ref/503702570
BINANCE FUTURES REFERRAL ID: 503702570
DONATIONS: USDT - RED BSC - Wallet: 0xe87b4589a53443d8ffed2e9b5a7ef58f261f087c
2 Bandas de Bollinguer (10-20) + 4 EMA + 2 SMA 2 BB (10-20) + 4 EMA (35-50-100-200) + 2 SMA (75-100) configurable