Experts: Dealers Trade v 7.74 MACD - page 2

 
Vitaly Muzichenko:

Only be sure to make a button, because without it is not convenient:



The advisor really makes money. But not much. The point of improving the Expert Advisor is not to chop 100% per month, but to get a stable income for many months.

 
VasilySorokin:

The advisor really makes money. But a little. The point of improving the Expert Advisor is not to chop 100% per month, but to get a stable income for many months.

So we need such a button:


 
Vladimir Karputov:

No big deal :)


Well I can look at your EA. If I will take it, then after redesigning it, I will put it in KodoBase (i.e. this mql5 EA will be available to everyone and its code will be open).

First a little bit about Martin's redesign:

All traders know what it is and how. Some write EAs. I always admire programmers who implement various ideas into code.

What about Martin: 1. More often use doubling of positions 2. New positions are opened at equal intervals (number of points), which is set in the properties.

3. open positions in any direction.

What I use: 1. Coefficient of lot increase 1.5 (this is available in any Martin). 2.

2. The coefficients by which the distance between the next open orders is multiplied by

- the distance between subsequent open orders is multiplied by a given coefficient (koeficient)

- the distance between Take Profits is multiplied by its specified coefficient (koeficient_tp).

3. The ZeroLag MACD indicator (with all three variables fast, slow and signal lines) is used to determine the direction of the trade

Zero Lag MACD is a bit more sensitive than just MACD.

The problem of shortage of money is somewhat compensated by the increasing distances of opening subsequent orders.

 

Counsellor

 

Yeah, just in case, and the indicator

Files:
 
Dealers Trade v 7.74 MACD: With this Expert Advisor I liked the option of trading through copying. trades are opened with reversal of stop and profit positions. On the source terminal with a balance of 1000, I set an owl and copy on the client (balance 10 000). timeframe M3, pairs EURUSD or USDJPY. As a rule trades within 2 trading days on the source are closed on margin, and on the client profit, and drawdowns are small, the only problem with copying. there can be a big delay, but this is the problem of the broker and copier, not the owl. It would be good if the author would consider such an idea, owl trading is virtual, and in the terminal copying of this virtual trading with accuracy to the contrary.
Files:
USDJPY.jpg  177 kb
 
Eduard Gluhov:
Dealers Trade v 7.74 MACD: With this Expert Advisor I liked the option of trading through copying. trades are opened with reversal of stop and profit positions. On the source terminal with a balance of 1000, I set an owl and copy on the client (balance 10 000). timeframe M3, pairs EURUSD or USDJPY. As a rule trades within 2 trading days on the source are closed on margin, and on the client profit, and drawdowns are small, the only problem with copying. there can be a big delay, but this is the problem of the broker and copier, not the owl. It would be good if the author would consider such an idea, the owl trade is virtual, and the terminal copies this virtual trade with accuracy to the contrary.

Why such complications: virtually, copying with reversal ...? Maybe it is necessary to select a trading pair or change the opening signals in the Expert Advisor itself?

 
Vladimir Karputov:

Why such complications: virtually, copying with reversal ...? Maybe you need to select a trading pair or change the opening signals in the Expert Advisor itself

In this variant I liked the result, drawdown, In copying with flip, uncontrollable delays for example the last deal on the photo delay of about 8 minutes.

On large timeframes tried other pairs and settings, not that.

In this variant we accumulate profitable positions and with large lots and if the price goes in our direction the profit increases sharply. and if not in our direction, the loss is eaten by the accumulated positions, the balance of the master is ten times less than the balance of the client, the drain on the master as a rule occurs in 2-3 trading days and it is somewhere from 5 to 8% profit, with minimal drawdowns.

 
VasilySorokin:

Oh yeah, just in case and indicator


This indicator has been posted in KodoBase:

ZeroLag MACD

ZeroLag MACD indicator is a Moving Average Convergence/Divergence indicator, MACD with zero delay. ZeroLag MACD indicator, compared to the standard MACD, gives signals several bars earlier, and divergence/divergence is more pronounced. It is calculated by the formula: ZeroLAG MACD(i) = (2*EMA(Close, FP, i) - EMA(EMA(Close, FP, i), FP, i)) - (2*EMA(Close, SP, i) - EMA(EMA(Close, SP, i), SP, i)); ZeroLAG MACD Signal(i) = 2*EMA( ZeroLAG MACD(i), SigP, i) - EMA(EMA( ZeroLAG MACD(i), SigP, i), SigP, i); where: EMA - exponential moving average; Close - bar closing price; FP - fast moving average period; SP - slow moving average period; SigP - signal moving average period; ZeroLag MACD

CodeBase | 2006.10.25 15:55 | Collector | Indicators | MetaTrader 4

and there is its MQL5 version:

ZeroLag MACD

Real author: The original indicator was posted by Collector. ZeroLag MACD with colouring of histogram bars relative to the previous bar. The standard MACD from MetaTrader 5 is taken as a basis. Added colouring and changed the calculation formula. The formula is taken from the original page. Signal moving average has been removed. The original was Double Exponential Moving Average (DEMA). ZeroLag MACD

CodeBase | 2010.04.14 16:29 | Neer | Indicators | MetaTrader 5

Already easier.

 
Vladimir Karputov:

This indicator was posted in KodoBase:

ZeroLag MACD

ZeroLag MACD indicator is a Moving Average Convergence/Divergence indicator, MACD with zero delay. ZeroLag MACD indicator, compared to the standard MACD, gives signals several bars earlier, and divergence/divergence is more pronounced. It is calculated by the formula: ZeroLAG MACD(i) = (2*EMA(Close, FP, i) - EMA(EMA(Close, FP, i), FP, i)) - (2*EMA(Close, SP, i) - EMA(EMA(Close, SP, i), SP, i)); ZeroLAG MACD Signal(i) = 2*EMA( ZeroLAG MACD(i), SigP, i) - EMA(EMA( ZeroLAG MACD(i), SigP, i), SigP, i); where: EMA - exponential moving average; Close - bar closing price; FP - fast moving average period; SP - slow moving average period; SigP - signal moving average period; ZeroLag MACD

CodeBase | 2006.10.25 15:55 | Collector | Indicators | MetaTrader 4

and there is its MQL5 version:

ZeroLag MACD

Real author: The original indicator was posted by Collector. ZeroLag MACD with colouring of histogram bars relative to the previous bar. The standard MACD from MetaTrader 5 is taken as a basis. Added colouring and changed the calculation formula. The formula is taken from the original page. Signal moving average has been removed. The original was Double Exponential Moving Average (DEMA). ZeroLag MACD

CodeBase | 2010.04.14 16:29 | Neer | Indicators | MetaTrader 5

Already easier.


Morning.

ZeroLag MACD has three parameters for MT4 and two for MT5. I have the settings of three parameters with a signal line