Log Regression Channel (Dezza)This custom indicator builds a curved Logarithmic Regression Channel designed for long-term Bitcoin and macro asset analysis. It performs a linear regression on the logarithm of price to estimate the market’s fair-value growth curve, then converts that back into price space to form upper and lower deviation bands.
It helps identify where price sits relative to its long-term exponential trend — showing potential overvaluation (upper band) or undervaluation (lower band) zones.
Best used on weekly or monthly charts to visualise market cycles and fair-value reversion. Adjustable inputs let you control lookback length, band width, and midline visibility.
Bande e canali
Trendy Bands + Reversal SignalsTrendy Bands + Reversal Signals
This is a versatile and powerful TradingView indicator that combines a dual Bollinger Bands system with momentum-based reversal signals. It's designed to help traders identify the prevailing trend, potential volatility expansions/contractions, and key reversal points in the market.
Core Concept: The indicator uses two sets of Bollinger Bands with different standard deviation settings to create a "band within a band" structure. This visual setup makes it easier to gauge trend strength and spot potential breakouts or breakdowns. Additionally, it calculates a custom momentum oscillator to generate early warnings for potential trend reversals.
Confirmed Momentum QQQ (RSI/MACD Filter)Gemini and Myself,
How This Targets a Higher Win Rate
The key to the win rate increase is the RSI 20/80 filter.
Long Signal: A long entry is now only taken if the trend is up (SMA cross), the MACD is bullish, and the RSI is not overbought (below 80). By only entering when momentum is not yet exhausted, you increase the chance that the price can travel far enough to hit your 4.0 point Take Profit.
Wider SL: The wider Stop Loss of 2.5 points reduces the chance of being stopped out prematurely by routine market movements (whipsaws), which is the number one killer of win rates in high-frequency trading.
After applying these changes, you will need to run the Strategy Tester again to see the new win rate and the new total number of trades.
Would you like me to help you interpret the new Strategy Tester results once you apply these settings?
XAutoTrade Alert Builder v1.1Automate Your NinjaTrader Trading with TradingView Alerts
The XAutoTrade Alert Builder is a flexible Pine Script strategy that bridges TradingView alerts with
NinjaTrader automated trading. Design custom entry signals, configure exit strategies, and execute trades
automatically on your NinjaTrader account - all from TradingView charts.
Key Features
📊 Flexible Signal Logic
- Configure buy/sell signals independently
- Compare any two indicators or price sources using crossover, crossunder, greater than, or less than
logic
- Visual buy/sell markers on chart for easy signal verification
🎯 Multiple Exit Methods
1. ATM Strategy - Leverage your existing NinjaTrader ATM templates for advanced order management
2. Source Signals - Exit positions based on opposite entry signals
3. Fixed Levels - Set stop loss and profit targets using ticks or percentage
⚙️ NinjaTrader Integration
- Direct webhook integration with XAutoTrade backend service
- Multi-account support (trade multiple accounts simultaneously)
- Position sizing and max position limits
- Market or limit order types with configurable offset
- Time-in-force options (DAY/GTC)
- Active hours filter (US ET timezone) to control when alerts execute
🔐 Secure & Reliable
- Webhook secret authentication
- Symbol override capability
- Real-time status indicator showing configuration readiness
How It Works
1. Configure Entry Signals - Choose your buy/sell logic by comparing any two data sources (price,
indicators, etc.)
2. Set Exit Strategy - Select ATM templates, signal-based exits, or fixed stop/profit levels
3. Connect to NinjaTrader - Enter your XAutoTrade webhook secret and account details
4. Create Alert - Use the strategy's alert system to send formatted JSON payloads to your XAutoTrade
webhook
5. Trade Futures & Stocks Automatically - TradingView alerts trigger real trades in your NinjaTrader account
Perfect For
- Traders wanting to automate TradingView strategies in NinjaTrader
- Users with existing ATM templates who want TradingView signal automation
- Multi-account traders managing several NinjaTrader accounts
- Anyone seeking a no-code bridge between TradingView and NinjaTrader
Requirements
- Active XAutoTrade account and subscription
- NinjaTrader 8 with XAutoTrade AddOn installed
- TradingView Premium/Pro account (for webhook alerts)
Daily Midnight Marker (NYC)This indicator automatically plots a vertical line at midnight (00:00) New York time on every trading day.
Each line is drawn in light gray to mark the start of a new day, helping traders visually separate daily sessions.
A weekday label (e.g., Monday, Tuesday, Wednesday...) is displayed to the right of each line, making it easy to identify daily transitions when analyzing intraday price action or reviewing trading sessions.
Perfect for traders who:
Trade based on daily session structure or pre-market setups
Use NY time as a market reference
Prefer a clean and minimal visual day separator
OPTION DOMOPTION DOM
This script tell you abot option max pain where dealer needs to reverse and give direction of optio buy and sel plus option dom.
Multi MA SystemMulti-timeframe moving average indicator with 6 customizable MAs.
Each MA supports 7 types (SMA/EMA/WMA/DEMA/TEMA/HMA/ZLEMA), custom periods, timeframes, colors, and line styles.
Perfect for multi-timeframe analysis and trend identification.
Multi-Reversal + MA50/200 + MACD + BJ (Tilson) Combo//@version=5
indicator(title="Multi-Reversal + MA50/200 + MACD + BJ (Tilson) Combo", overlay=true)
// --- Moving Averages (MA50, MA200) ---
ma_50 = ta.sma(close, 50)
ma_200 = ta.sma(close, 200)
plot(ma_50, color=color.blue, linewidth=1, title="MA50")
plot(ma_200, color=color.red, linewidth=2, title="MA200")
// --- MACD ---
fast_length = input(12, title="MACD Fast")
slow_length = input(26, title="MACD Slow")
signal_length = input(9, title="MACD Signal")
= ta.macd(close, fast_length, slow_length, signal_length)
macd_cross_up = ta.crossover(macdLine, signalLine)
macd_cross_down = ta.crossunder(macdLine, signalLine)
// --- Tilson MA (BJ reversal) ---
tilson_length = input(20, title="Tilson MA Length (BJ reversal)")
tilson_ma = ta.ema(ta.ema(close, tilson_length), tilson_length)
bj_cross_up = close > tilson_ma and close < tilson_ma
bj_cross_down = close < tilson_ma and close > tilson_ma
plot(tilson_ma, color=color.orange, linewidth=2, title="Tilson MA (BJ reversal)")
// --- Đảo chiều tổng hợp ---
bull_reversal = macd_cross_up and bj_cross_up and close > ma_50 and close > ma_200
bear_reversal = macd_cross_down and bj_cross_down and close < ma_50 and close < ma_200
// --- Plot tín hiệu trên chart ---
plotshape(bull_reversal, location=location.belowbar, style=shape.triangleup, size=size.large, color=color.lime, title="Bullish Reversal", text="STRONG UP")
plotshape(bear_reversal, location=location.abovebar, style=shape.triangledown, size=size.large, color=color.red, title="Bearish Reversal", text="STRONG DN")
// --- BJ riêng lẻ ---
plotshape(bj_cross_up, location=location.belowbar, color=color.yellow, style=shape.circle, size=size.tiny, title="BJ Up Only")
plotshape(bj_cross_down, location=location.abovebar, color=color.yellow, style=shape.circle, size=size.tiny, title="BJ Down Only")
// --- Alert conditions ---
alertcondition(bull_reversal, title="Bullish Strong Reversal", message="Buy opportunity: MA bullish + MACD + BJ reversal!")
alertcondition(bear_reversal, title="Bearish Strong Reversal", message="Sell warning: MA bearish + MACD + BJ reversal!")
[Asian Range + Sweeps]Main Features
Asian Range (S2) — fully configurable session band (start/end, hour:minute) with automatic detection and visual high/low markers.
HOD/LOD (S1) — adaptive cutoff logic for Forex vs Indices, with optional manual override.
Gap Correction — optional true HOD/LOD detection using a 1-minute base with overnight gap adjustment.
Sweep Detection — real-time alerts for S1 and S2 sweeps, with independent cooldown control to avoid duplicate signals.
Visual Controls — customizable colors, line thickness, and transparency.
KeepDays Setting — allows you to manage how many past session drawings are preserved on the chart
neeson vol proCrypto Exchange Volume Analyzer - Technical Indicator Documentation
Overview
The Crypto Exchange Volume Analyzer is a sophisticated trading indicator designed to monitor and analyze trading volume across major cryptocurrency exchanges in real-time. This tool provides comprehensive market insights by aggregating volume data from multiple sources and detecting abnormal trading activity.
Key Features
Multi-Exchange Data Integration
Real-time volume monitoring from Binance, Coinbase, and Kraken
Combined BTC and ETH trading volume analysis across all supported exchanges
Total trading value calculation in USD equivalents
Market Share Analysis
Dynamic market share calculation for each exchange
Visual representation of exchange dominance
Comparative analysis of trading activity across platforms
Advanced Signal Detection
Statistical anomaly detection using standard deviation methodology
Customizable volume threshold settings (1.0-5.0 std dev)
Color-coded visual alerts for abnormal volume conditions
Comprehensive Data Display
Interactive data table showing volume, value, and market share percentages
Individual cryptocurrency tracking (BTC, ETH, BNB, XRP, ADA, SOL)
Customizable display settings for different trading preferences
Technical Specifications
Input Parameters
Show Volume: Toggle volume column display
Show Data Table: Toggle comprehensive data table
Show Volume Signals: Enable/disable anomaly detection alerts
Volume Threshold: Adjust sensitivity (1.0-5.0 standard deviations)
Time Period: Select analysis timeframe (default: 1D)
Data Sources
Binance: BTCUSDT, ETHUSDT, BNBUSDT, XRPUSDT, ADAUSDT, SOLUSDT
Coinbase: BTCUSD, ETHUSD
Kraken: BTCUSD
Risk Disclaimer
Important Notice
This technical indicator is provided for educational and informational purposes only. Cryptocurrency trading involves substantial risk of loss and is not suitable for every investor. Past performance is not indicative of future results.
Risk Factors to Consider
High volatility in cryptocurrency markets
Potential for significant financial losses
Technical limitations and data latency
Market manipulation risks
Regulatory uncertainties
User Responsibility
Users should:
Conduct their own research before trading
Consult with licensed financial advisors
Understand all risks involved
Only risk capital they can afford to lose
Monitor positions continuously
Copyright and Attribution
Developer Information
Created by: neeson2025
X (Twitter): @neeson1987
Usage Rights
This indicator is provided as educational technology. Commercial use, redistribution, or modification without explicit permission is prohibited. Users acknowledge that the developer bears no responsibility for trading decisions made using this tool.
neeson macd-volNeeson MACD-Vol Indicator - Feature Description & User Manual
📊 Indicator Overview
Neeson MACD-Vol is a comprehensive technical analysis indicator that combines MACD, volume, RSI, ATR, and OBV to provide traders with a complete market analysis perspective.
⚙️ Core Features
1. Smooth MACD Analysis
MACD Line Smoothing Filter: Supports three smoothing methods: EMA, SMA, WMA
Crossover Signal Confirmation: Uses closing price to confirm golden/death crosses, avoiding false signals
Signal Filtering Mechanism: Filters frequent false signals based on time and strength criteria
2. Volume Analysis
Extreme Volume Detection: Identifies abnormal high volume and highlights with white histogram bars
Volume Ratio Display: Real-time display of current volume relative to moving average
VOL Labels: Shows volume ratio labels at extreme volume positions
3. Multi-dimensional Divergence Detection
Price-Volume Divergence: Identifies divergence between price and volume
Price-RSI Divergence: Detects momentum divergence for early trend reversal signals
Price-OBV Divergence: Analyzes divergence between money flow and price action
4. Auxiliary Indicators
RSI Indicator: Displays Relative Strength Index with overbought/oversold zones
ATR Indicator: Measures market volatility and identifies high/low volatility periods
OBV Indicator: On-Balance Volume for analyzing money flow and accumulation
🎯 Usage Instructions
Trade Signal Identification
Buy Signals:
🟢 MACD Golden Cross (Orange dots)
🟢 Bullish Volume Divergence (Green triangles)
🟢 Bullish RSI Divergence (Cyan "RSI" labels)
🟢 Bullish OBV Divergence (Cyan "OBV" labels)
⚪ Extreme Buy Volume (White histogram bars)
Sell Signals:
🔵 MACD Death Cross (Blue dots)
🔴 Bearish Volume Divergence (Red triangles)
🔴 Bearish RSI Divergence (Magenta "RSI" labels)
🔴 Bearish OBV Divergence (Magenta "OBV" labels)
⚪ Extreme Sell Volume (White histogram bars)
Parameter Configuration
MACD Parameters:
Fast Length (Default: 12)
Slow Length (Default: 26)
Signal Length (Default: 9)
Volume Parameters:
Extreme Volume Threshold (Default: 2.5x)
Divergence Lookback Period (Default: 20)
Filtering Parameters:
Minimum Bars Between Signals (Default: 5 bars)
Minimum MACD Strength (Default: 0.001)
⚠️ Risk Disclaimer
English Version:
This indicator is for technical analysis reference only and does not constitute any investment advice. Financial market trading involves high risks and may lead to capital loss. Past performance is not indicative of future results. Users should fully understand the relevant risks, conduct their own research, and consult with qualified financial advisors before making any investment decisions. The user assumes full responsibility for their trading decisions and any resulting losses. The author is not responsible for any direct or indirect losses, financial or otherwise, caused by using this indicator.
📄 Copyright Notice
Copyright © 2024 Neeson1987
X/Twitter: @neeson1987
All intellectual property rights for this indicator are owned by Neeson1987. This includes but is not limited to the source code, algorithm, visual design, and documentation. No part of this indicator may be copied, reproduced, modified, distributed, sold, or used for commercial purposes without explicit written permission from the author. Personal use is permitted.
Unauthorized reproduction or distribution of this indicator may result in legal action. For licensing inquiries or commercial use, please contact via X/Twitter: @neeson1987.
🔍 Usage Recommendations
Multiple Confirmations: Combine multiple signals for trading decisions
Timeframe Analysis: Verify signal consistency across different timeframes
Risk Management: Always use stop-loss and proper position sizing
Market Context: Consider current market volatility and trend conditions
Continuous Learning: Regularly update parameters and adapt to market changes
Paper Trading: Test strategies in demo accounts before live trading
Journaling: Keep records of trades and indicator performance
🔧 Technical Specifications
Platform: TradingView Pine Script v5
Compatibility: Stocks, Forex, Crypto, Futures, and other financial instruments
Timeframes: All timeframes supported
Update Frequency: Real-time calculation
📞 Support & Updates
For technical support, bug reports, or update notifications:
X/Twitter: @neeson1987
Update Channel: Follow X account for latest versions
📈 Happy Trading! | May the trends be with you!
Note: This indicator is continuously improved. Always ensure you're using the latest version for optimal performance.
ETH Short-Term VWAP+EMA/RSI (ATR Risk, <1h) (James Logan)ETH Short-Term VWAP + EMA / RSI Strategy (ATR-based Risk Control)
A short-term (< 1 hour) ETH trading system designed for intraday scalps and momentum swings on 5- to 15-minute charts.
It blends trend confirmation (EMA 50 / 200) with intrabar structure (EMA 21 pullback & VWAP filter) and RSI momentum triggers, managing exits dynamically through ATR-based stop, take-profit, and trailing stop targets.
Core logic
• Long when RSI crosses above the threshold within an up-trend (EMA 50 > EMA 200) and price is above VWAP.
• Short when RSI crosses below threshold within a down-trend (EMA 50 < EMA 200) and price is below VWAP.
• Optional pullback confirmation to the 21-EMA for cleaner entries.
• Risk defined by ATR-multiples for stop-loss, take-profit, and an adaptive trailing stop.
• Automatic flat-out exit after a set number of bars (time-based close).
Best use
• 5 min – 15 min ETH/USDT charts (Binance, Bybit, Coinbase, etc.)
• Works with both spot and perpetual data.
• Tune ATR and RSI thresholds per venue; defaults are balanced for 0.05 % per-side fees.
Key parameters
• ATR SL × 1.6 ATR TP × 2.2 ATR Trail × 2.0
• RSI 50 cross | EMA 50/200 trend filter | VWAP confirmation
• Default position sizing = USD-based (e.g. $1 000 per trade).
Notes
• All orders and exits are simulated at bar close; use 1-minute bar magnifier for finer fill modeling.
• No repainting—uses only confirmed bar data.
• Best validated with ≥ 200 trades and profit factor > 1.25 over multi-month backtests.
jinhanborasaeg bori indicator ENHello, I'm jinhanborasaeg.
This indicator was created by modifying the free indicator "Vumanchu Free Swing."
It was developed with Claude's assistance and includes
additions such as no-repaint functionality, TP/SL, and more.
For settings, you should use High instead of Close for better results.
Below is the link to an indicator I created by combining 20 different indicators,
which showed good backtesting results. If you're interested,
I'd appreciate it if you could take a look.
jinhanborasaeg.gumroad.com
💎 ProfittoPath – Glass HUD//@version=5
indicator("💎 ProfittoPath – Glass HUD", overlay=true)
// === Inputs ===
entryPrice = input.float(0.0, "Entry Price", step=0.01)
qty = input.float(1.0, "Position Size", step=1.0)
isLong = input.bool(true, "Long Trade?")
offsetY = input.int(60, "Vertical Offset (ticks)", step=1)
showPercent = input.bool(true, "Show % Change")
// === Calculations ===
inTrade = entryPrice > 0
priceDiff = inTrade ? (close - entryPrice) * (isLong ? 1 : -1) : na
plUsd = inTrade ? priceDiff * qty : na
plPercent = inTrade ? (priceDiff / entryPrice) * 100 : na
isProfit = inTrade ? (plUsd >= 0) : false
// === Colors ===
gold = color.rgb(255,215,0)
lossRed = color.rgb(255,90,90)
txtColor = isProfit ? gold : lossRed
bgGlass = color.new(color.rgb(15,15,15),85)
// === Entry Line ===
var line entryLine = na
if barstate.isfirst
entryLine := line.new(bar_index, entryPrice, bar_index, entryPrice, extend=extend.both, color=color.new(gold,40), style=line.style_dotted)
if inTrade
line.set_color(entryLine, color.new(gold,40))
else
line.set_color(entryLine, color.new(color.black,100))
// === Panel Label ===
var label pnlLabel = na
if barstate.isfirst
pnlLabel := label.new(bar_index, na, "", style=label.style_label_center, textcolor=txtColor, color=bgGlass, size=size.large)
// === Update ===
if inTrade
string pnlText = "💎 ProfittoPath Glass HUD "
pnlText += "──────────────────────── "
pnlText += "Trade: " + (isLong ? "LONG 📈" : "SHORT 📉") + " "
pnlText += "Entry: " + str.tostring(entryPrice, format.mintick) + " "
pnlText += "Current: " + str.tostring(close, format.mintick) + " "
pnlText += "P/L: " + (isProfit ? "+" : "") + str.tostring(plUsd, format.mintick) + " USD"
if showPercent
pnlText += " (" + str.tostring(plPercent, "#.##") + "%)"
pnlText += " "
pnlText += "──────────────────────── "
pnlText += "Status: " + (isProfit ? "PROFIT ✅" : "LOSS ❌")
label.set_text(pnlLabel, pnlText)
label.set_x(pnlLabel, bar_index)
label.set_y(pnlLabel, entryPrice + offsetY * syminfo.mintick)
label.set_color(pnlLabel, bgGlass)
label.set_textcolor(pnlLabel, txtColor)
else
label.set_text(pnlLabel, "💎 Set Entry Price ↑")
label.set_x(pnlLabel, bar_index)
label.set_y(pnlLabel, close)
label.set_color(pnlLabel, bgGlass)
label.set_textcolor(pnlLabel, gold)
Fractional + Heikin-Ashi Candlestick – CF / ABNew model of Candlestick, Tis model constructed on Fractional Calculus mathematical, use two kernel - Caputo-Fabrizio and Atangana-Baleanu.
9:30 AM MarkerThe 9:30 AM Market Open Marker (NYC) indicator automatically plots a vertical line at 9:30 AM New York time, marking the official U.S. stock market open for each trading day.
This visual reference helps traders quickly identify the start of the regular trading session, align intraday strategies, and analyze pre-market and post-market behavior relative to the official open.
Perfect for:
Day traders and scalpers tracking session openings.
Futures traders (e.g., ES, NQ) analyzing volatility around 9:30 AM.
Anyone studying liquidity shifts and structure transitions between pre-market and RTH (Regular Trading Hours).
Features:
Draws a clean vertical line at 9:30 AM NY time for every day.
Optional customizable color and style for clear visual separation.
Works on any timeframe and automatically adjusts for daylight-saving time.
Day of Week (NYC)The Day of Week (NYC) indicator displays the weekday name (Monday, Tuesday, Wednesday, etc.) at the bottom of a separate panel, synchronized with midnight New York time (00:00) for each trading day.
It’s designed to help traders visually distinguish between sessions while keeping the main price chart clean and uncluttered.
The labels remain fixed in their own panel, so they never move in front of candles or interfere with price action.
Perfect for:
Intraday and futures traders who use New York session timing as reference.
Journalers and analysts who review daily session performance.
Anyone who wants clear visual day separators without overlapping chart elements.
Features:
Automatically adapts to NY time (EST/EDT).
Displays weekday names for every new trading day.
Minimalist gray text for a clean, non-distracting look.
Daily Midnight Marker (NYC)Daily Midnight Marker (NYC) automatically plots a vertical light-gray line on your chart at midnight New York time (00:00) to visually mark the start of each trading day.
A small label is displayed at the bottom of the line that reads “Day Start”, helping traders quickly identify daily session boundaries.
This indicator is especially useful for:
Futures or forex traders referencing New York session time
Intraday analysts who want to distinguish daily ranges
Backtesting or reviewing overnight/pre-market activity
Features:
Plots at 00:00 NYC time daily
Light gray, clean design to avoid clutter
Optional label under each day start
6 AM Marker6 AM Marker – Daily Premarket Reference Line
This indicator automatically plots a vertical dotted line at 6:00 AM (local chart time) on every trading day.
It’s designed for traders who track premarket activity and want a clear visual reference of when the early market hours begin.
Features:
Marks 6:00 AM on all trading days automatically
Works on any timeframe
Adjustable timezone (e.g., America/New_York, America/Los_Angeles)
Clean, minimal visual style — perfect for day traders using NQ, ES, or other futures
This simple visual tool helps identify premarket ranges, overnight sessions, and morning setups with precision.
6 AM Marker6 AM Marker – Daily Premarket Reference Line
This indicator automatically plots a vertical dotted line at 6:00 AM (local chart time) on every trading day.
It’s designed for traders who track premarket activity and want a clear visual reference of when the early market hours begin.
Features:
Marks 6:00 AM on all trading days automatically
Works on any timeframe
Adjustable timezone (e.g., America/New_York, America/Los_Angeles)
Clean, minimal visual style — perfect for day traders using NQ, ES, or other futures
This simple visual tool helps identify premarket ranges, overnight sessions, and morning setups with precision.
Saifunnas VelMaxtrend following strategy, wait for SOS candle before entry, stoploss below low signal





















