ZYTX GKDDThe Zhiying Tianxia High-Sell Low-Buy Indicator Strategy is a trend-following indicator that integrates multiple indicator resonances. It demonstrates the perfect performance of an automated trading robot, truly achieving the high-sell low-buy strategy in trading.
指標和策略
ZYTX GKDDThe ZYTX High-Sell Low-Buy Indicator Strategy is a trend-following indicator that integrates multiple indicator resonances. It demonstrates the perfect performance of an automated trading robot, truly achieving the high-sell low-buy strategy in trading.
HMA Crossover + ATR + Curvature (Long & Short)📏 Hull Moving Averages (Trend Filters)
- fastHMA = ta.hma(close, fastLength)
- slowHMA = ta.hma(close, slowLength)
These two HMAs act as dynamic trend indicators:
- A bullish crossover of fast over slow HMA signals a potential long setup.
- A bearish crossunder triggers short interest.
⚡️ Curvature (Acceleration Filter)
- curv = ta.change(ta.change(fastHMA))
This calculates the second-order change (akin to the second derivative) of the fast HMA — effectively the acceleration of the trend. It serves as a filter:
- For long entries: curv > curvThresh (positive acceleration)
- For short entries: curv < -curvThresh (negative acceleration)
It helps eliminate weak or stagnating moves by requiring momentum behind the crossover.
📈 Volatility-Based Risk Management (ATR)
- atr = ta.atr(atrLength)
- stopLoss = atr * atrMult
- trailStop = atr * trailMult
These define your:
- Initial stop loss: scaled to recent volatility using ATR and atrMult.
- Trailing stop: also ATR-scaled, to lock in gains dynamically as price moves favorably.
💰 Position Sizing via Risk Percent
- capital = strategy.equity
- riskCapital = capital * (riskPercent / 100)
- qty = riskCapital / stopLoss
This dynamically calculates the position size (qty) such that if the stop loss is hit, the loss does not exceed the predefined percentage of account equity. It’s a volatility-adjusted position sizing method, keeping your risk consistent regardless of market conditions.
📌 Execution Logic
- Long Entry: on bullish HMA crossover with rising curvature.
- Short Entry: on bearish crossover with falling curvature.
- Exits: use ATR-based trailing stops.
- Position is closed when trend conditions reverse (e.g., bearish crossover exits the long).
This framework gives you:
- Trend-following logic (via HMAs)
- Momentum confirmation (via curvature)
- Volatility-aware execution and exits (via ATR)
- Risk-controlled dynamic sizing
Want to get surgical and test what happens if we use curvature on the difference between HMAs instead? That might give some cool insights into trend strength transitions.
ZYTX SuperTrend V1ZhiYing SuperTrend V1 Indicator
Multi-strategy intelligent rebalancing with >95% win rate
Enables 24/7 automated trading
BG CloseCandleThis simple yet effective strategy script allows you to schedule automated entries (Buy or Sell) at three customizable times throughout the trading day. Each session can be individually enabled, with its own execution time and trade direction.
You can define:
• Entry time (Hour & Minute) for each session
• Whether each session should execute a Buy or a Sell order
• Your preferred Take Profit and Stop Loss levels (in ticks)
• Lot size per order
The strategy is designed specifically for the 1-minute timeframe, offering the most precise execution of time-based entries. It resets automatically each day and limits the number of trades to a maximum of three per session.
📌 I personally use this strategy on the Nasdaq 100 E-mini Futures (NQ) for intraday setups and session-based candle closes.
Perfect for testing market behavior at defined moments — ideal for overnight, premarket, or close-of-candle strategies.
Thank you for your interest, and wishing you profitable trading
ZYTX CCI SuperTrendZYTX CCI SuperTrend
The definitive integration of CCI and SuperTrend trend-following indicators, delivering exemplary performance in automated trading bots.
ZYTX CCI SuperTrendZhiYing CCI + SuperTrend Strategy
The definitive integration of CCI and SuperTrend trend-following indicators, delivering exemplary performance in automated trading bots.
EMA Crossover Strategy (HA + 2 Candle Confirm)Best use for intraday scalping upto 30min timeframe.
Use it with Hikin Ashi candles to spot and hold trades for maximum profits.
ZYTX RSI SuperTrendZYTX RSI SuperTrend
ZYTX RSI + SuperTrend Strategy
The definitive integration of RSI and SuperTrend trend-following indicators, delivering exemplary performance in automated trading bots.
ZYTX SuperTrend V1ZYTX SuperTrend V1 Indicator
Multi-strategy intelligent rebalancing with >95% win rate
Enables 24/7 automated trading
🔁 EMA 3/21 Crossover Strategy — Exit on Opposite SignalEMA 3/21 Crossover Strategy — Exit on Opposite Signal
This strategy enters trades based on a crossover between two exponential moving averages:
Buy Entry: When the 3-period EMA crosses above the 21-period EMA
Sell Entry: When the 3-period EMA crosses below the 21-period EMA
Exit Rule: Positions are exited only when an opposite signal occurs (i.e., a new crossover in the other direction)
Key Features:
Designed for trend-following setups
Uses ATR-based SL/TP lines for visual reference only (trades do not auto-close at SL/TP)
Suitable for manual or automated trading logic with high trade clarity
Can be applied on any timeframe and any liquid instrument (Forex, crypto, indices, etc.)
Recommended Use:
Combine with volume or session filters for improved signal quality
Ideal for traders seeking clear entry/exit rules with minimal noise
Best on trending instruments and medium timeframes (USDJPY; Daily)
✅ 200 EMA + RSI Pullback + Volume Surge (Full Strategy)200 EMA Trend + RSI Pullback + Volume Surge Strategy (Advanced)
📖 Strategy Description:
This strategy is designed to identify high-probability entries in trending markets using a combination of trend-following and momentum re-entry principles. It works effectively for intraday and swing trading on equities, indices, and crypto.
🔍 Entry Logic:
✅ Long Entry Conditions:
Trend Confirmation:
Price must be above the 200 EMA, indicating a bullish trend.
RSI Pullback:
RSI must drop below a defined level (default 40), indicating a healthy pullback in an uptrend.
Volume Surge:
Current volume must be above 1.5× the 20-period average, confirming strong buying activity.
Entry Triggered on Candle Close:
Ensures reliable confirmation instead of premature entries.
Short Entry Conditions (reverse logic):
Price below the 200 EMA
RSI above threshold (default 60)
Volume surge
Entry only after candle close
Exit Conditions:
Take Profit (TP):
Book profits at 2% move (configurable).
Stop Loss (SL):
Protect capital at 1% loss (configurable).
Trailing Stop Loss (TSL):
Follows the price with a 1.5% trail to lock in profits.
Time-Based Exit:
Closes position automatically after a fixed number of candles (default: 5 bars).
Alerts:
Built-in alerts notify when a Long or Short setup is triggered, allowing traders to act or automate execution.
Best Used On:
Timeframes: 15-minute, 1-hour, or Daily
Markets: NIFTY, BANKNIFTY, RELIANCE, INFY, BTC/USD, ETH/USD
Styles: Intraday, Swing, Trend-followinG
Ideal For:
Traders who follow pullback entries in strong trends
Users looking for automated alerts and exits
Strategies requiring volume confirmation + trend bias
⚡ HMA PowerPlay Strategy ⚡The ⚡ HMA PowerPlay Strategy ⚡ is a highly filtered momentum-based strategy that combines trend-following and volatility breakout logic. It is designed for precision entries during strong directional moves.
**Key Features:**
- Dual HMA filtering (short-term and long-term)
- Strong bullish/bearish candle detection
- ATR-based dynamic stop loss and R-multiple targets
- Volume confirmation filter
- RSI + MACD oscillator conditions for additional confirmation
- Entry checklist panel for transparent signal breakdown
- Oscillator and price panel for deeper context
- Supports both long and short signals
Ideal for traders who want visual clarity, data-backed entries, and structured position management.
Developed and optimized by IMSHAHROKH.
SG Multi Entry/Exit IndicatorThis strategy is based on an entry and an exit indicator that can be selected from a range of indicators.
The entry / exit indicators are standard Stochastic, MACD, RSI and MA indicators.
The graphs for each indicator are normalised to between 0 and 100 and displayed on above the other with buy and sell indicators.
The Strategy can be enabled / disabled via the inputs as can the date range as can whether to put a dummy sell signal in for the last trading day to give an accurate Mark to Market performance.
XRP 4H UTC Edge | metaduro.com🔍 Strategy Overview
The XRP 16H Strong strategy is a time-based intraday trading system built specifically for XRP on the 4-hour chart. It focuses on the 16:00–20:00 UTC session, targeting short-term price moves during this high-activity window.
✅ Entry Condition
📅 Time = 16:00 UTC → A long position is opened at the start of the 16:00–20:00 UTC candle. This time period often captures late-day momentum and volatility.
❌ Exit Condition
📅 Time = 20:00 UTC → The position is closed at the start of the 20:00–00:00 UTC candle, realizing gains or cutting risk quickly.
📊 No Indicators Used
This strategy is purely based on time-of-day logic — no indicators like RSI, MACD, or moving averages are used. It aims to isolate specific market behavior tied to certain hours.
⚙️ Settings
• Timeframe: 4H (required for correct execution)
• Trade Type: Long only
• Position Size: 100% equity per trade (default setting, adjustable)
💡 Use Cases
• Ideal for testing statistically favorable trading hours
• Can be applied to other crypto assets or combined with filters (e.g., volume spikes, price action patterns)
• Simple foundation for more complex hybrid models (time + indicator-based)
📉 No Stop-Loss or Take-Profit Logic
This script does not use SL/TP. It's recommended to combine with external risk management or modify the code for tighter control.
RFM Strategy - High QualityI trade high-probability resistance fades using a systematic 4-pillar approach that has delivered a proven 60%+ win rate with 2.5+ profit factor."
📊 Core Strategy Elements:
1. VRF Resistance Identification:
Multiple resistance level confluence (minimum 2 levels)
Dynamic resistance zones using 20-period high/low ranges
Only trade when price approaches clustered resistance
2. Volume Weakness Confirmation:
Volume ROC must be ≤ -30% (weak buying pressure)
Identifies exhaustion rallies with poor participation
Confirms institutional selling vs retail buying
3. Momentum Divergence:
SMI ≥ 60 (extreme overbought) OR 25-point momentum collapse
Multi-timeframe confirmation for higher reliability
Catches momentum exhaustion at key levels
4. Price Rejection Patterns:
Long upper wicks (2x body size) at resistance
Doji formations showing indecision
Failed breakout patterns with immediate rejection
⚡ Execution:
Entry: Only when ALL 4 conditions align simultaneously
Risk Management: 6-point stops, 12-point targets (2:1 R/R minimum)
Timeframe: 5-minute charts for precise entries
Selectivity: Quality over quantity - average 5 trades per period
🏆 Performance:
60% win rate (matches manual trading performance)
2.59 Profit Factor (highly profitable)
Systematic approach eliminates emotional decisions
"This strategy automates the discretionary resistance fade setups that institutional traders use, with strict filters ensuring only the highest-probability opportunities."
Liquidity Sweep Strategy v2 - Fixed Close LabelsThe Liquidity Sweep Strategy v2 is designed to detect stop-loss hunting behavior, commonly seen in institutional trading. It capitalizes on false breakouts beyond recent swing highs or lows (liquidity zones), which are followed by sharp reversals.
This strategy is particularly effective during high-volume liquidity grabs when markets trigger stop-loss clusters and then reverse direction — a phenomenon often referred to as a liquidity sweep or stop hunt
BTC Buy Sunday Noon / Sell Friday Noon (Compounding from $1000)long enough description long enough description long enough description long enough description long enough description long enough description long enough description long enough description long enough description long enough description long enough description
WaveTrend Strategy It is the wave trend indicator transformed into a strategy with Zapay intelligence. Buys on yellow candles and sells on turquoise candles. Opens both long and short trades. All parameters can be adjusted. Set the parameter according to the chart minute and test.
First Continuation Strategy w/ Partial SL (Corrected)EMA Distance
8/21 Cross
B/S for initial change in signal
b/s yellow for price action second confirm.
CNCRADIO talked GPT into Watching the YouTube!Referred GPT to the youtube channel and produced PINE script with no errors first try, followed some prompts and this is the result.
Ichimoku + RSI + VWMA Strategy Suite (w/ ATR SLTP)Ichimoku + RSI + VWMA indikatörleri kullanılarak üretilen seçmeli stratejiler.
SMA3 / EMA10 + MACD (9-10pm COL) | SL 10 pips, TP 10 pipsmedias movil de 3 periodos mas una ema de 10 + macd cruces, el tp y sl no se usan de la estrategia se usa minimo o maximo q marque el zigzag de 6 periodos.
3-period simple moving average plus a 10-period EMA and MACD crossovers. Take profit and stop loss are not fixed; instead, they are based on the most recent low or high marked by a 6-period ZigZag indicator."