Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Experts

Exp_Open_Oscillator_Cloud_MMRec - expert pour MetaTrader 5

Vues:
2155
Note:
(13)
Publié:
2018.08.23 14:07
Mise à jour:
2023.03.29 13:48
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

The trading system based on the Open_Oscillator_Cloud indicator signals with an ability to change the volume of a forthcoming trade depending on the results of the previous trades for this trading system. Trading signals are formed when a bar closes if a trend has changed (which is displayed by cloud changing its color).

The block of input EA variables is added for managing volumes of opened positions:

input uint    BuyLossMMTriger=2;  // Number of loss-making Buy trades to decrease MM
input uint    SellLossMMTriger=2; // Number of loss-making Sell trades to decrease MM
input double  SmallMM_=0.01;      // Share of financial resources from the deposit used in a trade in case of losses
input double  MM=0.1;             // Share of financial resources from the deposit used in a trade in case of normal trading
input MarginMode MMMode=LOT;      // Lot size calculation method

In case of such inputs and if the last two trades in one direction were loss-making, the EA opens the next trade in the same direction having the volume of 0.01 lot. If at least one of the two last trades is not loss-making, the position volume is 0.1.

For the generated EA to operate correctly, the compiled Open_Oscillator_Cloud.ex5 indicator file should be in the <terminal_data_directory>\MQL5\Indicators folder.

Default Expert Advisor's input parameters with stops have been used during tests shown below.

Fig. 1. Examples of trades on the chart

Fig. 1. Examples of trades on the chart

Testing results for 2017 on AUDUSD H2:

Fig. 2. Testing results chart

Fig. 2. Testing results chart

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/21610

GBP9AM GBP9AM

Working with pending Buy Stop and Sell Stop orders.

Wajdyss_Ichimoku_Candle Wajdyss_Ichimoku_Candle

A semaphore signal indicator based on a breakthrough of the Kijun Sen line by the price and displayed as candles.

Exp_wajdyss_Ichimoku_Candle_MMRec Exp_wajdyss_Ichimoku_Candle_MMRec

The trading system based on the Wajdyss_Ichimoku_Candle indicator signals with an ability to change the volume of a forthcoming trade depending on the results of the previous trades for this trading system.

Wajdyss_Ichimoku_Candle_Alert Wajdyss_Ichimoku_Candle_Alert

Wajdyss_Ichimoku_Candle indicator provides alerts, sends email and push notifications when the candles break through the Kijun Sen line (candle color changes to the opposite one).