ICHIMOKU CLOUD TRADING STRATEGIES EA MT4/MT5 BACKTESTS & NEW OPTIMIZED SET FILES – Buying and selling Methods – 27 October 2024


For the ICHIMOKU CLOUD TRADING EA  MT4/MT5 my present advice is to commerce solely these set recordsdata EURUSD, USDCHF, AUDUSD, GBPUSD ,USDCAD,NZDUSD AND XAUUSD with particular settings

How Totally 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 value > kijun_sen and tenkan_sen > kijun_sen and value > kumo_top # Value is above Kijun and Kumo def kijun_cross_sell_signal(): return value < kijun_sen and tenkan_sen < kijun_sen and value < 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 value > kumo_top and senkou_span_a > senkou_span_b # Value breaks above the Kumo, with bullish Kumo def kumo_breakout_sell_signal(): return value < 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 > value and chikou_span > kumo_top and tenkan_sen > kijun_sen # Chikou Span confirms bullish development def chikou_confirmation_sell_signal(): return chikou_span < value and chikou_span < kumo_bottom and tenkan_sen < kijun_sen # Chikou Span confirms bearish development # 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 value > kumo_top # Tenkan above Kijun, confirmed by value above Kumo def tenkan_kijun_cross_sell_signal(): return tenkan_sen < kijun_sen and value < kumo_bottom # Tenkan under Kijun, confirmed by value 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 recordsdata, together with detailed directions and recommendation on the backside of this information.

Notice: Although this makes use of grid/hedge/martingale system , it doesn’t danger an excessive amount of. The backtesting is finished with account step up technique. Means as we make the revenue we increase the lot measurement regularly. This ensures that we calculating the drawdown at all times with respect to avaialble steadiness. Additionally solely use particular set file for the talked about symbols. If you don’t choose correct set file it could possibly be harmful in your account. All of the set recordsdata are optimized for five min time-frame.It doesn’t open an excessive amount of grid trades on sudden huge motion,therefore makes account much less dangerous.  We’ve totally different larger timeframe Shifting common filter to find out the development of the primary commerce. Additionally this has combos of three totally different CCI methods

We are going to categorize our backtesting into 4 classes 

GRID BASED 

HEDGE BASED 

MARTINGALE BASED

Set recordsdata are coming quickly

Leave a Reply

Your email address will not be published. Required fields are marked *