Unisciti alla nostra fan page
- Pubblicati da::
- Vladimir Karputov
- Visualizzazioni:
- 5689
- Valutazioni:
- Pubblicato:
- 2017.01.26 09:29
- Aggiornato:
- 2017.03.13 09:17
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
Author of the idea — Hazem, author of the MQL5 code — barabashkakvn.
Works based on two indicators: iCCI (Commodity Channel Index, CCI) and iMACD (Moving Average Convergence/Divergence, MACD). OnTradeTransaction().
As the CCI and MACD indicators have different scales of measurement, a conversion ratio has been introduced:
The values are aligned here:
{
//---
double cci=iCCIGet(back);
double macd=iMACDGet(MAIN_LINE,back)*macd_coefficient;
Comment("cci: ",DoubleToString(cci,2),"\n",
"macd: ",DoubleToString(macd,Digits()+1),"\n",
"buyLevel: ",buyLevel);
The clear information on the obtained values is displayed here right away - for visual inspection.
Also, an interesting idea has been implemented — the EA (in the OnTradeTransaction() function) performs the summation of unprofitable and profitable trades (the "Number_of_losses" variable). If closed with a loss — "Number_of_losses" increases by "1"; if closed with profit, "Number_of_losses" decreases by "1". When opening a position, the lot is calculated as: if "Number_of_losses">"0" (this means that currently there are more positions closed with loss than with profit) increase the lot by the "increase" coefficient. If "Number_of_losses"<"0" (this means that currently there are more positions closed with profit than with loss) — the lot size is taken from the coefficient:
ExtLot=InpLot*MathPow(2,increase);
else
ExtLot=InpLot;
Testing results on EURUSD,M30 from 2016.06.09 to 2016.12.04, initial deposit - 3000:
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/17115

Trading based on the ZeroLag MACD custom indicator.

The Expert Advisor based on the iAlligator (Alligator), iMA (Moving Average) indicators.

Trading based on two indicators: iAlligator (Alligator).

The function returns the number of positions opened by an Expert Advisor for the day.