HMA Band TrendVisualize market trends instantly with a smooth Hull Moving Average (HMA) . This indicator clearly shows uptrend, downtrend, and sideways conditions with color-coded lines and compact trend-change signals.
Moving Averages
Options Symphony Adaptive CE/PE for Indian IndicesDescription:
This invite-only Pine Script indicator is built for Indian market options traders. It plots the Call and Put charts for a selected strike simultaneously, including adaptive moving averages on both.
Single-Chart Options View: Visualize both CE and PE charts on a single pane.
User-Friendly: Enter one strike (Put), and the indicator handles the dual-chart display.
Adaptive MA: Features adaptive moving averages for smarter trend analysis in both trending and ranging markets.
Invite-Only: Access is granted by the author and requires permission.
To get started: Request access from the author to be added to the invite list.
SMMA Strategy [SMMA ULTIMATE]SMMA 21/50/200 + RSI — M5/M15 (Rule-marked entries & exits)
Release Notes (EN)
Version: 1.0 (Pine v6 — Indicator)
Date: 14 Oct 2025
Type: Multi-TF overlay indicator with rule-based entry/exit markers and optional runtime alerts
🚀 Summary
A disciplined multi-timeframe scanner for M5 and M15 that highlights rule-driven setups (R1…R4) around SMMA 21/50/200, RSI (buy > 52 / sell < 48), directional VWAP, volume, and ATR activity.
It also simulates ATR-based TP/SL/Break-Even to provide immediate visual feedback and tags each trade idea with the origin rule.
✨ Highlights
• Full MTF stack (M5 & M15) with dedicated series (price, volume, SMMA, ATR, VWAP, RSI) and lookahead_off to avoid repaint.
• 4 modular entry rules (enable/disable independently):
◦ R1: Price crosses the max/min of SMMA(21/50/200) + RSI filter + market OK.
◦ R2: Touch of SMMA21 (pullback) + trend alignment + RSI + market OK.
◦ R3: Three candles impulse + engulfing reversal + RSI + market OK.
◦ R4: SMMA21/SMMA50 cross (structural momentum) + market OK.
• Stackable filters (toggle): Trend (price vs SMMA200), Directional VWAP (price vs VWAP + slope), Volume (Vol > MA×k), ATR activity (ATR > MA(ATR,20)×k).
• RSI thresholds: BUY if RSI > 52, SELL if RSI < 48 (per TF).
• ATR exit simulation: SL = k×ATR, TP = k×ATR, Break-Even armed after ATR gain (return to entry → BE exit).
• Clear rule tags: Entry/exit markers carry R1…R4 for immediate provenance.
• Optional runtime alerts: Human-readable messages on entries and exits, per TF and rule.
🔧 Key Inputs
General
• Price source for display: chart candles / force regular / force Heikin Ashi.
• Lengths: SMMA 21/50/200, RSI (14), ATR (14), Volume MA (20).
• RSI thresholds: Buy > 52, Sell < 48.
Filters (on/off)
• Trend (price vs SMMA200).
• Directional VWAP (price relative to VWAP and VWAP slope).
• ATR activity gate.
• Volume gate (Volume > MA×multiplier).
Rules (on/off)
• Enable R1/R2/R3/R4 individually.
Exit simulation
• Use ATR stops (SL/TP multipliers).
• Break-Even (armed by ATR progress).
Alerts
• Enable runtime alerts to fire alert() at bar close.
🧠 Rule Logic (condensed)
• R1 BUY/SELL: Cross of max/min(SMMA21,50,200) + RSI gate + all selected filters OK.
• R2 BUY/SELL: Touch of SMMA21 + price aligned vs SMMA50/200 + RSI + filters OK.
• R3 BUY/SELL: Three consecutive bars in one direction + engulfing opposite + RSI + filters OK.
• R4 BUY/SELL: SMMA21/SMMA50 crossover + filters OK.
Entry priority per TF: R1 > R4 > R2 > R3.
🔔 Runtime Alerts
When enabled, the script emits close-of-bar alerts with TF and rule tag:
• 🚀 M5/M15 ENTRY LONG (R#)
• 🔻 M5/M15 ENTRY SHORT (R#)
• ✅ M5/M15 EXIT TP (R#)
• ❌ M5/M15 EXIT SL (R#)
• 🟨 M5/M15 EXIT BE (R#)
(You can still build custom UI alerts if you need additional combinations.)
🖼 Visuals
• SMMA 21/50/200 and VWAP (green when price above, red below).
• Plotshape per rule and exit type (TP/SL/BE) with R1…R4 tags on M5 and M15.
• Optional Heikin Ashi for display (core MTF calculations remain consistent).
🔒 Robustness & No-Repaint Notes
• All MTF request.security calls use lookahead_off.
• Pattern logic (three bars, engulfing) is evaluated on bar close.
• ATR/TP/SL/BE are indicator-level simulations using the chart’s H/L/Close (standard intrabar limitations).
⚠️ Limitations & Tips
• This is an indicator, not a strategy: no orders are sent; exits are simulated for visualization.
• Signals are generated on bar close.
• MTF signals synchronize to the chart TF’s close, not intrabar ticks.
RSI Cross Strategy [RSI ULTIMATE]RSI Cross Strategy — Release Notes (EN)
Version: 1.4 (Pine v6)
Date: 14 Oct 2025
Authors: Abraham ICARD
🚀 Summary
This release adds tighter trade governance (cooldown, weekdays-only, one-at-a-time) and sharper entry rules (RSI thresholds), on top of the existing daily trade cap, session hours, and entry/exit alerts.
✨ What’s New
• Cooldown Between Trades
◦ cooldown_minutes prevents a new entry until X minutes have elapsed since the last trade.
• Weekdays-Only Filter
◦ weekdays_only limits trading to Monday–Friday (exchange timezone).
• Single Position at a Time
◦ pyramiding = 0 + logic checks ensure only one active trade at any moment.
• RSI Thresholds for Cross Entries
◦ Long entries require RSI ≥ 52.
◦ Short entries require RSI ≤ 48.
◦ Inputs: rsi_long_min, rsi_short_max.
✅ Existing Features (kept & compatible)
• Daily Trade Limit: max_trades_per_day with robust day reset.
• Trading Session Window: session_allowed + option to block entries outside session.
• Trend Filter (opt-in): EMA50, SMA200, optional VWAP gate.
• TP/SL in % from average position price.
• Alerts:
◦ UI: ENTRY LONG, ENTRY SHORT, EXIT LONG, EXIT SHORT.
◦ Runtime toggle: enable_runtime_alerts, with per-bar or per-bar-close frequency.
• Performance Table: closed trades, winrate, net PnL, PF, max DD, trades today.
• Clean chart visuals: EMA/SMA/VWAP and BUY/SELL markers.
🔧 Key Parameters
• Risk & Entries
◦ tp_percent, sl_percent
◦ rsi_fast_len, rsi_slow_len, src
◦ rsi_long_min (default 52), rsi_short_max (default 48)
• Governance
◦ max_trades_per_day
◦ session_allowed, block_entries_outside_session
◦ cooldown_minutes
◦ weekdays_only (Mon–Fri)
• Trend Filter
◦ use_trend_filter, ema_len, sma_len, use_vwap
• Alerts
◦ enable_runtime_alerts
◦ alert_once_on_close
🔔 Alerts (UI & Runtime)
• ENTRY LONG — “RSI cross + trend + RSI ≥ threshold; rules OK”
• ENTRY SHORT — “RSI cross + trend + RSI ≤ threshold; rules OK”
• EXIT LONG / EXIT SHORT — position closed (TP/SL or manual close)
Create from Create Alert → choose the alertcondition by name; or enable alert() runtime via inputs.
🛠 Improvements & Robustness
• Day Reset: Uses a date key (YYYYMMDD) to guarantee boolean reset condition; avoids na on first bar.
• Session Handling: Session window interpreted in the exchange timezone of the symbol.
• VWAP: Uses ta.vwap(hlc3) for stability across markets.
⚠️ Notes & Limitations
• Backtesting granularity: Strategy logic evaluates on bar close (standard Pine behavior).
• Sessions & Timezone: Hours/weekday checks align with the symbol’s exchange timezone.
• No built-in optimizer: Tune via Strategy Tester/inputs.
📜 Changelog
1.4
• Added cooldown_minutes, weekdays_only, single-position enforcement, RSI entry thresholds (≥52 / ≤48).
• Integrated with existing daily cap, session window, and alerting.
1.3
• Daily trade cap, session gating, entry/exit alerts (UI + runtime), KPI table refresh.
1.2
• Enhanced KPIs & overlays (EMA/SMA/VWAP), French alert messaging.
1.1
• Combined trend filter; RSI fast/slow cross entries; TP/SL percentages.
1.0
• Initial Pine v6 version.
TIME Indicator – CET (hour-based) + Bias Forecast + Alerts [EN]TIME Indicator – CET + Bias Forecast + Alerts
What it does
Splits each day (CET/CEST) into 7 fixed time windows: 0–6, 6–9, 9–12, 12–15, 15–18, 18–22, 22–24.
Detects market regime (Bull/Bear/Neutral) automatically from an HTF EMA (configurable), or you can set the regime manually.
Maps each day-of-week × window to an expected behavior (Bull/Bear/Neutral/Chop) with strength 1–5 (your research schedule).
Backtests on-the-fly: logs each finished window’s return to compute:
Hit-rate (directional accuracy on Bull/Bear calls)
Average % move (log-return → %)
t-stat (significance)
Observation counts N
Visualizes results via:
Heatmap 7×7 (Days × Windows) with selectable metric (Hit-rate / Avg% / t-stat)
Day (paged) table
Split 2× (long) tables to fit small screens
Forecast panel: shows the next N windows (default 8) with labels and color tint based on category + strength. Uses CET midday anchoring to avoid day-shift bugs.
Regime logic
HTF EMA (length configurable) on a selectable timeframe (HTF for regime/tfStats).
“Bull” when price > EMA (optionally EMA slope > 0); “Bear” when price < EMA (slope < 0); else “Neutral”.
Tip: for 1h charts use tfStats=240 (4h) for a stable bias; for 2h charts consider 240–360; swing traders can go 360–720.
Color language
Green shades = Bull (strength 1–5)
Red shades = Bear (1–5)
Orange = Chop (1–5)
Gray = Neutral/Range (1–5)
Optional: neutral/chop can be tinted by current regime (setting).
Alerts (3 modes)
Every window (baseline) – fires at the start of each window, always (for manual verification).
Qualified window – fires at window start only if stats meet your thresholds: Min N, Min Hit-rate.
Hourly ping (CET) – optional every-hour reminder (also mid-window).
Alert message example
Monday 6–9 — Mild rise (strength 2) | Regime: Bull | Suggest: Long
Hit-rate: 87.4% (N=215) | Avg: 0.23%
Key implementation details
Uses CET/CEST consistently. “Today” is stabilized by CET midday to prevent DOW misalignment across session boundaries.
Windows are computed from CET hour, not exchange sessions, so it’s robust across assets/timezones as long as you want CET logic.
Statistics are maintained in arrays (7×7); each completed window updates N, sum of returns, sum of squares, directional hits, etc.
Heatmap cells compute metric + color strength dynamically; you can switch the displayed metric from the input.
Inputs (most useful)
Market regime: Auto (EMA) / Bull / Bear / Neutral
EMA length (Auto), HTF for regime (minutes), Require slope
Results view: Heatmap 7×7 / Day (paged) / Split 2× (long)
Heatmap metric: Hit-rate / Avg % / t-stat
Forecast: number of upcoming windows, color opacity, tint neutral by regime
Alerts: enable baseline/qualified/hourly, thresholds Min N, Min Hit-rate
How to use
Pick your chart TF (e.g., 1h). Set HTF for regime (e.g., 240) and EMA length (e.g., 100). Keep Require slope = ON for cleaner bias.
Start on Heatmap 7×7 to spot strong day×window pockets. Then use Forecast to see what’s next today/tomorrow.
Turn on ALERT: Every window to get a message at the start of every window; optionally add Qualified for filtered calls.
In TradingView Alerts dialog choose “Any alert() function call” to receive all alert types.
Limitations / notes
This is a statistical bias tool, not a signal generator. Combine with price action, liquidity zones, vol regime, news.
Hit-rates and averages depend on your symbol/timeframe history; results differ across assets and time ranges.
EMA-based regime is HTF-closed; bias flips only after the higher-timeframe bar confirms.
Changelog snapshot (current build)
Pine v6; fixed DOW alignment via CET midday; refactored forecast (next N windows), new baseline/qualified/hourly alerts, color-tinted neutral/chop, improved table layout and text sizing.
If you want, I can also write a short “How to request access” blurb for your private/hidden publication page.
Instructions to Traders
What this tool shows
Day split (CET/CEST): 0–6, 6–9, 9–12, 12–15, 15–18, 18–22, 22–24.
For each Day × Window it displays the expected behavior (Bull/Bear/Neutral/Chop) and strength 1–5 based on historical stats.
Heatmap metrics: Hit-rate, Avg % move, or t-stat.
Quick setup
Chart TF: start on 1h (works on 30m–2h too).
HTF for regime (EMA bias):
1h chart → 240 (4h) recommended
2h chart → 240–360
Swing (4h/1D) → 360–720
EMA length: 100 (default). Keep Require slope = ON for cleaner Bull/Bear bias.
View: start with Heatmap 7×7, then try Forecast to see the next windows.
Forecast panel
Shows the next N upcoming windows (default 8), with labels and color by category + strength.
Uses CET midday anchoring to keep weekdays correct (no “day shift” at midnight).
Alerts
Enable ALERT: Every window (no filters) to get a message at the start of every window.
Optionally enable ALERT: Only when N & Hit-rate ok (filtered alerts) and ALERT: Every hour (CET) ping (hourly reminder).
In TradingView’s Create Alert dialog, select “Any alert() function call” to receive all alert types.
Alert text includes: Day + Window, regime, suggestion (Long/Short/Wait), Hit-rate, N, Avg %.
How to use the bias
Treat it as a context/expectation map, not a blind signal.
Combine with structure (HH/HL, S/R), liquidity, volatility regime, and risk management.
Stronger shades (4–5) = stronger historical tendency; still validate with live price action.
Troubleshooting
Day names wrong? Ensure Timezone = Europe/Bratislava (CET/CEST) in inputs.
“No data / n/a”: load more chart history or switch to a symbol with longer data.
Regime feels too jumpy/laggy: adjust HTF for regime and/or EMA length.
Access / contact
If this script is private and you need access, send your TradingView username with the subject “TIMETrading access”.
For support/feedback: describe your symbol, chart TF, HTF setting, and a screenshot.
Disclaimer: Statistical tendencies ≠ certainty. This is educational research, not financial advice. Always use stops and size risk responsibly.
ZLSMA_CEThis indicator combines the power of Chandelier Exit and Zero Lag LSMA (ZLSMA) to provide cleaner trend reversals and early entry alerts.
The Chandelier Exit acts as a dynamic stop-loss and trend tracker based on ATR, while ZLSMA smooths price movement with minimal lag — helping traders identify trend continuation or reversals more accurately.
When combined, this system provides visual and alert-based Buy/Sell signals that can be used for both swing and intraday strategies.
Multi IndicatorThis script uses combination of RSI, W %, BB, EMA signals to find movement direction and reversals.
Prakash Balkawade
[Booggo] Smoothed Trend Follow Strategy (Backtest-Only)Market volatility demands a sophisticated approach that goes beyond simple entry/exit rules. This strategy is a next-generation trend-following system designed to follow the market's major currents while dynamically managing the risk of each trade to maximize stability and preserve profits.
Key Features:
Intelligent Risk Engine: Automatically adjusts risk based on recent trading performance.
Volatility-Based Position Sizing: It detects low-volatility periods where the market is consolidating energy, allowing for proactive position adjustments ahead of potential trend breakouts.
Robust Asset Protection: Fundamentally prevents dangerous over-betting, even during drawdowns, to ensure stable asset management.
Advanced Noise Filtering: Filters out short-term market noise through a sophisticated smoothing logic, focusing on the essential movements of reliable trends.
This strategy offers more than just signal generation; it provides an answer to the critical question of "how to ride a trend while effectively managing risk." We encourage you to verify its strengths firsthand through comprehensive backtesting.
시장의 변동성은 단순한 진입/청산 규칙을 넘어서는 정교한 접근을 요구합니다. 본 전략은 시장의 큰 흐름을 따르면서도, 각 거래의 리스크를 동적으로 관리하여 안정성을 극대화하고 수익을 보존하도록 설계된 차세대 추세 추종 시스템입니다.
주요 특징:
지능형 리스크 엔진: 최근 거래 성과를 바탕으로 리스크를 자동 조절합니다.
변동성 기반 포지션 조절: 시장이 에너지를 응축하는 저변동성 구간을 감지하여, 잠재적인 추세 확장을 앞두고 선제적으로 포지션을 조절하는 기능이 탑재되어 있습니다.
안정적인 자산 보호 기준: 드로우다운 상황에서도 위험한 과대 베팅을 원천적으로 방지하고 자산을 안정적으로 관리합니다.
고급 노이즈 필터링: 정교한 Smoothing 로직을 통해 시장의 단기적인 소음을 걸러내고, 신뢰도 높은 추세의 본질적인 움직임에 집중합니다.
이 전략은 단순한 시그널 생성을 넘어, '어떻게 리스크를 관리하며 추세를 탈 것인가'에 대한 하나의 해답을 제시합니다. 충분한 백테스트를 통해 그 강점을 직접 확인해 보시기 바랍니다.
Telegram ID : @booggo83
Smart Risk DCA Meter — Adaptive Market Risk EngineThe **Smart Risk DCA Meter** is an adaptive market-risk indicator that helps you invest smarter by scaling your DCA buys based on actual market conditions instead of emotion. It combines momentum, distance from trend, and drawdown factors into a single 0–1 risk score that automatically adjusts to each asset’s volatility — from stable indices like SPX to high-beta assets like BTC. Low readings (green zones) signal opportunity to buy heavier, while high readings (red zones) warn to slow down and protect capital.
RunTrend Action Zone V1RunTrend Action Zone V1
อินดิเคเตอร์นี้พัฒนาโดยอิงหลักการของระบบ CDC Action Zone ดั้งเดิม
ใช้ระบุโซนเทรนด์และจังหวะเข้าเทรดตามแนวโน้ม โดยเพิ่มฟังก์ชันเสริมให้เหมาะกับการเทรดจริงมากขึ้น
🔹 คุณสมบัติหลัก
แสดงสีแท่งเทียน 5 สีตามแรงและทิศทางของเทรนด์
🟢 เขียว = ขาขึ้นแรง
🔵 น้ำเงิน = ขาขึ้นปกติ
🟡 เหลือง = พักฐาน / ไม่มีทิศ
🟠 ส้ม = ขาลงปกติ
🔴 แดง = ขาลงแรง
Zone Fill
แรเงาระหว่าง EMA Fast และ EMA Slow
🟩 สีเขียวอ่อน = EMA Fast อยู่เหนือ EMA Slow (ขาขึ้น)
🟥 สีแดงอ่อน = EMA Fast อยู่ใต้ EMA Slow (ขาลง)
Trend Filter (EMA100 ปรับค่าได้)
ถ้าราคาสูงกว่า EMA100 → แสดงเฉพาะสัญญาณ Buy
ถ้าราคาต่ำกว่า EMA100 → แสดงเฉพาะสัญญาณ Sell
Signal Gap Filter
จำกัดสัญญาณซ้ำกันในทิศเดียวกัน ไม่ให้เกิดภายใน X แท่ง (ค่าเริ่มต้น 5 แท่ง)
🔹 สัญญาณเข้า
Buy: จากโซน Neutral → สี Bull (น้ำเงิน/เขียว)
Sell: จากโซน Neutral → สี Bear (ส้ม/แดง)
สัญญาณจะถูกกรองด้วย Trend EMA และ Gap Filter อัตโนมัติ
🔹 การใช้งานแนะนำ
1.ใช้ร่วมกับการวิเคราะห์โครงสร้างราคา, เส้น EMA100/EMA200, และการยืนยันด้วยแท่งเทียน (Engulfing / Pin Bar)
2.เหมาะกับเทรนด์ไทม์เฟรม H1–H4 หรือ swing trading บนทองคำ (XAUUSD) และคู่เงินหลัก
------------------------------------------------------------------------------
This indicator is based on the original CDC Action Zone concept.
It visualizes market trend strength and momentum direction, with added filters for real-world trading accuracy.
🔹 Main Features
5-Color Candle System
🟢 Green = Strong Bullish
🔵 Blue = Normal Bullish
🟡 Yellow = Neutral / Transition
🟠 Orange = Normal Bearish
🔴 Red = Strong Bearish
Zone Fill
Highlights the area between Fast and Slow EMAs:
🟩 Light Green = Fast EMA above Slow EMA (Uptrend)
🟥 Light Red = Fast EMA below Slow EMA (Downtrend)
Trend Filter (EMA100 adjustable)
Only Buy signals when price > EMA100
Only Sell signals when price < EMA100
Signal Gap Filter
Prevents overlapping entries within X bars (default 5 bars)
🔹 Entry Logic
Buy: Transition (Yellow) → Bull Zone (Blue/Green)
Sell: Transition (Yellow) → Bear Zone (Orange/Red)
Automatically filtered by Trend EMA & Signal Gap logic.
🔹 Recommended Usage
Best used on H1–H4 timeframe or swing trading setups (e.g., XAUUSD, major FX pairs).
Combine with price structure, EMA confluence, and candle confirmation (e.g., Engulfing, Pin Bar) for high-probability entries.
TIME-Trading Indicator + AlertsWhat it is
A Pine Script study that profiles intraday behavior by day+time windows in CET/CEST, verifies it on history, colors the chart by the expected bias & strength, shows tables/heatmaps with backtest stats, and can alert at the start of each window with a full trading summary.
Core ideas
Day is split into 7 CET windows: 0–6, 6–9, 9–12, 12–15, 15–18, 18–22, 22–24
(NYC is unified as 15–18 and 18–22 across the whole script.)
For each weekday & window we have an expectation (Bull/Bear/Neutral/Chop) with a strength 1–5 and a label (e.g., “Skokový rast”, “Výplach”…).
Script backtests those expectations on your chart’s history:
Computes return of each window (log-return from first bar open to last bar close of the window).
Counts Hit-rate (bull window = return>0; bear window = return<0; neutral/chop excluded).
Tracks Avg % drift, t-stat, and sample size N.
Trend regime (Auto/Manual)
Auto (EMA): price vs EMA(length) on a higher timeframe (configurable) + optional slope filter.
Manual override: Bull / Bear / Neutral.
Regime is read without look-ahead (uses previous bar’s regime when closing a window).
What you see
Background shading of the current window
– color family by category (green=bull, red=bear, gray=neutral, orange=chop), shade by strength 1–5.
Optional labels on window change with regime + label text (“Bull • Najsilnejší rast týždňa”).
Forecast panel (bottom-right) listing the next X windows with label & strength.
Results tables (three views):
Heatmap 7×7 (default): weekday × window grid, each cell shows one metric (toggle among Hit-rate / Avg % / t-stat).
Deň (stránkovanie): full stats for a single day (N, Hit-rate, Avg %, t, label).
Split 2× (dlhá): two stacked tables (Mon–Thu, Fri–Sun) to fit small screens.
Alerts (window start)
Optionally fire at the start of every window.
Message includes: weekday + window, expectation label, strength, current regime, recommended action (Long/Short/Wait), Hit-rate %, Avg %, and N.
Create alerts in TV with Condition → Any alert() function call (so the script’s dynamic text is used).
Optional filters (easy to add/adjust): min N, min Hit-rate, only Bull/Bear windows.
Inputs you control
Regime mode, EMA length, higher-TF for trend check, require EMA slope.
CET/CEST timezone (uses “Europe/Bratislava” by default).
Toggles: background, labels, forecast, results view, table text size, heatmap metric.
Alert enable; (we can add min-N / min-HR filters if you want them by default).
How stats are computed (important)
A window’s return is measured strictly inside the window (open of first bar → close of last bar).
The window is credited to the correct weekday even across midnight.
Hit-rate uses only directional windows (Bull/Bear). Neutral/Chop are excluded.
Best practices
Use chart TF that divides an hour (5/15/30/60m) so window boundaries align cleanly.
Read the heatmap primarily by Hit-rate (signal reliability) and cross-check with Avg % (effect size) and t-stat (significance).
Trade at the start of a strong window in the direction of the current regime, exit time-based (end of window) or on PT/SL.
If you want, I can also:
mask/show only cells with N ≥ threshold,
add NYC sub-split toggle off/on,
export stats to CSV,
or add webhooks-friendly compact alert strings.
DASM CODE BUY/SELL EMASimple, Just Buy/Sell
For scalping, it’s best used during high-volume hours (9:30–11:00 New York time).
Gaussian MACD RSI v2Gaussian Filter MACD Strategy (Zero Cross + RSI Gate)
What it does
This strategy evaluates momentum using a Gaussian-smoothed MACD and requires a MACD zero-line cross to confirm trend initiation. A configurable RSI threshold filters weak signals, aiming to reduce whipsaws around the zero line. Entries occur only when momentum and baseline strength agree; exits are triggered by MACD crossing below its signal to capture the meat of the move while avoiding discretionary overrides.
How it works (concepts, not code)
Gaussian MACD: The fast/slow components are smoothed with a Gaussian-style filter to reduce noise relative to standard EMA MACD.
Zero-line confirmation: Longs require MACD to cross above zero, aligning entries with positive momentum regimes.
RSI gate: A threshold (default 50) further filters entries so that only setups with baseline strength qualify.
Exit logic: Positions close when MACD crosses below its signal line, providing an objective exit without trailing logic.
Sources: The script supports standard and Heikin-Ashi-derived sources for traders who prefer alternate preprocessing.
How to use it
Add the strategy to a clean chart.
Keep default settings for initial testing; then adjust the RSI threshold and symbol/timeframe for your market.
Favor liquid instruments where slippage and fills are reliable.
Forward-test and walk-forward before any live use.
Default Properties (used for this publication)
Initial Capital: $25,000
Order Size: 100% of equity per trade (no leverage).
Commission: 0.02% per side.
Slippage: 2 ticks (or 0.02% on percent-based markets).
Timeframe used for the published chart: 15-minute (example)
Dataset: SPY/QQQ/large-cap equities (2+ years) producing 100+ trades in sample.
Note: This strategy does not use hard stops by default. If you prefer risk caps ≤ 5–10% per trade, add a stop in the Inputs and re-publish; otherwise, this description explains the deviation per House Rules.
Disclosures
Backtest results are estimates; real-world fills, slippage, and availability may differ. No guarantee of performance. Use prudent position sizing and independent verification.
Ekoparaloji Cyrpto StrategyEkoparaloji Crypto Strategy - User Information Document
📊 Strategy Overview
This strategy provides long-term position management in cryptocurrency markets using the averaging down (pyramiding) technique. The basic logic is to controllably grow positions as prices decline and exit when specific profit targets are reached.
🎯 Key Features
✅ Automatic Entry System
Market direction is determined using a proprietary trend identification algorithm
Trades are only opened in uptrends
Initial position opens automatically when specific conditions are met
📈 Pyramiding Mechanism
New positions are automatically added as price decreases
Up to 10 positions can be added maximum
Each addition occurs at predetermined decline levels
Risk management through dynamic position sizing
💰 Profit and Loss Management
Take Profit: All positions close when the specified percentage above average cost is reached
Stop Loss (Optional): Protects a specified percentage of total capital
A certain ratio of available capital is used in each trade
📊 Visual Tracking System
The following information is displayed in real-time on the chart:
✅ Average cost level
✅ Profit target level
✅ Stop loss level (if active)
✅ Next pyramiding level
✅ Liquidation (capital reset) level
✅ Trend indicator
🛡️ Risk Management Features
1. Dynamic Capital Protection
Automatic exit when losses exceed a specified percentage of total capital
Complete loss scenario can be previewed through liquidation level calculation
2. Position Control System
Protection preventing multiple trades on the same bar
Double trigger prevention mechanism
Maximum position limit
3. Time Filter
Optional trading within a date range
Ideal for testing on historical data
📱 Information Panel
Information table always visible in the upper right corner of the strategy:
When Position is Open:
Number of active positions
Average cost
Current price
Total capital status
Capital loss percentage
Profit target
Stop loss level and distance
Next entry level
Liquidation level and distance
When No Position:
Market trend (Uptrend/Downtrend)
Ready to trade?
Reason for waiting
Initial position size
Target profit percentage
⚙️ Adjustable Parameters
Customizable by user:
💵 Capital Amount: Base amount to be used for each position
📊 Profit Target: Profit percentage at which to exit
🛑 Stop Loss: Usage status and maximum loss percentage
📅 Time Filter: Start and end dates for testing
💬 Trade Comments: Custom labels for each trade
📘 Understanding Leverage Effect
1. What is the Leverage Effect?
Although there's no real leverage in the spot market, when Capital Amount is increased, capital usage works like leverage:
Capital Amount 5% (1.0x): 100% capital usage with full pyramiding = All your money in trades
Capital Amount 10% (2.0x): 200% capital usage with full pyramiding = Attempting to open trades worth 2x your capital
Capital Amount 15% (3.0x): 300% capital usage with full pyramiding = Attempting to open trades worth 3x your capital
⚠️ IMPORTANT: If your capital runs out in the spot market, you cannot open new positions, therefore it's recommended to keep Capital Amount at 5% or below!
⚠️ Important Warnings
Pyramiding Risk: If price continues to decline, position grows and risk increases
Capital Requirements: Up to 10 positions can be added, requiring sufficient capital
Trend Dependency: Only works in uptrends
Backtest Results: Past performance is not a guarantee of future results
Real Trading Risks: Slippage, commissions, and market conditions can affect results
🎓 How to Use
Add the strategy to your chart
Adjust parameters according to your risk appetite
Examine past performance by backtesting
Optionally set up alerts to activate notifications
Test with paper trading first
This strategy is for educational purposes. Do your own research and only trade with capital you can afford to lose.
Disclaimer: This strategy is not financial advice. All investment decisions are the user's responsibility.
Happy trading! 📊
% Away from x DMA% Away from X DMA
This indicator measures how far the current price is from a chosen moving average, expressed as a percentage. It helps identify overbought/oversold conditions and
mean reversion opportunities.
How It Works:
- Calculates a Simple Moving Average (SMA) for the specified period
- Measures the percentage distance between current price and the moving average
- Positive values indicate price is above the average
- Negative values indicate price is below the average
Key Features:
- Flexible Period: Customize the moving average length (default: 200 DMA)
- Percentage-Based: Standardized measurement works across all price ranges
- Visual Clarity: Blue area plot makes deviations easy to spot
- Universal Application: Works with any asset or timeframe
Trading Applications:
- Mean Reversion: Extreme values often precede reversals back to the mean
- Trend Strength: Large positive values indicate strong uptrends
- Support/Resistance: Major moving averages act as dynamic support/resistance
- Entry Timing: Buy dips when significantly below, sell rallies when extended above
- Risk Management: Avoid entries during extreme deviations
Common Settings:
- 20 DMA: Short-term trend and swing trading
- 50 DMA: Intermediate trend analysis
- 200 DMA: Long-term trend and major support/resistance (default)
Interpretation Guidelines:
- +/-5-10%: Normal price action
- +/-10-20%: Extended move, caution warranted
- +/-20%+: Extreme deviation, high probability mean reversion setup
Ideal for swing traders, mean reversion strategies, and identifying optimal entry/exit points relative to trend.
Ekoparaloji Trend CandlesEkoparaloji Trend Following Candles
🎯 What Does It Do?
This indicator is a candle coloring system that helps you easily identify trend direction. Complex calculations run in the background, and you simply follow the candle colors to understand trend strength.
🎨 How to Use
Read the Candle Colors:
🟢 GREEN CANDLES → Strong uptrend
Look for buying opportunities
Hold your long positions
🔴 RED CANDLES → Strong downtrend
Look for selling opportunities
Consider short positions
Color changes → Potential trend reversal signal
Review your positions
📈 Important: The White Line
The line on the chart is a dynamic support/resistance level:
Price above the line → Bullish zone
Price below the line → Bearish zone
⚙️ Customize Settings
You can adjust 4 parameters in the indicator settings:
Faster signals → Decrease periods (e.g., 20)
Smoother signals → Increase periods (e.g., 50)
Tip: Start with default settings, then optimize for your trading style.
💡 Strategy Tips
✅ Green to red transition → Take profit or exit signal
✅ Red to green transition → Look for entry opportunities
✅ Confirm with other indicators (RSI, MACD, volume, etc.)
✅ Always use stop-loss orders
⚠️ Warning!
No indicator is 100% accurate
Don't trade based solely on this indicator
Risk management should always be your priority
For educational purposes only, not financial advice
Happy trading! 📊
Ekoparaloji Strategy Crypto Ekoparaloji Crypto Strategy - User Information Document
📊 Strategy Overview
This strategy provides long-term position management in cryptocurrency markets using the averaging down (pyramiding) technique. The basic logic is to controllably grow positions as prices decline and exit when specific profit targets are reached.
🎯 Key Features
✅ Automatic Entry System
Market direction is determined using a proprietary trend identification algorithm
Trades are only opened in uptrends
Initial position opens automatically when specific conditions are met
📈 Pyramiding Mechanism
New positions are automatically added as price decreases
Up to 10 positions can be added maximum
Each addition occurs at predetermined decline levels
Risk management through dynamic position sizing
💰 Profit and Loss Management
Take Profit: All positions close when the specified percentage above average cost is reached
Stop Loss (Optional): Protects a specified percentage of total capital
A certain ratio of available capital is used in each trade
📊 Visual Tracking System
The following information is displayed in real-time on the chart:
✅ Average cost level
✅ Profit target level
✅ Stop loss level (if active)
✅ Next pyramiding level
✅ Liquidation (capital reset) level
✅ Trend indicator
🛡️ Risk Management Features
1. Dynamic Capital Protection
Automatic exit when losses exceed a specified percentage of total capital
Complete loss scenario can be previewed through liquidation level calculation
2. Position Control System
Protection preventing multiple trades on the same bar
Double trigger prevention mechanism
Maximum position limit
3. Time Filter
Optional trading within a date range
Ideal for testing on historical data
📱 Information Panel
Information table always visible in the upper right corner of the strategy:
When Position is Open:
Number of active positions
Average cost
Current price
Total capital status
Capital loss percentage
Profit target
Stop loss level and distance
Next entry level
Liquidation level and distance
When No Position:
Market trend (Uptrend/Downtrend)
Ready to trade?
Reason for waiting
Initial position size
Target profit percentage
⚙️ Adjustable Parameters
Customizable by user:
💵 Capital Amount: Base amount to be used for each position
📊 Profit Target: Profit percentage at which to exit
🛑 Stop Loss: Usage status and maximum loss percentage
📅 Time Filter: Start and end dates for testing
💬 Trade Comments: Custom labels for each trade
📘 Understanding Leverage Effect
1. What is the Leverage Effect?
Although there's no real leverage in the spot market, when Capital Amount is increased, capital usage works like leverage:
Capital Amount 5% (1.0x): 100% capital usage with full pyramiding = All your money in trades
Capital Amount 10% (2.0x): 200% capital usage with full pyramiding = Attempting to open trades worth 2x your capital
Capital Amount 15% (3.0x): 300% capital usage with full pyramiding = Attempting to open trades worth 3x your capital
⚠️ IMPORTANT: If your capital runs out in the spot market, you cannot open new positions, therefore it's recommended to keep Capital Amount at 5% or below!
⚠️ Important Warnings
Pyramiding Risk: If price continues to decline, position grows and risk increases
Capital Requirements: Up to 10 positions can be added, requiring sufficient capital
Trend Dependency: Only works in uptrends
Backtest Results: Past performance is not a guarantee of future results
Real Trading Risks: Slippage, commissions, and market conditions can affect results
🎓 How to Use
Add the strategy to your chart
Adjust parameters according to your risk appetite
Examine past performance by backtesting
Optionally set up alerts to activate notifications
Test with paper trading first
This strategy is for educational purposes. Do your own research and only trade with capital you can afford to lose.
Disclaimer: This strategy is not financial advice. All investment decisions are the user's responsibility.
VWAP HMA Trend Execution SystemVWAP Trend Execution System
🧭 Purpose
Most traders don’t fail from bad charts — they fail from bad timing.
Jumping in too early, bailing too soon, or freezing when the real move begins.
The VWAP Trend Execution System cuts through that chaos.
It visually syncs Trend, VWAP, and Confidence — giving you instant clarity to trade with calm precision.
⚙️ The Three Core Gauges:
1. 📈 Trend Green for up, Red for down (Trend: Confirms direction)
2. 💰 VWAP Price vs. Volume Weighted Average Price. Institutional Fair Value. (Bull or Bear)
3. 🎯 Confidence Agreement between trend & VWAP. Dont fight the trend.
Bonus Feature: Confidence Turns 🟢 Confident when aligned, 🟡 Cautious when mixed.
Bonus 2: This version has the cross / confirmed direction arrow in the table.
Together, these create a clean, visual readout of the market’s health.
🧩 How to Use
Watch the Color Flow:
🟢 Green Cloud → Buyers in control.
🔴 Red Cloud → Sellers in control.
Check VWAP (Orange Line):
Price above VWAP → bullish strength.
Price below VWAP → bearish control.
Hovering at VWAP → indecision. Wait.
---
Act With Discipline:
Trade only when all gauges agree.
Add size only in Confident conditions.
Trim or tighten stops when it shifts to Cautious.
⚡ Quick Reference:
🟢 Green cloud + above VWAP + Confident | Uptrend continuation | Favor long bias
🔴 Red cloud + below VWAP + Confident | Downtrend continuation | Favor short bias
Mixed colors or Cautious: Wait or scale back
Cloud flips color: Possible shift. Reassess bias next bar
🧠 Best Practices
Works best on liquid symbols (SPY, QQQ, BTC, GOLD).
Ideal timeframes: 5m to 1h.
Use at bar close for confirmation, but enjoy live responsiveness for awareness.
Combine with your existing risk management — VTES is a timing enhancer, not a signal generator.
Designed for clarity on both light and dark themes (optimized for dark).
💡 Mindset
This isn’t a prediction tool — it’s a discipline tool. Wait for agreement.
Execute when the picture is clear. Protect capital when it’s not.
🧘 Clarity over clutter. Timing over guessing.
⚖️ Disclaimer: Educational and informational use only. Not financial advice. Always use independent judgment and position sizing.
(5m) EMA Cross + RSI + Stoch + ATR Strategy Psammodromus1979Indicators
EMA4
EMA9
EMA20
EMA50
RSI
STOCHASTIC
ATR
With buy/sell indicators directly on main chart
It worked for me when waited for retracement on EMA50
Didn't work when on accumulation.
LinReg Candles + UT Bot - Advanced Trading System (Alrussi)Overview
LinReg Candles + UT Bot Alerts** combines two powerful trading concepts — *Linear Regression-based candles* and the renowned *UT Bot trailing stop strategy* — into one clean, visual, and alert-ready system.
It’s designed to help traders identify early trend shifts, confirm entries with dual logic, and maintain clear visual context on price strength and reversals.
---
🧠 How It Works
1. Linear Regression Candles
Instead of using raw price data, the indicator smooths candle values (Open, High, Low, Close) using **Linear Regression** over a user-defined period.
This filters out noise and highlights the *underlying directional bias* of price movements.
Green Candles** → Bullish momentum (regression close > regression open)
Red Candles** → Bearish momentum
The optional Signal Line (SMA or EMA) tracks smoothed regression close values for additional confirmation.
2. UT Bot Logic
The UT Bot portion uses an ATR-based dynamic trailing stop and sensitivity control.
It adapts automatically to market volatility and signals:
Buy Signal when price crosses above the trailing stop.
Sell Signal when price crosses below it.
You can optionally switch to Heikin Ashi candles for smoother trend signals.
3. Combined Confirmation
For higher precision, the indicator also issues **“Combined” alerts** only when both systems agree:
* ✅ Strong Buy: LinReg = Bullish **and** UT Bot = Bullish
* ❌ Strong Sell: LinReg = Bearish **and** UT Bot = Bearish
* ⚪ Wait: Mixed signals (no clear confirmation)
---
🎨 Visual & Display Options
You can fully customize the chart display:
* Enable/disable LinReg candles
* Show or hide UT Bot trailing line
* Toggle Buy/Sell labels
* Color bars according to UT Bot direction
* On-screen **status table** (top-right) shows live:
* LinReg trend
* UT Bot status
* Combined confirmation
---
⚙️ Key Inputs
| Group | Setting | Description |
| ------------------- | --------------------------------------- | ------------------------------------- |
| **LinReg Settings** | *Length, Smoothing Type* | Controls regression depth & smoothing |
| **UT Bot Settings** | *Key Value (Sensitivity)*, *ATR Period* | Adjusts signal reactivity |
| **Display** | *Candles, Line, Signals, Colors* | Complete visual customization |
---
### 📢 Alerts
Three alert types are built-in and ready for automation:
* UT Long Signal → Buy (UT Bot)
* UT Short Signal → Sell (UT Bot)
* Combined Long/Short → Confirmed dual-signal alerts (LinReg + UT Bot)
---
### 💡 Usage Tips
* Use on H1–H4 timeframes for trend confirmation; M15–M30 for scalping setups.
* Combine with volume or momentum indicators for added confluence.
* Adjust *Key Value (Sensitivity)* — lower = more responsive, higher = smoother.
* For swing trading, use higher **Linear Regression Lengths (30–50)** to capture long-term bias.
---
### ⚠️ Disclaimer
This indicator is a **technical analysis tool**, not financial advice.
Always test on demo accounts before applying to live trades.
---
join my Telegram For More t.me
EMA50 Pullback + Re-entry Candle ColorModification of candle color, break or pullback so we can know about the confirmation candle and make decision whether we can entry or not
Ichimoku x SMA by BTC LegendIt shows a signal when the price passes through the Ichimoku Cloud and crosses the 120-day moving average.
It was designed with the expectation that it would be effective on the daily chart.