MT-Coordination Trading Strategy
Overview
The MT-Coordination Trading Strategy is an advanced quantitative trading strategy integrating multiple technical indicators to identify short-term trading opportunities in financial markets. Designed by renowned trader I3ig_Trades, it is specialized for high-frequency trading.
Strategy Logic
The strategy incorporates three Smoothed Moving Averages (SMA) of different timeframes (21, 50, 200), the 14-day Relative Strength Index (RSI) and the Williams Fractals (2 days). The specific entry logic is defined as follows:
Long signal: Triggered when close is above all three SMAs, RSI is above 50 and current high is greater than the previous fractal up.
Short signal: Activated when close is below all three SMAs, RSI is below 50 and current low is less than the previous fractal down.
Position sizing is dynamically calculated based on selected percentage of equity and leverage level.
Advantage Analysis
This strategy combines multiple indicators to filter out false signals and identify high probability breakout levels, greatly reducing trading risk. Meanwhile, the position sizing is set according to a percentage of account equity, controlling single loss.
Specific strengths are:
-
Using multi timeframe indicators for confirmation to avoid traps. SMAs recognize trends across short, medium and long terms.
-
RSI avoids overbought and oversold zones. Values above 50 signal bullishness and below 50 signal bearishness.
-
Williams Fractals further verify the breakout, only entering on penetration of extremes.
-
Dynamic position sizing based on percentage of account balance strictly manages downside.
-
Customizable parameters suit different trading styles.
Risk Analysis
The main risks of this strategy include:
-
Failure to fully avoid whipsaws when SMAs diverge.
-
Inability to exit timely before trend reversal due to lagging indicators.
-
Risk of losing the full position in extreme moves when loss exceeds preset.
Solutions:
-
Optimize SMAs combinations to find best parameters.
-
Add candlestick filters to further avoid false breakouts.
-
Reduce percentage and leverage levels appropriately.
Optimization Directions
The strategy can be further enhanced by:
-
Testing different combinations of SMAs and RSI for optimal parameters.
-
Incorporating additional filters like Bollinger Bands width, traderjack signals etc.
-
Adding stop loss mechanisms to cut losses at a predefined level.
-
Integrating deep learning models for support and resistance detection.
-
Implementing adaptive position sizing scheme for sensible scaling of positions.
Conclusion
The MT-Coordination Trading Strategy is a mature breakout system leveraging multiple timeframes. By combining indicators to filter signals and dynamically managing position sizing, it is capable of consistent profits for capitalized funds and professional traders through continuous parameter tuning and model optimization.
/*backtest
start: 2024-01-17 00:00:00
end: 2024-01-24 00:00:00
period: 10m
basePeriod: 1m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
// Written by I3ig_Trades. Follow And Let Me Know Any Strategies You'd Like To See!
strategy("Best Scalping Strategy Period (TMA)", shorttitle="Best Scalping Strategy Period (TMA)", overlay=false,
initial_capital=100000, - 1

