Smart Lines//@version=6
indicator('Smart Lines', overlay = true)
// Variables to track line objects and colors
var line verticalLine = na
var line horizontalLineLow = na
var line horizontalLineHigh = na
var color lineColor = na
// Determine line color based on price change
if close > close
lineColor := color.green
lineColor
else if close < close
lineColor := color.red
lineColor
else
lineColor := color.gray
lineColor
// Draw vertical line at current bar's open
if bar_index != bar_index
line.delete(verticalLine)
verticalLine := line.new(bar_index, low, bar_index, high, color = lineColor, width = 2)
// Draw horizontal line at previous bar's low
if bar_index != bar_index
line.delete(horizontalLineLow)
horizontalLineLow := line.new(bar_index , low , bar_index, low , color = lineColor, width = 2, extend = extend.right)
// Draw horizontal line at previous bar's high
if bar_index != bar_index
line.delete(horizontalLineHigh)
horizontalLineHigh := line.new(bar_index , high , bar_index, high , color = lineColor, width = 2, extend = extend.right)
Penunjuk dan strategi
Liquidity Aggregation MALiquidity Aggregation MA
Designed to assess liquidity conditions by aggregating data from various economic indicators (Fed Liquidity, PBOC Liquidity, Inverse Volatility, and Inverse USD Strength) and visualizing them with moving averages (EMA and SMA). It is tailored for high beta assets like Bitcoin (cryptocurrency).
Key Features:
Liquidity Inputs: Utilizes custom ticker combinations (e.g., FRED:WALCL, ECONOMICS:CNFER) with optional inclusion of Fed Liquidity, PBOC Liquidity, Inverse Volatility (MOVE Index), and Inverse USD Strength (DXY).
Customizable Inputs:
EMA (default 55) and SMA (default 200) lengths.
Plot styles (Wave, Pulse, Classic) with glow effect and wave intensity options.
Strength display mode (Percentage or Absolute) with adjustable max strength thresholds.
Table position, size, and color intensity settings.
Visualization:
EMA and SMA lines with dynamic colors (teal for bullish "RISK ON", magenta for bearish "RISK OFF") based on signal strength.
Fill between lines with transparency adjusting to signal strength.
Wave or pulse effects for enhanced visual feedback.
A table shows the liquidity signal and a 10-block gauge reflecting signal strength.
Candles colored based on the liquidity signal.
Usage:
Helps traders evaluate liquidity-driven market trends across global financial systems.
The signal strength gauge and color intensity indicate the magnitude of the liquidity shift.
Suitable for overlay on a 1-day chart to monitor long-term liquidity impacts, as depicted in the Bitcoin/USD chart.
BB-Model Inspired Absolute Strength Index📊 BB-Model Inspired Absolute Strength Index (ASI)
Author: © GabrielAmadeusLau
Category: Momentum Oscillator / Adaptive Model / Divergence Tool
🔍 Overview
The BB-Model Inspired ASI is an advanced oscillator that combines a novel BB-model weighted moving average with percentile-based return normalization to quantify absolute market strength. This hybrid design allows the indicator to adapt dynamically to volume, volatility, and price structure, while detecting divergences and extremes with high sensitivity.
🧠 Key Concepts
🧩 1. BB-Model Weighting Engine
Each price in the lookback period is weighted by:
Fitness: Either Volume or ATR.
Decay: An exponential penalty applied to older data.
This results in a context-aware moving average that prioritizes impactful recent bars while ignoring stale noise.
📈 2. Absolute Strength Index Calculation
Computes returns from the BB-weighted price history.
Sorts returns and identifies thresholds for:
Top Percentile (Winners) – Strong upside moves.
Bottom Percentile (Losers) – Strong downside moves.
The current return is normalized within this dynamic range, scaled to , producing the ASI oscillator.
🧰 3. Signal Line & MA Smoothing
Select from SMA, EMA, WMA, RMA, or HMA to smooth the ASI signal.
Fully customizable length and styling.
🔄 4. Divergence Detection (Optional)
Detects bullish and bearish divergences between ASI and price using pivot highs/lows.
Highly customizable:
Adjustable lookback window.
Optional Heikin-Ashi integration.
Color-coded plots and labels.
Alerts for divergence events.
⚙️ Inputs Summary
Parameter Description
Fitness Source Volume or ATR
Decay Factor Penalty on older bars
Returns Lookback How many bars to calculate return distribution
Percentile Thresholds Set overbought and oversold bands dynamically
MA Type & Length Control signal smoothing
Divergence Settings Toggle divergence logic and sensitivity
📌 Use Cases
Detect when absolute directional strength is reaching exhaustion.
Spot early signs of bullish or bearish divergences between momentum and price.
Filter signals by volume or volatility importance using BB-model weighting.
Use in combination with trend filters for precision entries/exits.
Trend DashboardTrend Dashboard
Provides a comprehensive trend analysis for an asset, such as Bitcoin, across multiple timeframes (1W, 1D, 12H). It displays trend signals, scores, and rate of change (ROC) in a customizable table, with optional bar coloring and trend plots.
Key Features:
Trend Analysis: Aggregates signals from various technical indicators across 1W, 1D, and 12H timeframes.
Customizable Inputs:
Table position (e.g., Top Left, Bottom Right) and size (Full or Compact).
Bar color timeframe (1W, 1D, 12H).
ROC lookback periods for each timeframe.
Options to plot TPIs (Trend Power Indicators) and bar colors.
Visualization:
A table shows trend length, score, signal (Long/Short), ROC, and lookback period.
Color-coded signals (green for Long, magenta for Short) with dynamic updates.
Optional bar coloring based on the selected timeframe's trend.
Plotting of trend signals as lines with labels.
Usage:
Helps traders identify long or short trends and their strength across different timeframes.
The ROC indicates positive, negative, or no change in trend strength.
Useful for overlay on a 1-day chart, as shown in the attached Bitcoin/USD chart, to monitor multi-timeframe trends.
Valuation Z-ScoreValuation Z-Score
The "Valuation Z-Score" indicator is a custom Pine Script designed to assess the valuation of an asset, such as Bitcoin, by calculating a composite Z-Score based on multiple technical indicators and risk-adjusted performance metrics. It provides a visual representation of overbought and oversold conditions using a color-graded histogram and a short length smoothed moving average (SMA).
Key Features:
Z-Score Calculation:
Combines Z-Scores from indicators like RSI, MACD, Bollinger Bands, TSI, ROC, Momentum, CCI, Chande Momentum Oscillator, and additional metrics (Sharpe Ratio, Sortino Ratio, Omega Ratio) over customizable lookback periods.
Customizable Inputs:
Z-Score Lookback and Technical Valuation Lookback for Z-Score calculations.
Metrics Calc Lookback periods for risk-adjusted performance ratios.
Adjustable Upper and Lower Z-Score Thresholds (default ±2.0).
SMA Length and color bar toggle for plot customization.
Visualization:
A histogram displays the total Z-Score with a 5-color gradient (cyan for oversold, magenta for overbought) and dynamic transparency based on proximity to thresholds.
An SMA line/area overlays the histogram for trend smoothing.
Threshold lines (upper and lower) with adaptive transparency.
A label shows the current Z-Score value.
Optional background bar coloring based on SMA.
Usage:
The indicator helps identify potential overbought (above upper threshold) or oversold (below lower threshold) conditions.
The color gradient and SMA provide visual cues for trend strength and reversals.
Ideal for traders analyzing asset valuation over any timeframe.
BookYourTradeHappy trade,
This is a semi-automated tool that allows you to define a trade setup in advance, including multiple exit levels. It incorporates a proven method for managing risk and reward. You specify a fixed entry price, an initial stop loss, two take profit levels, and a trailing stop loss for the remaining position—aiming to maximize gains from the trend. Alerts are included so you can step away from the screen and still be notified when any predefined price level is reached. The tool sends trade orders as market orders to your exchange or broker via webhooks. You provide the general webhook format, and the script automatically fills in the correct values.
How to Use
This tool is intended for manual day traders.
Define Entry Conditions:
Set your planned entry price and, optionally, a start and end time for trade activation. The script will not run unless the price reaches your specified level during this time window.
Set Stop Loss:
Define the stop loss as a fixed number of points from the entry price (above or below). This also determines whether the trade is long or short.
Configure Take Profits:
Specify the risk-reward ratio and position size for Take Profit 1.
Do the same for Take Profit 2.
Trailing Stop Loss:
For the remaining position after Take Profit 2, set a trailing stop loss. This is also defined in points, relative to the previous bar's closing price.
Time and Session Filters:
Set the earliest date to begin trading and the latest date by which all positions should be closed.
Optionally, define specific time windows (daily and or weekly) during which trading should be disabled. These off-times will be visually grayed out.
Define Capital and Fees:
Input the dollar amount you want to invest, along with any applicable percentage-based fees or fixed fees per trade. This is useful since different brokers, exchanges, or webhook service providers may charge in different ways (fixed, percentage, or both).
Configure Webhooks:
Enter your broker- or exchange-specific webhook for each trade event: entry, Take Profit 1, Take Profit 2, Stop Loss, and trailing exit. You’ll need to include placeholder strings in the webhook that the script will replace with actual trade values. The script provides a helper table to display these placeholders directly on the chart.
Some values you can deliver to the webhook service provider as an $ value or a deviation in percentage. For example the quantity of a trade or the take profit price. choose the correct replacement accordingly.
The script sends all orders as market orders.
Multiple Instances:
If you want to run multiple instances of this script, you must assign a unique name to each one. This ensures that the webhook service provider can correctly route trade signals to the appropriate bot.
Here is an evolution of one trade in images:
The trade setting are defined but the trade has not started
The trade has started
The price reached the first take profit level and a part of the investment was liquidated.
The trade reached it's end date and the remaining investment was liquidated.
cheers
TrendShield Pro | DinkanWorldTrendShield Pro is a powerful price action tool that combines momentum-based trend detection with an ATR-powered trailing stop system. Built using EMA and ATR logic, this indicator helps traders identify real trends, manage dynamic stop-loss levels, and react faster to momentum shifts — all with visual clarity.
🔍 Key Features:
✅ Momentum + Price Action Based Trend Detection
✅ Dynamic ATR Trailing Stop Line
✅ Real-Time Reversal Arrows and Diamond Alerts
✅ Optimized CandleTrack color theme (Green = Demand, Red = Supply)
✅ Fully customizable inputs
🧠 Why Use It?
Capture trends early with momentum-driven logic
Use trailing stops for exit strategy or re-entry zones
Stay on the right side of the market with visual confirmation
⚙️ Inputs:
EMA Period (for directional bias)
ATR Period (for volatility-based trailing stops)
Factor (stop distance control)
⚠️ Disclaimer:
This indicator is for educational and informational purposes only and should not be considered financial advice. Trading involves risk, and past performance does not guarantee future results. Always do your own research and consult with a licensed financial advisor before making any trading decisions. The creator of this script is not responsible for any financial losses incurred through the use of this tool.
CandleTrack Pro | Pure Price Action Trend Detection CandleTrack Pro | Pure Price Action Trend Detection with Smart Candle Coloring
📝 Description:
CandleTrack Pro is a clean, lightweight trend-detection tool that uses only candle structure and ATR-based logic to determine market direction — no indicators, no overlays, just pure price action.
🔍 Features:
✅ Smart Candle-Based Trend Detection
Uses dynamic ATR thresholds to identify trend shifts with precision.
✅ Doji Protection Logic
Automatically filters indecision candles to avoid whipsaws and false signals.
✅ Dynamic Bull/Bear Color Coding
Bullish candles are colored green, bearish candles are colored red — see the trend instantly.
✅ No Noise, No Lag
No moving averages, no smoothing — just real-time decision-making power based on price itself.
📈 Ideal For:
Price action purists
Scalpers and intraday traders
Swing traders looking for clear visual bias
─────────────────────────────────────────────────────────────
Disclaimer:
This indicator is provided for educational and informational purposes only and should not be considered as financial or investment advice. The tool is designed to assist with technical analysis, but it does not guarantee any specific results or outcomes. All trading and investment decisions are made at your own risk. Past performance is not indicative of future results. Always do your own research and consult with a qualified financial advisor before making any trading decisions. The author accepts no liability for any losses or damages resulting from the use of this script. By using this indicator, you acknowledge and accept these terms.
───────────────────────────────────────────────────
Volume MA Breakout T3 [Teyo69]🧭 Overview
Volume MA Breakout T3 highlights volume bars that exceed a dynamic moving average threshold. It helps traders visually identify volume breakouts—periods of significant buying or selling pressure—based on user-selected MA methods (SMA, EMA, DEMA).
🔍 Features
Volume Highlighting: Green bars indicate volume breakout above the MA; red bars otherwise.
Custom MA Options: Choose between SMA, EMA, or Double EMA for volume smoothing.
Dynamic Threshold: The moving average line adjusts based on user-defined length and method.
⚙️ Configuration
Length: Number of bars used for the moving average calculation (default: 14).
Method: Type of moving average to use:
"SMA" - Simple Moving Average
"EMA" - Exponential Moving Average
"Double EMA" - Double Exponential Moving Average
📈 How to Use
Apply to any chart to visualize volume behavior relative to its MA.
Look for green bars: These suggest volume is breaking out above its recent average—potential signal of momentum.
Red bars indicate normal/subdued volume.
⚠️ Limitations
Does not provide directional bias—use with price action or trend confirmation tools.
Works best with additional context (e.g., support/resistance, candle formations).
🧠 Advanced Tips
Use shorter MAs (e.g., 5–10) in volatile markets for more responsive signals.
Combine with OBV, MFI, or accumulation indicators for confluence.
📌 Notes
This is a volume-based filter, not a signal generator.
Useful for breakout traders and volume profile enthusiasts.
📜 Disclaimer
This script is for educational purposes only. Always test in a simulated environment before live trading. Not financial advice.
BskLAB - Price Target 🧠 BskLAB – Price Target™ | Structure-Based Fibonacci Extension Mapping Tool
BskLAB – Price Target™ is a structural analysis tool designed to automate the plotting of Fibonacci extension zones based on real-time shifts in market structure. Using a custom midpoint-based projection method, this indicator helps traders visualize potential target zones without relying on manual drawing or subjective analysis.
It is built to work seamlessly with the BskLAB suite of tools, acting as the zone-defining layer within a broader confluence-based trading workflow.
🔍 Concept & Logic Overview
Unlike traditional Fibonacci tools that require manual high-low selection, this indicator uses an automated projection system tied directly to price structure shifts, such as Break of Structure (BoS) and Change of Character (CHoCH).
Core Workflow:
1.Structure Detection
Automatically identifies BoS and CHoCH patterns based on recent price action, marking significant directional shifts.
2.Swing Point Identification
Once a shift is detected, the indicator finds the nearest swing high and swing low surrounding the event.
3.Midpoint Calculation (Custom Logic)
Instead of projecting from full range, the system calculates a 50% midpoint between swing points. This serves as an anchor for cleaner, more balanced projections.
4.Extension Projection
From the midpoint, the script draws Fibonacci extensions (e.g., 1.2, 1.7, 2.8, 3.5) in the direction of the structure break.
5.Zone Mapping
These levels are displayed as shaded zones — which can serve as areas of interest for potential reactions, target regions, or contextual zones for further analysis.
6.Chart Customization Options
Users can toggle price labels, show/hide BoS or CHoCH selectively, and adjust display settings to maintain chart clarity.
⚠ Fibonacci levels are used here as visual structure-based zones, not fixed price targets or predictive tools. They are intended to support discretionary decision-making.
🧠 Integration in a Structured Workflow
While Price Target™ defines key areas, it is not designed to provide trade signals on its own. For optimal use, it works best when paired with confirmation tools from the BskLAB ecosystem.
Suggested Workflow Example:
Step 1: Observe when price reaches or enters a target extension zone
Step 2: Check for confirmation via momentum or structure (e.g., with Signal Assistant™)
Step 3: Validate volume behavior (e.g., with Money Flow X™)
Step 4: If confluence is present, define entry, stop-loss (outside the zone), and TP (based on structure or zone progression)
This multi-layered approach supports higher-quality discretionary analysis without relying solely on any one signal.
⚙️ Core Features Summary
• ✅ Automated BoS and CHoCH detection
• ✅ Custom midpoint-based Fibonacci projection logic
• ✅ Adjustable zone visibility and label toggles
• ✅ Clean layout designed for integration with other BskLAB tools
• ✅ Extension levels that scale with market structure and volatility
🔗 Intended Use Cases
Price Target™ is best used as a zone definition tool — helping traders highlight areas where price may react based on structural shifts. When combined with:
Signal Assistant™ for structure- and trend-based entry logic
Money Flow X™ for volume and momentum confirmation
…the tools together form a three-step confirmation system:
Zone ➜ Signal ➜ Volume
This layered system supports cleaner entries and greater contextual confidence for discretionary traders.
📍 RISK DISCLAIMER
Trading involves significant risk and is not suitable for everyone. All tools, scripts, and educational materials provided by BSKLab are for informational and educational purposes only. We do not offer financial advice.
Past performance does not guarantee future results. Always trade responsibly.
📍 CONCLUSION
At BSKLab, we believe consistent trading success doesn’t come from indicators alone — it comes from the trader’s ability to apply tools with context, discipline, and awareness. Indicators are only as powerful as the hands that use them.
The BSKLab Signal System isn’t designed to provide “magic signals,” but to empower traders with an adaptive, structured, and intelligent approach to identifying real opportunities while filtering out the noise.
Whether you’re a beginner or an experienced trader, our tools are designed to support real-world decisions — not just theory.
➡️ Request access below to join the BSKLab system and unlock the full suite of smart trading tools.
[Top] Trend Lines with Strength DetectionThe Auto Trend Lines with Strength Detection indicator automatically detects and draws dynamic support and resistance lines based on pivot highs and lows. These trend lines adapt to market structure in real time, increasing in opacity as they accumulate additional touches. Numbers are also printed above each line indicating the number of times that line has been tested and held.
Unlike most trend line indicators, this one does not consider a brief wick to have broken the line. Nor does it break the line if the current candle is testing it. The candle must fully close on the oppose side of a trend line for this indicator to remove that line.
On the chart above you can see that the current candle is in the process of breaking the two resistance lines. If the candle closes above the lines, they will be broken and removed from the chart. If it's not able to close above the resistance lines, they will remain intact and accumulate another touch point.
Key features include:
Pivot-based detection: Lines are drawn between valid swing points while filtering out intermediate price violations.
Strength visualization: Each time price comes into proximity with a trend line, the “touch count” is incremented and both the line and its label darken accordingly.
Break handling: Lines are automatically removed once the body of a candle closes beyond them, reducing clutter from broken levels.
Customization options: Users can adjust pivot sensitivity, maximum lines to retain, line styles, widths, and colors independently for support and resistance.
Pivot History: You can decide how far back you want the script to look for valid trends.
⸻
Potential Uses:
Identifying strong support/resistance zones: As trend lines accumulate touches, they become visually stronger, helping traders spot high-confluence levels.
Breakout and breakdown filtering: Detects and removes invalidated trend lines only after a full candle body breach, reducing false breakouts caused by wicks.
Trend structure analysis: Helps visualize emerging or weakening trends by observing how support/resistance lines evolve and how price interacts with them.
Strategy development: Can be used as a component in breakout, mean-reversion, or range-based trading systems.
BskLAB - Money Flow X🧠 BskLAB – Money Flow X™ | Volume & Momentum Visualization Framework
BskLAB – Money Flow X™ is a modular analysis tool developed to help traders visually interpret volume pressure, momentum shifts, and divergence signals through a combination of dynamic histograms and oscillator-based logic.
Built with flexibility in mind, this indicator includes two operational modes — each tailored to highlight different aspects of market behavior using internal smoothing, color-based signals, and contextual overlays. When used alongside other components within the BskLAB suite, it supports more informed decision-making through volume-based confirmation.
🔧 Mode 1: Money Flow Mode (WaveTrend + Divergence Overlay)
This mode features a custom implementation of a dual-line WaveTrend oscillator designed to measure short-term momentum against a smoothed trend baseline.
Key logic includes:
WT1 (Fast Line): Measures near-term momentum using (H+L+C)/3 with EMA smoothing
WT2 (Signal Line): Applies SMA smoothing to WT1 for trend filtering
Zero Line Interpretation: Values above/below 0 indicate bullish/bearish momentum bias
Crossover Color Logic: Cyan for bullish crossover, White for bearish
Additionally, this mode includes an automated divergence detection system that visually maps potential price/momentum mismatches:
🟢 Green = Classic Bullish Divergence
🔴 Red = Classic Bearish Divergence
🔵 Blue = Hidden Bullish Divergence
🟠 Orange = Hidden Bearish Divergence
This structure helps traders monitor both momentum direction and divergence opportunities without manually drawing lines.
📊 Mode 2: Volume Momentum Mode (Dynamic Histogram)
This mode provides a volume-driven pressure reading via histogram bars that dynamically scale based on the behavior of PercentB (%B) from Bollinger Bands.
Calculation Breakdown:
%B is computed from the relationship between price and its Bollinger Band range
The histogram expands/contracts in proportion to how far price stretches from its mean
Bar Color Logic:
🔴 Red = Dominant selling pressure
⚪ White = Dominant buying pressure
This display helps visualize momentum build-up and directional conviction — especially when used to confirm breakouts or identify exhaustion zones.
🔬 Internal Logic Overview
WaveTrend Oscillator System (WT1 & WT2)
WT1 = Momentum Line (EMA-smoothed average price)
WT2 = Signal Line (SMA of WT1)
Crossover behavior and color logic reflect directional momentum
Money Flow Pressure Line (Area Plot)
Measures pressure from volume-weighted price behavior
Color-shifts between Light Cyan (buying pressure) and Light White (selling pressure)
Helps contextualize WT crossover signals with volume flow
Combined, these signals offer a layered view of whether momentum is building, stalling, or diverging from price.
🧩 Intended Usage & Integration
Money Flow X™ is designed as a confirmation tool rather than a standalone signal generator. Its optimal use is in conjunction with other BskLAB indicators — especially Signal Assistant™ — to validate potential trade entries using volume/momentum alignment.
Example workflow:
Receive a structural or momentum-based signal from Signal Assistant
Cross-check with:
WT1 crossover confirmation in Money Flow Mode
Volume Histogram color change in Volume Momentum Mode
Divergence presence (if enabled)
By using Money Flow X in this supporting role, traders can filter weaker signals, increase conviction, and improve context-based decision-making.
⚙️ Customizable Inputs
Toggle between Money Flow and Volume Momentum mode
Adjustable WaveTrend smoothing lengths
Custom divergence overlays (Classic / Hidden)
Histogram sensitivity via volume length input
🔶 CONCLUSION
BskLAB – Money Flow X isn’t just another indicator — it’s a decision-making support system designed to uncover the truth behind price movements.
It helps traders gain clarity during uncertainty, separate strong signals from noise, and develop a systematic approach to entries.
By combining oscillator-based momentum + volume behavior + divergences, this tool becomes essential for traders who prioritize execution accuracy in real-world conditions.
🔶 RISK DISCLAIMER
Trading involves high risk and is not suitable for everyone. All tools, scripts, and content provided by BskLAB are for educational purposes only and do not constitute financial advice.
Past results do not guarantee future performance — trade responsibly.
Persistent 1H S/R Zones with Labels (No Overlap) + 50 EMAit helps find recant support and resistance zones with swing points
Persistent Daily & 4H S/R Zones with Labels + 50 EMAit helps find swing high and lows support and ressistsance
BskLAB - Signals Assistant 🧠 BSKLab Signal Assistant™ – Modular Framework for Visual Technical Analysis
BSKLab Signal Assistant™ is a modular and adaptive trading toolkit built for discretionary traders who want to combine multiple layers of technical confluence into their chart analysis.
Rather than being a traditional indicator or mashup of public tools, this script is structured around a dual-mode architecture — allowing users to switch between two core signal-generation methodologies:
Swing Mode for potential reversal detection
Following Mode for trend-following analysis
Each mode integrates custom-coded components, designed to help traders visualize market conditions, identify potential turning points, and confirm trends through calculated filters — without guaranteeing entries or exits.
🔁 Mode 1: Swing (Reversal-Based Analysis)
Swing Mode is designed to detect areas where price may be overextended and at risk of reversal. This is achieved using a custom-built Zone Style system based on a Triangular Moving Average (TMA) and ATR-based band width adjustment. The goal is to identify dynamic support and resistance areas that adjust in real time based on recent volatility.
Key Components in Swing Mode:
TMA Zone + ATR: Acts as an adaptive reversal zone. The TMA provides smoothed structure, while the ATR adjusts the zone width according to recent volatility, helping avoid flat/static zones in fast-moving markets.
Bollinger Bands: Used to detect price extremes. Price breaking beyond upper/lower bands in combination with zone behavior suggests possible exhaustion.
Custom SuperTrend: Added as a momentum filter. Only if SuperTrend flips in the direction of the move will the script consider the movement meaningful — filtering out noise and false reversals.
🟢 A bullish setup may occur when price closes below the lower zone and Bollinger Band, then rebounds with SuperTrend flipping upward.
🔴 A bearish setup may occur when price breaks above the upper zone, then turns down while SuperTrend flips bearish.
This mode is most effective during ranging markets or after impulsive moves.
📈 Mode 2: Following (Trend-Filtering Framework)
Following Mode focuses on confirming and aligning with dominant market trends. At the core of this system is BSKLab Cloud, a custom trend engine inspired by Ichimoku logic but modified to use ATR-weighted zones and trend-level strictness scoring.
Key Components in Following Mode:
BSKLab Cloud: Provides real-time trend confirmation with three adjustable strictness levels (Lv1–Lv3). This allows users to choose whether to be more sensitive or conservative in their trend validation.
Bollinger Bands: Help identify trend pullbacks. Price retesting the midline or outer zone can offer visual cues for entry areas within a trending structure.
Custom SuperTrend (optional): Can be used to confirm trend continuation using ATR-based trailing logic.
🟢 In bullish trends, entry conditions may involve price staying above the cloud and breaking above a BB midline.
🔴 In bearish trends, price should remain below the cloud with breakdowns below BB support zones.
This setup works best in trending environments and is designed to help avoid premature reversals.
🧩 Core Components Overview
TMA Zone + ATR – Adaptive reversal zone calculation combining smoothed TMA and real-time volatility width from ATR
Bollinger Bands – Measures statistical deviation from price mean to highlight OB/OS conditions
SuperTrend (Custom) – ATR-based momentum filter for directional confirmation
BSKLab Cloud – Modified trend filter inspired by Ichimoku, with trend-level scoring and strictness levels
📌 How It Works (In Summary)
The BSKLab Signal Assistant does not generate automatic buy/sell calls. Instead, it visually presents dynamic zones, volatility ranges, and trend conditions to assist in manual analysis and discretionary decision-making.
Users are encouraged to:
Use each mode according to market type (ranging vs trending)
Look for confluence between zone interaction, BB behavior, and trend alignment
Combine this with other chart reading techniques or systems
📍 RISK DISCLAIMER
Trading involves significant risk and is not suitable for everyone. All tools, scripts, and educational materials provided by BSKLab are for informational and educational purposes only. We do not offer financial advice.
Past performance does not guarantee future results. Always trade responsibly
📍 CONCLUSION
At BSKLab, we believe that consistent trading success doesn't come from indicators alone — it comes from the trader’s ability to apply them with context, discipline, and understanding. Tools are only as powerful as the hands they’re in.
The goal of the BSKLab Signal Assistant is not to provide magic signals, but to empower traders with a clean, adaptive, and intelligent framework that helps identify high-probability opportunities while filtering out the noise.
Whether you’re a beginner or experienced trader, this tool is designed to support real decisions in real markets — not just theory.
You can request access below to join the BSKLab system and unlock our full trading suite.
Jurik Moving Average🧠 Jurik Moving Average (JMA) — Ultra-Smooth Adaptive Trend Filter
This indicator implements a precise non-repainting recreation of the Jurik Moving Average (JMA) — a high-performance smoothing algorithm known for its ability to reduce lag while preserving rapid response to price changes. It is ideal for traders seeking a responsive yet stable line for trend detection, dynamic support/resistance, or signal generation.
⚙️ Core Functionality
At its heart, this indicator replicates the JMA logic as described in the original Jurik documentation, including:
✅ Adaptive smoothing based on price volatility.
✅ Variable phase shifting for forward/backward displacement.
✅ Power curve smoothing for dynamic control over responsiveness vs. smoothness.
✅ Volatility-aware band generation (optional).
The core algorithm uses a Kalman-style recursive filter with dynamic coefficients, adjusting to market conditions in real-time. Unlike traditional MAs (EMA, WMA, etc.), this implementation uses:
A volatility-normalized momentum engine to track price deviation (Kv factor).
A recursive double-smoothing mechanism for noise suppression without lag.
📈 Inputs
Length: Controls the base smoothing period.
Phase Shift: Moves the curve forward or backward in time (−100 to +100), for signal anticipation or lag removal.
Smoothing Power: Adjusts the sensitivity to price changes. Higher = smoother, lower = faster reaction.
Source: Any input (close, hl2, etc.) to apply the filter on.
Bands (optional): Dynamically generated adaptive envelopes based on real-time volatility.
🎯 How to Use
Use the JMA line as a trend-following tool or dynamic support/resistance.
Apply crossovers with price or other indicators for entries/exits.
Enable the bands to observe overbought/oversold zones or potential breakout areas.
Adjust phase to suit leading (anticipatory) or lagging (confirmation) strategies.
This tool is particularly suitable for:
Scalpers looking for precision in fast markets.
Swing traders filtering noise from signals.
Algorithmic systems needing high-fidelity moving averages.
لعلي بابا على ساعة Moving averages indicator for the 10 and 20 averages, relative strength index, and Bollinger Bands Moving averages indicator for the 10 and 20 averages, relative strength index, and Bollinger Bands
استراتيجية محسنة: تقليل الخسائر، إدارة ذكية//@version=5
strategy("استراتيجية محسنة: تقليل الخسائر، إدارة ذكية", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// الإعدادات
emaFastLen = input.int(20, title="EMA سريع")
emaSlowLen = input.int(50, title="EMA بطيء")
atrLength = input.int(14, title="طول ATR")
riskMultiplier = input.float(1.0, title="نسبة المخاطرة من ATR", step=0.1)
takeProfitRatio = input.float(1.5, title="نسبة الهدف الربحي إلى وقف الخسارة", step=0.1)
maxConsecutiveLosses = input.int(2, title="عدد الخسائر المتتالية المسموح بها")
// حساب المتوسطات والاتجاه
emaFast = ta.ema(close, emaFastLen)
emaSlow = ta.ema(close, emaSlowLen)
atr = ta.atr(atrLength)
longCondition = ta.crossover(emaFast, emaSlow)
shortCondition = ta.crossunder(emaFast, emaSlow)
// متابعة الخسائر المتتالية
var int lossCount = 0
if strategy.closedtrades > 0
lastTrade = strategy.closedtrades - 1
isLoss = strategy.closedtrades.profit(lastTrade) < 0
lossCount := isLoss ? lossCount + 1 : 0
canTrade = lossCount <= maxConsecutiveLosses
// الدخول في صفقات شراء فقط (بناء على طلب المستخدم)
if longCondition and canTrade
stopLoss = close - (atr * riskMultiplier)
takeProfit = close + ((close - stopLoss) * takeProfitRatio)
strategy.entry("Buy", strategy.long)
strategy.exit("TP/SL", from_entry="Buy", stop=stopLoss, limit=takeProfit)
// تفعيل trailing stop عند الربح
trailTrigger = input.float(0.5, title="نقطة تفعيل Trailing (%)", step=0.1) / 100
trailOffset = input.float(0.3, title="مسافة Trailing Stop (%)", step=0.1) / 100
if strategy.opentrades > 0
entryPrice = strategy.opentrades.entry_price(0)
if close > entryPrice * (1 + trailTrigger)
trailStop = close * (1 - trailOffset)
strategy.exit("Trail Exit", from_entry="Buy", stop=trailStop)
plot(emaFast, color=color.green, title="EMA سريع")
plot(emaSlow, color=color.red, title="EMA بطيء")
FAFA - Optimize v2FAFA - Optimize v2 Strategy
FAFA - Optimize v2 is a dynamic trading strategy that operates using Inverse Fisher RSI signals derived from a higher timeframe. By applying the inverse Fisher transform to the RSI indicator, it generates clearer and faster signals. The strategy can execute buy, sell, or both types of trades based on user preferences.
From a risk management perspective, the strategy features three-tiered take profit levels (TP1, TP2, TP3) and a flexible stop loss (SL) mechanism. This allows partial profits to be realized early while letting remaining positions benefit from larger market moves.
It also provides a handy performance panel that tracks essential metrics in real-time, including total trades, winning and losing trades, trades closed by stop loss, win rate, and net profit/loss.
In summary, FAFA - Optimize v2 aims to open reliable market positions with advanced risk controls to ensure sustainable performance.
Makki MultiEdge Analyzer 2000This script combines Bollinger Band interactions, RSI momentum confirmation, EMA crossovers, and divergence detection to generate filtered BUY signals. It uses 5-minute and 15-minute timeframe logic to improve timing and reduce false entries.
### 🔹 BUY signal logic:
A BUY label will only appear when:
• Price is near the lower Bollinger Band
• RSI shows a rebound or is climbing from oversold zones
• There is a strong bullish candle, a golden cross (EMA), or a positive divergence
• AND no overbought/exit filter is active
### 💎 Entry filter (diamond):
Appears when a clean bounce is detected on the 5-minute chart.
This is **not a BUY** but a preparation signal — useful to monitor for an upcoming opportunity.
### ⛔ Exit filter:
Triggers when 15m RSI is overbought (>68), price touches the 15m upper Bollinger Band, and 5m momentum weakens.
Blocks BUY signals and helps avoid entries during overextended moves.
### 🔺/🔻 Mild Support/Resistance markers:
- **🔺 Green upward triangle:** appears when RSI rebound or mild support conditions exist, but not enough for a BUY
- **🔻 Red downward triangle:** appears when bearish momentum, EMA crossdown, overbought RSI, or negative divergence is detected
### ❌ RSI Warnings:
- **Orange X above the bar:** RSI > 75 (overbought warning)
- **Orange X below the bar:** RSI < 25 (oversold warning)
### 🧠 Usage recommendation:
- Wait for a 💎 as early preparation
- Enter only if a BUY signal follows with no ⛔ warning present
- Avoid BUYs that appear after ⛔ or during RSI > 75 (orange X) unless very strong reversal confirmation exists
- 🔺 triangles can help monitor early support but are not sufficient alone
### 🕒 Timeframe:
- Best used on 5-minute chart
- Filtering logic pulls RSI and Bollinger data from 5m and 15m timeframes
- Higher timeframes (15m–1H) can be used for overall trend direction
All alerts are included for: BUY, entry filter (💎), exit warning (⛔), RSI warnings (❌), and support/resistance markers (🔺/🔻).
This script is for educational purposes only and does not constitute financial advice.
Directional ADX with Dynamic ThresholdThis indicator displays the ADX line, color-coded with a green line indicating a bullish DMI and a red line indicating a bearish DMI. The line turns grey when there is no trend. The trend threshold is determined by ATR. Settings are adjustable. Nothing earth-shattering but this has helped me quite a bit in my trading.
Ichimoku Cloud MAThis chart has a combination of the Ichimoku cloud and Moving Average. This is solely for education and I am not responsible for any losses to users' investments.