For the ICHIMOKU CLOUD TRADING EA MT4/MT5 my present suggestion is to commerce solely these set information EURUSD, USDCHF, AUDUSD, GBPUSD ,USDCAD,NZDUSD AND XAUUSD with particular settings
How Completely different Methods associated to ichimoku works?
1. Kijun Cross Technique
# Outline Purchase and Promote Logic for Kijun Cross Technique def kijun_cross_buy_signal(): return worth > kijun_sen and tenkan_sen > kijun_sen and worth > kumo_top # Value is above Kijun and Kumo def kijun_cross_sell_signal(): return worth < kijun_sen and tenkan_sen < kijun_sen and worth < kumo_bottom # Value is under Kijun and Kumo # Execute Purchase and Promote Logic if kijun_cross_buy_signal(): print(“Purchase sign generated (Kijun Cross Technique)”) # Place purchase order elif kijun_cross_sell_signal(): print(“Promote sign generated (Kijun Cross Technique)”) # Place promote order else: print(“No commerce sign (Kijun Cross Technique)”)
2. Kumo Breakout Technique
# Outline Purchase and Promote Logic for Kumo Breakout Technique
def kumo_breakout_buy_signal():
return worth > kumo_top and senkou_span_a > senkou_span_b # Value breaks above the Kumo, with bullish Kumo
def kumo_breakout_sell_signal():
return worth < kumo_bottom and senkou_span_b > senkou_span_a # Value breaks under Kumo, with bearish Kumo
# Execute Purchase and Promote Logic
if kumo_breakout_buy_signal():
print(“Purchase sign generated (Kumo Breakout Technique)”)
# Place purchase order
elif kumo_breakout_sell_signal():
print(“Promote sign generated (Kumo Breakout Technique)”)
# Place promote order
else:
print(“No commerce sign (Kumo Breakout Technique)”)
3. Chikou Span Affirmation Technique
# Outline Purchase and Promote Logic for Chikou Span Affirmation Technique def chikou_confirmation_buy_signal(): return chikou_span > worth and chikou_span > kumo_top and tenkan_sen > kijun_sen # Chikou Span confirms bullish pattern def chikou_confirmation_sell_signal(): return chikou_span < worth and chikou_span < kumo_bottom and tenkan_sen < kijun_sen # Chikou Span confirms bearish pattern # Execute Purchase and Promote Logic if chikou_confirmation_buy_signal(): print(“Purchase sign generated (Chikou Span Affirmation Technique)”) # Place purchase order elif chikou_confirmation_sell_signal(): print(“Promote sign generated (Chikou Span Affirmation Technique)”) # Place promote order else: print(“No commerce sign (Chikou Span Affirmation Technique)”)
4. Tenkan-Kijun Cross Technique (Quick-Time period)
# Outline Purchase and Promote Logic for Tenkan-Kijun Cross Technique
def tenkan_kijun_cross_buy_signal():
return tenkan_sen > kijun_sen and worth > kumo_top # Tenkan above Kijun, confirmed by worth above Kumo
def tenkan_kijun_cross_sell_signal():
return tenkan_sen < kijun_sen and worth < kumo_bottom # Tenkan under Kijun, confirmed by worth under Kumo
# Execute Purchase and Promote Logic
if tenkan_kijun_cross_buy_signal():
print(“Purchase sign generated (Tenkan-Kijun Cross Technique)”)
# Place purchase order
elif tenkan_kijun_cross_sell_signal():
print(“Promote sign generated (Tenkan-Kijun Cross Technique)”)
# Place promote order
else:
print(“No commerce sign (Tenkan-Kijun Cross Technique)”)
5. Kumo Twist Technique
# Outline Purchase and Promote Logic for Kumo Twist Technique def kumo_twist_buy_signal(): return senkou_span_a > senkou_span_b and previous_senkou_span_a < previous_senkou_span_b # Kumo twist from bearish to bullish def kumo_twist_sell_signal(): return senkou_span_b > senkou_span_a and previous_senkou_span_b < previous_senkou_span_a # Kumo twist from bullish to bearish # Execute Purchase and Promote Logic if kumo_twist_buy_signal(): print(“Purchase sign generated (Kumo Twist Technique)”) # Place purchase order elif kumo_twist_sell_signal(): print(“Promote sign generated (Kumo Twist Technique)”) # Place promote order else: print(“No commerce sign (Kumo Twist Technique)”)
You’ll find the ICHIMOKU CLOUD TRADING EA MT4/ MT5 set information, together with detailed directions and recommendation on the backside of this information.
Word: Although this makes use of grid/hedge/martingale system , it doesn’t threat an excessive amount of. The backtesting is completed with account step up technique. Means as we make the revenue we elevate the lot dimension progressively. This ensures that we calculating the drawdown all the time with respect to avaialble stability. Additionally solely use particular set file for the talked about symbols. If you don’t choose correct set file it may very well be harmful in your account. All of the set information are optimized for five min timeframe.It doesn’t open an excessive amount of grid trades on sudden massive motion,therefore makes account much less dangerous. We’ve got completely different greater timeframe Transferring common filter to find out the pattern of the primary commerce. Additionally this has mixtures of three completely different CCI methods
We are going to categorize our backtesting into 4 classes
GRID BASED
HEDGE BASED
MARTINGALE BASED
PURE STOPLOSS AND TAKEPROFIT based mostly the place no dangerous method like martingale shall be utilized
You’ll find MT5 EA right here
Set information are coming quickly