Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
Vladislav Andruschenko  
Vlady #:

Hi, I am looking for a trailing stop loss which is activated after after the TP and it moves repetitively.

I try to explain with an example: I buy XAU/USD from 2025.0, SL to 2023.0 (20PIPS) and traling stop loss from 2028.1 (30 PIPS). When the profit reach 31 PIPS (2028.1) the bot put the stop loss to 30 PIPS (2028.00), when the price reach 2029.1 (41 PIPS) the stop loss becomes 2029.0 (40 PIPS) and so on.

Is it possibile to do with this ea?

Because in description I can see the "trailing profit" mode but in EA there is not

Hello. 
Where you read about trailing profit?
Pablo Balbis  
How I can avoid that box minimize every few minutes when I use 2 boards en in the Metatrader installation ?
Vladislav Andruschenko  
Pablo Pablo #:
How I can avoid that box minimize every few minutes when I use 2 boards en in the Metatrader installation ?



set to 0

Hamman Mohammed Majbour Mujibur Rahman  
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 20.0px 'Helvetica Neue'} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'; min-height: 15.0px} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'} li.li3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'} ol.ol1 {list-style-type: decimal}

Hi,


I am not sure whether if these are bugs or features. But I am facing some issues using the EA while ProfitTrailing is set to false. I am facing specifically two problems and how they can be reproduced is mentioned here. In both cases ProfitTrailing is set to false and starttrailpoint is set to 0.

  1. If I have set SL TO 300 and Trailing Profit to 250 the EA keeps on resetting the value to the fixed SL value. Once it triggers the SL and once it triggers the Trailing Point.
  2. When SL is not set and only Trailing Profit only is active it does not immediately set the SL for trailing as mentioned in the document. This is because whenever we open a position there is a difference in ask and bid and I think the EA checks for the bid value so unless the market value raises to 0 or the entry price of the trade trailing profit is not triggered. And there are two different cases here which are risky for trade. If the market goes against us trailing stop was never triggered and causing a huge loss. And if the market goes in favor of us there is no ending to how long it can go. Moreover there is a short time in between the order is placed and the orders are filled and if the market rallies in favor of us and when the EA checks the 0 value our market is way above that price and trailiing stop was never triggered until the market again crosses the value of opening price while dropping only the trailing profit will be triggered.

Can you check once again in your setup?

Vladislav Andruschenko  
bofh # :
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 20.0px 'Helvetica Neue'} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'; min-height: 15.0px} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'} li.li3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'} ol.ol1 {list-style-type: decimal}

Hi,


I am not sure whether if these are bugs or features. But I am facing some issues using the EA while ProfitTrailing is set to false. I am facing specifically two problems and how they can be reproduced is mentioned here. In both cases ProfitTrailing is set to false and starttrailpoint is set to 0.

  1. If I have set SL TO 300 and Trailing Profit to 250 the EA keeps on resetting the value to the fixed SL value. Once it triggers the SL and once it triggers the Trailing Point.
  2. When SL is not set and only Trailing Profit only is active it does not immediately set the SL for trailing as mentioned in the document. This is because whenever we open a position there is a difference in ask and bid and I think the EA checks for the bid value so unless the market value raises to 0 or the entry price of the trade trailing profit is not triggered. And there are two different cases here which are risky for trade. If the market goes against us trailing stop was never triggered and causing a huge loss. And if the market goes in favor of us there is no ending to how long it can go. Moreover there is a short time in between the order is placed and the orders are filled and if the market rallies in favor of us and when the EA checks the 0 value our market is way above that price and trailiing stop was never triggered until the market again crosses the value of opening price while dropping only the trailing profit will be triggered.

Can you check once again in your setup?



Thanks for the comment.

There is a function conflict here.

on the first question.

The assistant checks, for example for buy:

If the stop loss (300) is less than the current price - trailing stop - trailing step, then it modifies the stop loss.

But there is a conflict of functions.

If the stop loss is not yet in profit (by trailing stop), then it is set again.

To do this, I introduced a separate function SetSLTPonlytoZEROprices

on the second question:

the instructions say:

"If false , then TrailingStop starts immediately after placing position and pulls it after the price"

It was meant that the trailing stop starts working after the trade has reached a profit greater than 0, i.e. 1 point and above.

I'll change this in the instructions to make it clearer.



ProfitTrailing
If true, then Advisor starts only modification since the release position to breakeven.

If false, then TrailingStop starts immediately after placing position and pulls it after the price. Only if position profit>0
Attention! If you use ProfitTrailing=false and stoploss !=0, enable SetSLTPonlytoZEROprices = true, so that the utility does not conflict between negative trailing stop and stoploss.
Hamman Mohammed Majbour Mujibur Rahman  
Vladislav Andruschenko #:



Thanks for the comment.

There is a function conflict here.

on the first question.

The assistant checks, for example for buy:

If the stop loss (300) is less than the current price - trailing stop - trailing step, then it modifies the stop loss.

But there is a conflict of functions.

If the stop loss is not yet in profit (by trailing stop), then it is set again.

To do this, I introduced a separate function SetSLTPonlytoZEROprices

on the second question:

the instructions say:

"If false , then TrailingStop starts immediately after placing position and pulls it after the price"

It was meant that the trailing stop starts working after the trade has reached a profit greater than 0, i.e. 1 point and above.

I'll change this in the instructions to make it clearer.



ProfitTrailing
If true, then Advisor starts only modification since the release position to breakeven.

If false, then TrailingStop starts immediately after placing position and pulls it after the price. Only if position profit>0
Attention! If you use ProfitTrailing=false and stoploss !=0, enable SetSLTPonlytoZEROprices = true, so that the utility does not conflict between negative trailing stop and stoploss.

Ah thanks for the details. Works like a charm. :D

JUAN CARLOS QUINTANA GARCIA  
Hola Vladislav, he intentado hacerlo yo mismo pero no lo consigo. Puedes ayudarme si es posible? Quiero colocar una orden con SL 4300 y TP 1500. Cuando el precio llegue a 700 puntos, quiero que el SL se coloque en +600 puntos y que vaya haciendo trailing de 1 punto a medida que se va incrementando el beneficio. Es esto posible en Mt5?
Vladislav Andruschenko  
JUAN CARLOS QUINTANA GARCIA #:
Hola Vladislav, he intentado hacerlo yo mismo pero no lo consigo. Puedes ayudarme si es posible? Quiero colocar una orden con SL 4300 y TP 1500. Cuando el precio llegue a 700 puntos, quiero que el SL se coloque en +600 puntos y que vaya haciendo trailing de 1 punto a medida que se va incrementando el beneficio. Es esto posible en Mt5?

Hola.

Sí, puede probar esta opción: 

JUAN CARLOS QUINTANA GARCIA  
Vladislav Andruschenko #:

Hola.

Sí, puede probar esta opción: 

Muchas gracias. Lo voy a probar y te cuento.

JUAN CARLOS QUINTANA GARCIA  
JUAN CARLOS QUINTANA GARCIA #:

Muchas gracias. Lo voy a probar y te cuento.

He probado, pero no es exactamente lo que necesito. Lo que realmente necesito es que el SL pase directamente desde los -4300 puntos a +600 puntos, cuando el precio llegue a +700 puntos y que ese nivel de SL (+600) haga trainling de +1 punto.

Vladislav Andruschenko  
JUAN CARLOS QUINTANA GARCIA #:

He probado, pero no es exactamente lo que necesito. Lo que realmente necesito es que el SL pase directamente desde los -4300 puntos a +600 puntos, cuando el precio llegue a +700 puntos y que ese nivel de SL (+600) haga trainling de +1 punto.

Agregue un archivo de registro para ver esto.
JUAN CARLOS QUINTANA GARCIA  
Vladislav Andruschenko #:
Agregue un archivo de registro para ver esto.

Excume sir, now is working fine. Thank you very much.

Jonathan Manuel Gunawan  
Hi Vlad,
I would like to ask if this EA can be used with VPS MQL5?
Why does Exp Assistant 5 MT5 on my VPS MQL5 seem not to work as expected? When I enable algo trading on the MT5 desktop (without using VPS), everything works normally.
I am checking whether this EA is working on the VPS because whenever I open a position, no SL or TP numbers appear. However, when I enable algo trading on the MT5 desktop and open a position, the SL and TP numbers appear as expected.
Thank you.
Vladislav Andruschenko  
Jonathan Manuel Gunawan # :
Hi Vlad,
I would like to ask if this EA can be used with VPS MQL5?
Why does Exp Assistant 5 MT5 on my VPS MQL5 seem not to work as expected? When I enable algo trading on the MT5 desktop (without using VPS), everything works normally.
I am checking whether this EA is working on the VPS because whenever I open a position, no SL or TP numbers appear. However, when I enable algo trading on the MT5 desktop and open a position, the SL and TP numbers appear as expected.
Thank you.

Unfortunately, half a year ago - All panels stopped working on VPS from MQL.

It is not possible to transfer panel settings to the server.

Jonathan Manuel Gunawan  
Vladislav Andruschenko #:

Unfortunately, half a year ago - All panels stopped working on VPS from MQL.

It is not possible to transfer panel settings to the server.

Oh, okay. You've made such a great EA, but it's very unfortunate that it can't be used on VPS MQL5.

Thank you for your response, Vlad.

Vladislav Andruschenko  
Jonathan Manuel Gunawan #:

Oh, okay. You've made such a great EA, but it's very unfortunate that it can't be used on VPS MQL5.

Thank you for your response, Vlad.

I'm waiting for news from metaquotes.
Vladislav Andruschenko  
Automatic installation of Real / Virtual stop loss / take profit / trailing stop: FREE
🔹 ASSISTANT: MT4: https://www.mql5.com/en/market/product/14623
🔹 ASSISTANT: MT5: https://www.mql5.com/en/market/product/4477
📰↔️↔️↔️FULL GUIDE for ASSISTANT: https://www.mql5.com/en/blogs/post/718537
🌐↔️↔️↔️FULL GUIDE for ASSISTANT: https://www.expforex.com/?p=73
▶️YouTube: https://www.youtube.com/watch?v=lc3hG7xgehc
JotaLouis  

Una duda que tengo es sobre el Virtual Stop, ya que si le doy ON me elimina los SL y SP de la operación pero no del gráfico y cuando llega a esos niveles se ejecutan como si los tuviera puesto, me lo podrías explicar más en detalle su uso? Muchas gracias por tu trabajo.

Vladislav Andruschenko  
JotaLouis #:

Una duda que tengo es sobre el Virtual Stop, ya que si le doy ON me elimina los SL y SP de la operación pero no del gráfico y cuando llega a esos niveles se ejecutan como si los tuviera puesto, me lo podrías explicar más en detalle su uso? Muchas gracias por tu trabajo.

Gracias por la retroalimentación.


Así es. Los niveles virtuales funcionan ocultos a su corredor. Cuando el precio toque estos niveles en el gráfico, las posiciones se cerrarán.


¡Administre niveles de parada virtuales/reales en el panel de control del Asistente!

El parámetro VirtualStops (VirtualSLTP) se muestra en el gráfico del panel de control.

¡Ahora puede habilitar/deshabilitar la función Virtual Stop Loss / Take Profit / Trailing Stop desde el panel de control!

Trabajar con stoploss virtual / takeprofit / trailingstop / breakeven.

—— Trabajo completo con niveles Virtual Stop Loss y Take Profit. Prender apagar.

——– Todos los niveles serán virtuales y se mostrarán en el gráfico como líneas.

--- ¡Atención! Este es un cierre virtual de Posiciones (Deal). Esto significa que cuando el precio cruza la línea de stop loss/takeprofit virtual, el asesor envía un comando para cerrar el servidor.

——– Puede haber desvíos en el cierre de las cotizaciones y otros retrasos de los corredores.

--- ¡Atención! Funciona solo en una computadora encendida y un terminal conectado.

--- ¡Atención! En MT4, los niveles virtuales funcionan tanto con Posiciones (Tratos) como con órdenes.

--- ¡Atención! ¡En MT5, los niveles virtuales funcionan solo con Posiciones (Oferta)!


Las órdenes pendientes y limitadas funcionarán con niveles reales de stop loss y toma de ganancias.

--- ¡Atención! Puede haber deslices al cerrar Posiciones (Deal).


Depende de las cotizaciones del corredor y los retrasos!!!

---- ¡Atención! Cuando hace clic en el botón "Encendido/Apagado", el asesor modifica todos los niveles de stoploss y takeprofit a niveles virtuales/reales.

Al modificar, puede haber restricciones del corredor sobre el nivel mínimo de parada, y entonces el asesor no podrá modificar algunas paradas de pérdidas y ganancias.

Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti