TMA +BB Bands Indicator//@version=5
indicator(shorttitle="BB", title="Bollinger Bands", overlay=true, timeframe="", timeframe_gaps=true)
length = input.int(20, minval=1)
maType = input.string("SMA", "Basis MA Type", options = )
src = input(close, title="Source")
mult = input.float(2.0, minval=0.001, maxval=50, title="StdDev")
ma(source, length, _type) =>
switch _type
"SMA" => ta.sma(source, length)
"EMA" => ta.ema(source, length)
"SMMA (RMA)" => ta.rma(source, length)
"WMA" => ta.wma(source, length)
"VWMA" => ta.vwma(source, length)
basis = ma(src, length, maType)
dev = mult * ta.stdev(src, length)
upper = basis + dev
lower = basis - dev
offset = input.int(0, "Offset", minval = -500, maxval = 500, display = display.data_window)
plot(basis, "Basis", color=#2962FF, offset = offset)
p1 = plot(upper, "Upper", color=#F23645, offset = offset)
p2 = plot(lower, "Lower", color=#089981, offset = offset)
fill(p1, p2, title = "Background", color=color.rgb(33, 150, 243, 95))
אינדיקטורים ואסטרטגיות
Fibonacci Pivot Trading System with EMA Filter & AlertsDescription
The Fibonacci Pivot Trading System is a versatile and powerful indicator designed for traders seeking to identify key support and resistance levels using Fibonacci-based pivot points. This system supports multiple pivot types (Fibonacci, Traditional, Woodie, Classic, DM, and Camarilla) and allows customization of timeframes (Daily, Weekly, Monthly, and more). It integrates advanced trading signals based on price rejection or breakout at pivot levels, enhanced by volume and RSI confirmations, and an optional EMA trend filter (20/50/100/200). The system avoids generating signals within the consolidation zone (between R1 and S1) to reduce false signals in low-volatility ranges. The indicator visually plots pivot levels, consolidation zones, and trade management levels (Take Profit and Stop Loss) with customizable labels and colors. Ideal for traders looking to capitalize on pivot-based price action with robust confirmation mechanisms.
Features
Customizable Pivot Types: Choose from Fibonacci, Traditional, Woodie, Classic, DM, or Camarilla pivot calculations.
Flexible Timeframes: Supports Daily, Weekly, Monthly, Quarterly, Yearly, and extended anchor periods.
Trading Signals: Generates buy/sell signals based on price rejection or breakout at pivot levels, avoiding the consolidation zone (R1-S1).
Confirmation Filters: Includes optional volume and RSI confirmation for signal validation.
EMA Trend Filter: Optional EMA (20/50/100/200) filter to align trades with the trend.
Visual Tools: Displays pivot levels, consolidation zones, and TP/SL lines with customizable colors, widths, and labels.
Alerts: Configurable alerts for trade opportunities based on Fibonacci pivot signals.
How to Use
Select the desired Pivot Type and Timeframe from the input settings.
Enable Trade on Rejection or Trade on Breakout to generate signals based on price action outside the consolidation zone (R1-S1).
Use Volume Confirmation and RSI Confirmation to filter signals for higher accuracy.
Apply the EMA Filter to ensure trades align with the broader trend.
Customize the display of pivot levels, labels, and TP/SL lines to suit your chart preferences.
Set up alerts to be notified of potential trade opportunities.
Full Stochastic (TC2000-style EMA 5,3,3)Full Stochastic (TC2000-style EMA 5,3,3) computes a Full Stochastic oscillator matching TC2000’s settings with Average Type = Exponential.
Raw %K is calculated over K=5, then smoothed by an EMA with Slowing=3 to form the Full %K, and %D is an EMA of Full %K with D=3.
Plots:
%K in black, %D in red, with 80/20 overbought/oversold levels in green.
This setup emphasizes momentum shifts while applying EMA smoothing at both stages to reduce noise and maintain responsiveness. Inputs are adjustable to suit different symbols and timeframes.
ATR% + 1y Percentile (panel, v6) by chaidiagnostic panel. It plots ATR% and its 1-year percentile, so you can visually confirm whether a name is truly in a low-volatility regime and how extreme the percentile is.
ATR Extension from Moving Average, with Robust Sigma Bands
# ATR Extension from Moving Average, with Robust Sigma Bands
**What it does**
This indicator measures how far price is from a selected moving average, expressed in **ATR multiples**, then overlays **robust sigma bands** around the long run central tendency of that extension. Positive values mean price is extended above the MA, negative values mean price is extended below the MA. The signal adapts to volatility through ATR, which makes comparisons consistent across symbols and regimes.
**Why it can help**
* Normalizes distance to an MA by ATR, which controls for changing volatility
* Uses the **bar’s extreme** against the MA, not just the close, so it captures true stretch
* Computes a **median** and **standard deviation** of the extension over a multi-year window, which yields simple, intuitive bands for trend and mean-reversion decisions
---
## Inputs
* **MA length**: default 50, options 200, 64, 50, 20, 9, 4, 3
* **MA timeframe**: Daily or Weekly. The MA is computed on the chosen higher timeframe through `request.security`.
* **MA type**: EMA or SMA
* **Years lookback**: 1 to 10 years, default 5. This sets the sample for the median and sigma calculation, `years * 365` bars.
* **Line width**: visual width of the plotted extension series
* **Table**: optional on-chart table that displays the current long run **median** and **sigma** of the extension, with selectable text size
**Fixed parameters in this release**
* **ATR length**: 20 on the daily timeframe
* **ATR type**: classic ATR. ADR percent is not enabled in this version.
---
## Plots and colors
* **Main plot**: “Extension from 50d EMA” by default. Value is in **ATR multiples**.
* **Reference lines**:
* `median` line, black dashed
* +2σ orange, +3σ red
* −2σ blue, −3σ green
---
## How it is calculated
1. **Moving average** on the selected higher timeframe: EMA or SMA of `close`.
2. **Extreme-based distance** from MA, as a percent of price:
* If `close > MA`, use `(high − MA) / close * 100`
* Else, use `(low − MA) / close * 100`
3. **ATR percent** on the daily timeframe: `ATR(20) / close * 100`
4. **ATR multiples**: extension percent divided by ATR percent
5. **Robust center and spread** over the chosen lookback window:
* Center: **median** of the ATR-multiple series
* Spread: **standard deviation** of that series
* Bands: center ± 1σ, 2σ, 3σ, with 2σ and 3σ drawn
This design yields an intuitive unit scale. A value of **+2.0** means price is about 2 ATR above the selected MA by the most stretched side of the current bar. A value of **−3.0** means roughly 3 ATR below.
---
## Practical use
* **Trend continuation**
* Sustained readings near or above **+1σ** together with a rising MA often signal healthy momentum.
* **Mean reversion**
* Spikes into **±2σ** or **±3σ** can identify stretched conditions for fade setups in range or late-trend environments.
* **Regime awareness**
* The **median** moves slowly. When median drifts positive for many months, the market spends more time extended above the MA, which often marks bullish regimes. The opposite applies in bearish regimes.
**Notes**
* The MA can be set to Weekly while ATR remains Daily. This is deliberate, it keeps the normalization stable for most symbols.
* On very short intraday charts, the extension remains meaningful since it references the session’s extreme against a higher-timeframe MA and a daily ATR.
* Symbols with short histories may not fill the lookback window. Bands will adapt as data accrues.
---
## Table overlay
Enable **Table → Show** to see:
* “ATR from \”
* Current **median** and **sigma** of the extension series for your lookback
---
## Recommended settings
* **Swing equities**: 50 EMA on Daily, 5 to 7 years
* **Index trend work**: 200 EMA on Daily, 10 years
* **Position trading**: 20 or 50 EMA on Weekly MA, 5 to 10 years
---
## Interpretation examples
* Reading **+2.7** with price above a rising 50 EMA, near prior highs
* Strong trend extension, consider pyramiding in trend systems or waiting for a pullback if you are a mean-reverter.
* Reading **−2.2** into multi-month support with flattening MA
* Stretch to the downside that often mean-reverts, size entries based on your system rules.
---
## Credits
The concept of measuring stretch from a moving average in ATR units has a rich community history. This implementation and its presentation draw on ideas popularized by **Jeff Sun**, **SugarTrader**, and **Steve D Jacobs**. Thanks to each for their contributions to ATR-based extension thinking.
---
## License
This script and description are distributed under **MPL-2.0**, consistent with the header in the source code.
---
## Changelog
* **v1.0**: Initial public release. Daily ATR normalization, EMA or SMA on D or W timeframe, robust median and sigma bands, optional table.
---
## Disclaimer
This tool is for educational use only. It is not financial advice. Always test on your own data and strategies, then manage risk accordingly.
Stoch Cross Strategy with Dynamic Lot SizeEntry:
Buy when %K crosses above %D in oversold (<20).
Sell when %K crosses below %D in overbought (>80).
Exit:
TP fixed at +1000 pips.
SL fixed at -500 pips.
Lot management:
Start at 0.01.
+0.01 after every win (up to 10.0).
–0.01 after every loss (never below 0.01).
Alerts:
Alerts fire on every valid signal.
Messages show direction, lot size, SL, and TP
ATR% Compression + Volume Breakout (overlay price panel)this is your signal/alerts tool. It tints compression regimes, marks volume-breakout bars, and fires the two alerts (“Compression Detected” and “Volume Breakout + ATR% Rising”).
CheckList คนใจร้อนThink of this indicator as your trend sanity check. It won’t tell you what to do—but it’ll help you see the bigger picture before you act. Your risk is your responsibility. No shortcuts, no excuses—just disciplined decisions and solid money management.
Built for traders who value structure over impulse. This tool helps you stay aligned with your plan, not your emotions. Use it to reinforce discipline, not override it.
MACD X Cross with PlotThe default MACD indicator with the crossover added at the top of the MACD plot pane. Arrow up for MACD crossover signal line. Arrow down for MACD crossunder signal line.
Ai Golden Support and Resistance Adaptive Support & Resistance (ADR-scaled ABCD + Breakout/Retest Zones)
What it does
This indicator detects actionable support/resistance zones from swing structure and breakout events, then keeps each zone active until it’s invalidated by price. It adapts zone sensitivity using Average Daily Range (ADR) so the same rules scale across symbols and vol regimes.
Core Logic (high level)
Swing & ABCD pattern seed
Detects alternating pivots (high–low–high–low or low–high–low–high) using a user-selected lookback.
Validates basic AB–BC–CD proportions: BC must retrace a portion of AB; CD must extend BC within a set range.
From a valid sequence, sets a candidate level (top for bearish, bottom for bullish).
Breakout confirmation
A level becomes confirmed when price closes beyond it (crossover/crossunder).
On confirmation, the script draws a dotted reference line and records how many bars elapsed from the seed pivot to breakout. That count defines the lookback window used for local extremes.
Zone construction
Supply (bearish): builds a box around the most recent local range near the bearish seed;
Demand (bullish): builds a box around the most recent local range near the bullish seed.
Each zone’s height is derived from nearby extremes and the seed swing, so boxes reflect local structure rather than fixed pip widths.
Volatility normalization (ADR%)
ADR is computed from daily candles.
The Risk Profile input (“High/Medium/Low”) scales required move sizes using ADR%, and adjusts pivot sensitivity (fewer/more bars).
Higher risk → more sensitive (smaller ADR %, tighter pivot lookback).
Lower risk → stricter filters (larger ADR %, wider pivot lookback).
Explosive-move filter (streak logic)
Searches the seeded lookback for consecutive same-color candles (config via the risk profile).
Requires the cumulative % move of that streak to exceed an ADR-scaled threshold.
When found, the zone is tagged as originating from an “explosive” move (potentially higher reaction probability).
Zone persistence & invalidation
Zones persist and auto-extend to the right until invalidated.
Invalidation occurs when price closes through a rule-based threshold derived from the seed structure (stored per zone).
Once invalidated, the zone is marked inactive and stops updating.
Inputs & Controls
Risk Profile: High / Medium / Low (sets pivot lookback, streak length, and ADR% thresholds).
Labels & Visuals: Toggle labels and level lines; set line width.
Colors/Boxes: Supply (red), Demand (green); dotted breakout references.
No broker/session settings are required; the script adapts per symbol via ADR.
On-Chart Elements
Dotted breakout lines at confirmed levels (with measured bars-to-breakout).
Supply/Demand boxes that extend until invalidation.
Optional labels for clarity; minimal clutter by default.
How to Use
Context: Use higher-TF context for bias; apply zones on your trading TF.
Confluence: Combine zones with your own triggers (structure breaks, rejection wicks, momentum shifts).
Invalidation: If price closes beyond a zone’s invalidation threshold, treat that zone as inactive.
Sensitivity: If too many zones appear, switch to Medium/Low Risk (stricter ADR% & pivots); if too few, use High Risk.
Notes & Limitations
Logic is rule-based; there is no machine learning.
Daily ADR is computed from D timeframe, so intraday charts inherit daily volatility context.
Results vary by symbol and timeframe; validate settings per market.
This is an indicator (no orders or P/L).
ASM Pro EMA Indicator – Smart Buy/Sell SignalsAdvanced EMA crossover indicator with auto Buy/Sell signals, real-time alerts, and multi-market support. Perfect for Indian Market, Crypto, Forex & Stocks traders.
🔹ASM Pro EMA Indicator – Key Features:
1.Dual EMA Crossover Strategy – Detects market trend shifts using Fast & Slow EMA crossover.
2.Auto Buy/Sell Labels – Instantly shows clear green BUY and red SELL signals on chart.
3.Multi-Timeframe Support – Works smoothly from 1-minute to daily charts.
4.Real-Time Alerts – Receive instant alerts on TradingView app, email, or pop-up.
5.Beginner Friendly – Simple, easy-to-use with no complex setup.
6.Professional Look – Premium design with Blue & Orange EMAs + smart labels.
7.Universal Market Fit – Optimized for Crypto, Forex, Stocks, and Gold.
8.Low Lag Signals – Faster and more reliable than standard EMA crossovers.
9.Risk-Reward Friendly – Helps traders find clear entries, stop-loss, and exit zones.
10.Premium Access Model – Available via monthly & yearly subscription.
🔹How to Make Profit with ASM Pro EMA Indicator:
1.Follow Buy/Sell Signals with Discipline – Enter on Green BUY, exit/short on Red SELL.
2.Use Multi-Timeframe Confirmation – Small timeframe entry, big timeframe trend confirmation.
3.Set Stop-Loss at EMA Levels – Below EMA for BUY, above EMA for SELL.
4.Book Partial Profits – Secure 50% at key levels, trail the rest with EMA.
5.Trade Only Trending Markets – Works best in strong uptrend or downtrend.
もちぽよRCI subもちぽよさん監修の元作成したRCIのインジケーターです
RCIの短期+中期が上限下限到達時に背景色が変わり、加えて長期も到達すれば色が濃ゆくなります
サブチャートに表示されます
作成者のXのアカウントはこちら→@keito_trader
This is an RCI indicator created under the supervision of Mochipoyo.
When the short-term and medium-term RCIs reach the upper or lower limits, the background color changes.
If the long-term RCI also reaches the limit, the color becomes darker.
It is displayed in the sub-chart.
Creator’s X account → @keito_trader
Crypto Perp Calc v1Advanced Perpetual Position Calculator for TradingView
Description
A comprehensive position sizing and risk management tool designed specifically for perpetual futures trading. This indicator eliminates the confusion of calculating leveraged positions by providing real-time position metrics directly on your chart.
Key Features:
Interactive Price Selection: Click directly on chart to set entry, stop loss, and take profit levels
Accurate Lot Size Calculation: Instantly calculates the exact position size needed for your margin and leverage
Multiple Entry Support: DCA into positions with up to 3 entry points with customizable allocation
Multiple Take Profit Levels: Scale out of positions with up to 3 TP targets
Comprehensive Risk Metrics: Shows dollar P&L, account risk percentage, and liquidation price
Visual Risk/Reward: Color-coded boxes and lines display your trade setup clearly
Real-time Info Table: All critical position data in one organized panel
Perfect for traders using perpetual futures who need precise position sizing with leverage.
---------
How to Use
Quick Start (3 Clicks)
1. Add the indicator to your chart
2. Click three times when prompted:
First click: Set your entry price
Second click: Set your stop loss
Third click: Set your take profit
3. Read the TOTAL LOTS value from the info table (highlighted in yellow)
4. Use this lot size in your exchange when placing the trade
Detailed Setup
Step 1: Configure Your Account
Enter your account balance (total USDT in account)
Set your margin amount (how much USDT to risk on this trade)
Choose your leverage (1x to 125x)
Select Long or Short position
Step 2: Set Price Levels
Main levels use interactive clicking (Entry, SL, TP)
For multiple entries or TPs, use the settings panel to manually input prices and percentages
Step 3: Read the Results
The info table shows:
TOTAL LOTS - The position size to enter on your exchange
Margin Used - Your actual capital at risk
Notional - Total position value (margin × leverage)
Max Risk - Dollar amount you'll lose at stop loss
Total Profit - Dollar amount you'll gain at take profit
R:R Ratio - Risk to reward ratio
Account Risk - Percentage of account at risk
Liquidation - Price where position gets liquidated
Step 4: Advanced Features (Optional)
Multiple Entries (DCA):
Enable "Use Multiple Entries"
Set up to 3 entry prices
Allocate percentage for each (must total 100%)
See individual lot sizes for each entry
Multiple Take Profits:
Enable "Use Multiple TPs"
Set up to 3 TP levels
Allocate percentage to close at each level (must total 100%)
View profit at each target
Visual Elements
Blue lines/labels: Entry points
Red lines/labels: Stop loss
Green lines/labels: Take profit targets
Colored boxes: Visual risk (red) and reward (green) zones
Info table: Can be positioned anywhere on screen
Alerts
Set price alerts for:
Entry zones reached
Stop loss approached
Take profit levels hit
Works with TradingView's alert system
Tips for Best Results
Always verify the lot size matches your intended risk
Check the liquidation price stays far from your stop loss
Monitor the account risk percentage (recommended: keep under 2-3%)
Use the warning indicators if risk exceeds margin
For quick trades, use single entry/TP; for complex strategies, use multiple levels
Example Workflow
Find your trade setup using your analysis
Add this indicator and click to set levels
Check risk metrics in the table
Copy the TOTAL LOTS value
Enter this exact position size on your exchange
Set alerts for key levels if desired
This tool bridges the gap between TradingView charting and exchange execution, ensuring your position sizing is always accurate when trading with leverage.
Disclaimer, this was coded with help of AI, double check calculations if they are off.
智能资金BOS指标“智能资金BOS指标”是一个复杂的主图指标,整合了多种市场分析工具,基于智能资金(Smart Money)理念,分析市场结构(Market Structure)、订单块(OB)、公平价值缺口(FVG)以及溢价/折扣区域
The "Smart Money BOS Indicator" is a complex main chart indicator that integrates multiple market analysis tools. Based on the concept of Smart Money, it analyzes market structure, order block (OB), fair value gap (FVG), and premium/discount areas
进阶增强版MACD 这是一个增强版 MACD(移动平均线收敛-发散)指标,集成了多时间框架分析、面积统计、背离检测、仪表盘显示和警报功能。
该指标在传统 MACD 指标的基础上进行了大幅扩展,增加了多时间框架(本级别和高级别)、面积分析、背离概率计算、交互式仪表盘和表格显示等功能,旨在为交易者提供更全面的市场动态信息。核心功能包括:双级别 MACD:同时计算本级别(默认快线12、慢线26、信号线9)和高级别(默认快线66、慢线143、信号线50)的 MACD 和信号线。
面积分析:统计 MACD 直方图的面积(红绿柱),并与历史最大面积对比。
背离检测:识别价格与 MACD 的顶背离和底背离,并计算背离概率。
可视化:提供丰富的图形输出,包括直方图、MACD 线、信号线、金叉/死叉标记、背离线、面积标签、表格和仪表盘。
警报系统:为金叉/死叉、面积变化、背离信号等设置多种警报条件。
指标适用于趋势跟踪、背离交易和强度分析,适合日内交易、波段交易等场景。
This is an enhanced MACD (Moving Average Convergence Divergence) indicator that integrates multi time frame analysis, area statistics, divergence detection, dashboard display, and alert functions.
This indicator has been greatly expanded on the basis of the traditional MACD indicator, adding functions such as multi time frame (local and high-level), area analysis, deviation probability calculation, interactive dashboard and table display, aiming to provide traders with more comprehensive market dynamic information. The core functions include: dual level MACD: simultaneously calculating the MACD and signal lines of this level (default fast line 12, slow line 26, signal line 9) and high-level (default fast line 66, slow line 143, signal line 50).
Area analysis: Calculate the area of the MACD histogram (red and green bars) and compare it with the historical maximum area.
Deviation detection: Identify the top and bottom deviations between prices and MACD, and calculate the probability of deviation.
Visualization: Provides rich graphical output, including histograms, MACD lines, signal lines, golden/dead cross markers, backlit lines, area labels, tables, and dashboards.
Alarm system: Set multiple alarm conditions for golden/dead forks, area changes, deviation signals, etc.
The indicator is suitable for trend tracking, divergence trading, and intensity analysis, and is suitable for intraday trading, band trading, and other scenarios.
多因子交易系统该指标是一个多功能的技术分析工具,结合了以下核心模块:线性回归通道:通过计算不同周期(短期、中期、长期)的线性回归通道,识别价格趋势和关键价格水平。
范围检测:基于加权移动平均和自适应 ATR 检测价格横盘整理区域。
支撑阻力识别:通过摆动点和线性回归通道的上下轨自动识别关键支撑和阻力位,并存储在矩阵中。
交易信号生成:结合通道突破、范围突破和支撑阻力突破生成多头/空头信号,并通过成交量过滤和冷却期机制优化信号质量。
可视化:提供丰富的图形化输出,包括通道线、关键位线、范围框、信号标记和仪表盘。
警报系统:为突破、回踩、关键位触及等事件设置了多种警报条件。
指标的目标是帮助交易者识别趋势、横盘、关键价格水平,并提供可操作的交易信号,适合日内交易、波段交易等多种场景。
This indicator is a multifunctional technical analysis tool that combines the following core modules: Linear Regression Channel: By calculating the linear regression channels of different periods (short-term, medium-term, long-term), price trends and key price levels are identified.
Range detection: Based on weighted moving average and adaptive ATR, detect price sideways consolidation areas.
Support resistance identification: Key support and resistance positions are automatically identified through swing points and the upper and lower tracks of the linear regression channel, and stored in a matrix.
Trading signal generation: Combining channel breakthrough, range breakthrough, and support resistance breakthrough to generate long/short signals, and optimizing signal quality through volume filtering and cooling off mechanism.
Visualization: Provides rich graphical output, including channel lines, keylines, range boxes, signal markers, and dashboards.
Alarm system: Multiple alarm conditions are set for events such as breakthroughs, retracements, and key position touches.
The goal of the indicator is to help traders identify trends, sideways movements, key price levels, and provide actionable trading signals, suitable for various scenarios such as intraday trading and band trading.
Liquidity levels + Order BlocksThis script mark liquidity levels, and monthly, weekly and daily candle open. The order blocks indicator is on construction.
SMI Ergodic Dual Pro [Point Algo]Overview
This indicator is designed to provide traders with a structured approach to analyzing price action using custom-drawn pro lines. It aims to help identify potential support and resistance zones, trend direction, and possible trading opportunities. The tool is built to assist in decision-making, not to guarantee profitable outcomes.
Features
• Custom pro lines highlighting potential key market levels.
• Trend direction assistance for better clarity.
• Works across multiple timeframes.
• Easy-to-use interface suitable for both beginners and experienced traders.
• Non-repainting signals for reliability.
How It’s Used
Traders can apply the indicator to their charts to:
• Identify potential reversal zones.
• Confirm market structure with pro lines.
• Enhance trading strategies with clearer entry and exit zones.
• Use in combination with other technical analysis tools for better accuracy.
Conclusion
This indicator is a supportive tool designed to improve market analysis. It should be used as part of a broader trading plan and not as a standalone buy/sell signal generator. Results may vary based on individual strategies and market conditions.
Disclaimer
This script is for educational and informational purposes only. It is not financial advice. Trading involves risk, and past performance does not guarantee future results. The developer of this indicator is not responsible for any financial losses that may occur from its use.
VXN Levels! Curated Supply and Resistance!VXN Levels!! is a clean, no-nonsense auto-draw tool that displays handpicked support & resistance zones for selected major forex pairs.
Unlike most indicators that rely on formulas and often repaint, every level here comes from a manually curated database. Each price zone is chosen based on precision rejections, wick re-tests, and institutional footprints — the same levels we trade daily.
Because these levels are database-driven, they never repaint. They will only change if we manually update them on our end, ensuring you see exactly what we see.
🔄 Levels are updated daily/weekly as needed to reflect current market conditions.
Pre-loaded pairs include:
AUDCAD, AUDJPY, AUDUSD
CADJPY
EURCAD, EURJPY, EURUSD, EURAUD
GBPAUD, GBPCAD, GBPJPY, GBPUSD
USDJPY
🧭 If you're viewing this on an unlisted pair, no levels will appear.
📨 Contact us if you’d like custom auto-levels tailored for your pair.
⚙️ All levels are static, not repainted, and built for clean S/R retest strategies — suitable for both intraday and swing setups.
📌 For more insights & updates:
Follow us on Instagram → @vxnvixions
BTC_Hull Suite StrategyOverview
BTC_Hull Suite Strategy is a trend-following system designed to keep drawdowns modest while staying exposed during genuine uptrends. It uses the Hull Moving Average (HMA) for fast, low-lag trend turns, a long-term SMA filter to avoid chop, and a percentage trailing stop to protect gains.
🔧 What the strategy includes
- Hull Moving Average (HMA) with configurable length (default 55)
- SMA filter (default 130) to trade only with higher-timeframe bias
- Trailing stop in percent (default 5%) based on the running peak of close
- Execution model: signals are evaluated on the previous bar and entries are placed at the next bar’s open (TradingView default)
📈 How it works:
✅ Entry (Long):
Detects a bullish Hull turn by comparing the current HMA to its value 3 bars ago:
h > h3 and h <= h3 → HMA just turned up on the prior bar
The SMA filter must confirm: close > sma
If both are true (and within the date window), a long is opened next bar at the open
❌ Exit:
Hull turn down: h < h3 and h >= h3 , or
Trailing stop: price closes below peak * (1 – trailingPct)
Either condition closes the position at the current bar’s close
Notes:
pyramiding = 1 → allows one add-on (maximum two concurrent long positions)
Position sizing defaults to 20% of equity per entry (adjustable in Properties)
Who is this for?
This strategy is tailored for Bitcoin traders (spot or perpetuals) who want a rules-based, low-lag trend system with built-in drawdown protection.
It works best on Daily or 4H charts, but parameters can be adapted for other timeframes.
⚠️ Disclaimer
This strategy is provided for educational and research purposes only.
It is not financial advice. Markets are risky — always test on your own data, include realistic fees/slippage, and forward-test before using real capital.
OPTIMAL super trend tripple confirm for leverage. Ai implemented for higher r:r still a work in progresss
Trend MasterOverview
The Strategy is a trend-following trading system designed for forex, stocks, or other markets on TradingView. It uses pivot points to identify support and resistance levels, combined with a 200-period Exponential Moving Average (EMA) to filter trades. The strategy enters long or short positions based on trend reversals during specific trading sessions (London or New York). It incorporates robust risk management, including position sizing based on risk percentage or fixed amount, trailing stop-losses, breakeven moves, and weekly/monthly profit/loss limits to prevent overtrading.
This script is ideal for traders who want a semi-automated approach with visual aids like colored session backgrounds, support/resistance lines, and a performance dashboard. It supports backtesting from a custom start date and can limit trades to one per session for discipline. Alerts are built-in for entries, exits, and stop-loss adjustments, making it compatible with automated trading bots.
Key Benefits:
Trend Reversal Detection: Spots higher highs/lows and lower highs/lows to confirm trend changes.
Session Filtering: Trades only during high-liquidity sessions to avoid choppy markets.
Risk Control: Automatically calculates position sizes to risk only a set percentage or dollar amount per trade.
Performance Tracking: Displays a table of weekly or monthly P&L (profit and loss) with color-coded heatmaps for easy review.
Customizable: Adjust trade direction, risk levels, take-profit ratios, and more via inputs.
The strategy uses a 1:1.2 risk-reward ratio by default but can be tweaked.
How It Works
Trend Identification:
The script calculates pivot highs and lows using left (4) and right (2) bars to detect swing points.
It identifies patterns like Higher Highs (HH), Higher Lows (HL), Lower Highs (LH), and Lower Lows (LL) to determine the trend direction (uptrend if above resistance, downtrend if below support).
Support (green dotted lines) and resistance (red dotted lines) are drawn dynamically and update on trend changes.
Bars are colored blue (uptrend) or black (downtrend) for visual clarity.
Entry Signals:
Long Entry: Price closes above the 200 EMA, trend shifts from down to up (e.g., breaking resistance), during an active session (London or NY), and no trade has been taken that session (if enabled).
Short Entry: Price closes below the 200 EMA, trend shifts from up to down (e.g., breaking support), during an active session, and no prior trade that session.
Trades can be restricted to "Long Only," "Short Only," or "Both."
Entries are filtered by a start date (e.g., from January 2022) and optional month-specific testing.
Position Sizing and Risk:
Risk per trade: Either a fixed dollar amount (e.g., $500) or percentage of equity (e.g., 1%).
Quantity is calculated as: Risk Amount / (Entry Price - Stop-Loss Price).
This ensures you never risk more than intended, regardless of market volatility.
Stop-Loss (SL) and Take-Profit (TP):
SL for Longs: Set below the recent support level, adjustable by a "reduce value" (e.g., tighten by 0-90%) and gap (e.g., add a buffer).
SL for Shorts: Set above the recent resistance level, with similar adjustments.
TP: Based on risk-reward ratio (default 1.2:1), so if SL is 100 pips away, TP is 120 pips in profit.
Visual boxes show SL (red) and TP (green) on the chart for the next 4 bars after entry.
Trade Management:
Trailing SL: Automatically moves SL to the new support (longs) or resistance (shorts) if it tightens the stop without increasing risk.
Breakeven Move: If enabled, SL moves to entry price once profit reaches a set ratio of initial risk (default 1:1). For example, if risk was 1%, SL moves to breakeven at 1% profit.
One Trade Per Session: Prevents multiple entries in the same London or NY session to avoid overtrading.
Sessions include optional weekend inclusion and are highlighted (blue for London, green for NY).
Risk Limits (Weekly/Monthly):
Monitors P&L for the current week or month.
Stops trading if losses hit a limit (e.g., -3%) or profits reach a target (e.g., +7%).
Resets at the start of each new week/month.
Alerts notify when limits are hit.
Exits:
Trades exit at TP, SL, or manually via alerts.
No time-based exits; relies on price action.
Performance Dashboard:
A customizable table (position, size, colors) shows P&L percentages for each week/month in a grid.
Rows = Years, Columns = Weeks (1-52) or Months (1-12).
Color scaling: Green for profits (darker for bigger wins), red for losses (darker for bigger losses).
Yearly totals in the last column.
Helps visualize strategy performance over time without manual calculations.
Input Parameters Explained
Here's a breakdown of the main inputs for easy customization:
Trade Direction: "Both" (default), "Long Only," or "Short Only" – Controls allowed trade types.
Test Only Selected Month: If true, backtests only the specified month from the start year.
Start Year/Month: Sets the backtest start date (default: Jan 2022).
Include Weekends: If true, sessions can include weekends (rarely useful for forex).
Only One Trade Per Session: Limits to one entry per London/NY session (default: true).
Risk Management Time Frame: "Weekly" or "Monthly" – For P&L limits.
Enable Limits: Toggle weekly/monthly stop trading on loss/profit thresholds.
Loss Limit (%)/Profit Target (%): Stops trading if P&L hits these (e.g., -3% loss or +7% profit).
London/New York Session: Enable/disable, with time ranges (e.g., London: 0800-1300 UTC).
Left/Right Bars: For pivot detection (default: 4 left, 2 right) – Higher values smooth signals.
Support/Resistance: Toggle lines, colors, style, width.
Change Bar Color: Colors bars based on trend.
TP RR: Take-profit risk-reward (default: 1.2).
Stoploss Reduce Value: Tightens SL (negative values widen it, 0-0.9 range).
Stoploss Gap: Adds a buffer to SL (e.g., 0.1% away from support).
Move to Breakeven: Enables SL move to entry at a profit ratio (default: true, 1:1).
Use Risk Amount $: If true, risks fixed $ (e.g., 500); else, % of equity (default: 1%).
EMA 3: The slow EMA period (default: 200) for trend filter.
Performance Display: Toggle table, location (e.g., Bottom Right), size, colors, scaling for heatmaps.
Setup and Usage Tips
Add to Chart: Copy the script into TradingView's Pine Editor, compile, and add to your chart.
Backtesting: Use the Strategy Tester tab. Adjust inputs and test on historical data.
Live Trading: Connect alerts to a broker or bot (e.g., via webhook). The script sends JSON-formatted alerts for entry, exit, SL moves, and limits.
Best Markets: Works well on crypto pairs like SOLUSD or RUNEUSD on 4H timeframes.
Risk Warning: This is not financial advice. Always use demo accounts first. Past performance doesn't guarantee future results. Commission is set to 0.05% by default – adjust for your broker.
Customization: Experiment with EMA length or RR ratio for your style.
FXWIZ Smooth MA✅ FXWIZ Smooth MA — Hybrid Smoother with Bias Cloud (EMA 144/189)
What it is
A clean, adaptive trend tool that blends two smoothing bases (A/B) into one “Smooth MA,” adds an optional Signal EMA for timing, and overlays a Bias Cloud (EMA 144/189) to filter regime. It’s designed to be readable on a clean chart and easy for beginners.
Why it’s different
Most indicators show one fixed moving average. This script lets you choose two base filters (e.g., Jurik-style + McGinley), blend their contribution, and keep only what’s visually essential: a single Signal line and a soft gradient fill for context. The Bias Cloud adds a longer-view regime so you avoid trading against major direction.
How it works (conceptual)
🔹 Base A/B (selectable): Jurik-style (phase/power to reduce lag), McGinley (adapts to price velocity), T3, KAMA, FRAMA, Gaussian, Butterworth, SuperSmoother, ZLEMA, Kalman-lite, DEMA/TEMA, Decycler.
🔹 Blend (0→1): Weight of A→B. Example: 0.25 means “mostly A, some B.”
🔹 Signal EMA: EMA of the blended line; many traders use cross / slope change of Smooth vs Signal as entries/exits.
🔹 FXWIZ Gradient Fill: Global-scope fill between Smooth & Signal. Color flips by slope/cross to show bias without clutter.
🔹 Bias Cloud (EMA 144/189): Long-horizon regime. Separate brightness/opacity so it stays subtle while guiding direction.
Quick start (2 minutes)
➤ Step 1: Clean chart, apply FXWIZ Smooth MA.
➤ Step 2: Timeframe: 5m (works on 1m–1h).
➤ Step 3: Base A = Jurik-Style (phase +15, power 2.0), Base B = McGinley (k 0.60).
➤ Step 4: Blend = 0.25.
➤ Step 5: Signal EMA = 8.
➤ Step 6: Bias Cloud = ON, Fast 144 / Slow 189, Brighten 0.30.
Basic read:
🔹 Trade with Bias. Go long only when price and Smooth align above the Bias Cloud; short when below.
🔹 Timing: Use Smooth vs Signal cross or slope flip.
🔹 Context: Fill shows momentum build/decay; thinner fill = weaker push, wider fill = stronger push.
Presets
🔹 Trending (fast & tight): phase +18, power 1.9, k 0.55, blend 0.23, sig 7
🔹 Range/Noisy (smoother): phase +12, power 2.2, k 0.65, blend 0.29, sig 9
🔹 After news spike: phase +14, power 2.1, k 0.60, blend 0.27, sig 8
Suggested workflow
🔹 Top-down: Enable Bias Cloud; check 15m/1h first → trade the 5m in that direction.
🔹 Trigger: Smooth crosses Signal; confirm with Bias.
🔹 Stops: ATR multiple or swing beyond Signal.
🔹 Exits: Opposite cross, trail under Signal, or fixed R multiples.
Inputs reference
🔹 Base A/B: Choose any two filters.
🔹 Blend: 0 (A only) … 1 (B only).
🔹 Signal EMA: 6–10 typical.
🔹 Bias Cloud: EMA 144/189; Brighten 0.2–0.5; opacity defaults 85/100.
Limitations / best practices
🔹 No indicator removes whipsaws → filter with session/time/news.
🔹 Jurik-style here is an approximation (not proprietary JMA).
🔹 Use on liquid markets; avoid illiquid spikes.
Credits & license
🔹 Clean-room implementation; no third-party dependencies.
🔹 This Pine Script® code is MPL-2.0 licensed. © mplus2trust.
🔹 Built for invite-only use with educational intent; not financial advice.