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

Здравствуйте, Сергей!

Источник выдаёт такой сигнал: XAU/USD

Sell; 5,179.24

Tp1: 5,170.00

Tp2:5,160.00

Как котировку в копире привести в нормальный вид, чтобы открывались сделки?

Sergey Batudayev  
Siarhei Lyskavets #:

Здравствуйте, Сергей!

Источник выдаёт такой сигнал: XAU/USD

Sell; 5,179.24

Tp1: 5,170.00

Tp2:5,160.00

Как котировку в копире привести в нормальный вид, чтобы открывались сделки?

Здравствуйте! Приложите логи на момент получения данного сигнала.
Siarhei Lyskavets  
Sergey Batudayev #:
Здравствуйте! Приложите логи на момент получения данного сигнала.
Sergey Batudayev #:
Здравствуйте! Приложите логи на момент получения данного сигнала.
File:
1.jpg  48 kb
Sergey Batudayev  
Siarhei Lyskavets #:
Приложите логи в виде файлов пожалуйста.
Mark Genber Escartin  

How can I do a partial close?
how does it work?

Is this correct??
Need help please..



Sergey Batudayev  
Mark Genber Escartin #:
How can I do a partial close?
how does it work?

Is this correct??
Need help please..

Hi,

Yes — partial close is supported, but your screenshot is not set correctly for it yet.

How partial close works in this EA

There are 2 separate modes, and you should use only one of them:

  1. Custom TP1…TP6 ladder
    → closes orders based on your custom TP levels
  2. Auto Close % After X (separate mode)
    → closes part of the position after the trade reaches a certain profit

For partial close by profit distance, you need:

  • UseAutoClosePercentAfterXPoints = true
  • AutoCloseUnit = Points / Pips / Price
  • AutoCloseAfterX = the profit distance where partial close should trigger
  • AutoClosePercent = how much to close (for example 50 = close half)
  • AutoCloseLeaveRunner = true if you want to leave a small runner open

Important

The code explicitly says:

Choose ONE: Custom TP1..TP6 OR Auto Close % After X (not both)

So if you want partial close after price moves X points, then:

  • turn UseAutoClosePercentAfterXPoints = true
  • set the desired threshold and %
  • and do not rely on the Custom TP ladder at the same time

Example

If you want to close 50% after +100 points:

  • UseAutoClosePercentAfterXPoints = true
  • AutoCloseUnit = Points
  • AutoCloseAfterX = 100
  • AutoClosePercent = 50
  • AutoCloseLeaveRunner = true

So, in your screenshot, with UseAutoClosePercentAfterXPoints = false, the automatic partial close after X profit is disabled.

Mark Genber Escartin  
Show me example of screenshot for settings for partial close for all TP how..
sc404  
Hi developer,
I addressed this issue already, and you sent me the set file, but unfortunately it is not working as it should. 
I'm testing your EA from the free Telegram channel. 
t.me/TradingWithWazee

Here is the example:
XAUUSD SELL 4775
TP 4770
TP 4765
TP 4760
SL  4785

I am looking for a signal to open only ONE SINGLE TRADE with only one Take Profit and one Stop Loss.

XAUUSD SELL 4775 TP 4760 SL  4790

But EA opens 5 trades. 

1. The first trade was opened at 04:50:15 @4763.69

2. The second trade was opened at 04:50:24 @4761.94

3. The third trade was opened at 04:50:29 @4761.17

4. The fourth trade was opened at 04:52:38 @4763.75

5. The fifth trade was opened at 04:52:52 @4762.56

I have attached the log and snapshot files for your review. It seems that the EA does not currently support the functionality to open only ONE SINGLE TRADE per signal.

XAUUSD SELL 4775 TP 4760 SL  4790

Could you please add configurations to limit the maximum number of trades allowed per symbol for each signal account? I would like the EA to check if a trade let say for XAUUSD has already been opened in the signal account and, if so, to skip any subsequent trades.

Hopefully, you will resolve the issue quickly. Thank you. 
File:
1.png  125 kb
log_file.png  56 kb
3.png  259 kb
Sergey Batudayev  
sc404 #:
Hi developer,
I addressed this issue already, and you sent me the set file, but unfortunately it is not working as it should. 
I'm testing your EA from the free Telegram channel. 
t.me/TradingWithWazee

Here is the example:
XAUUSD SELL 4775
TP 4770
TP 4765
TP 4760
SL  4785

I am looking for a signal to open only ONE SINGLE TRADE with only one Take Profit and one Stop Loss.

XAUUSD SELL 4775 TP 4760 SL  4790

But EA opens 5 trades. 

1. The first trade was opened at 04:50:15 @4763.69

2. The second trade was opened at 04:50:24 @4761.94

3. The third trade was opened at 04:50:29 @4761.17

4. The fourth trade was opened at 04:52:38 @4763.75

5. The fifth trade was opened at 04:52:52 @4762.56

I have attached the log and snapshot files for your review. It seems that the EA does not currently support the functionality to open only ONE SINGLE TRADE per signal.

XAUUSD SELL 4775 TP 4760 SL  4790

Could you please add configurations to limit the maximum number of trades allowed per symbol for each signal account? I would like the EA to check if a trade let say for XAUUSD has already been opened in the signal account and, if so, to skip any subsequent trades.

Hopefully, you will resolve the issue quickly. Thank you. 

Hi,

I checked your screenshots and logs.

The extra trades are not random. They are being triggered by the channel’s follow-up messages such as:

  • 1TP HIT
  • 2TP HIT
  • 3TP HIT
  • and similar messages containing words like FIRE

So the issue is not that the EA cannot open only one trade — the issue is that these additional channel messages are also being parsed as trade signals.

To fix this:

  1. Add ignore words for those follow-up messages, for example:
    fire, 1tp hit, 2tp hit, 3tp hit

  1. Enable rejection of incomplete orders, so the EA ignores messages that do not contain a proper full signal.
    Please enable:
  • Reject orders without Stop Loss
  • Reject orders without Take Profit

This will help filter out those “profit update / celebration” messages that are not real entry signals.

Important

Your channel posts both:

  • the real entry signal
  • and then additional update messages about TP hits / pips profit

So the EA must be configured to ignore those update messages.

Please also review the instruction and descriptions of the settings(on product descrition have links) — it will help you understand which filters are responsible for this behavior.


Best regards,
Sergey

Дмитрий Станский  

Сергей, добрый день. Помогите, пожалуйста, разобраться с этим блоком.


Мне нужно, чтобы сделка открывалась в момент поступления сигнала по рыночной цене, с разницей от первой цены входа не более 100 пунктов. Все ли я верно делаю?

Дело в том, что сделка не открывается. 

А, если крайний параметр выставляю в положение "false", выставляется отложенный ордер.

Подскажите, пожалуйста, что не так делаю. Возможно, неверно понимаю логику работы копира?

File:
Sergey Batudayev  
Дмитрий Станский #:

Сергей, добрый день. Помогите, пожалуйста, разобраться с этим блоком.


Мне нужно, чтобы сделка открывалась в момент поступления сигнала по рыночной цене, с разницей от первой цены входа не более 100 пунктов. Все ли я верно делаю?

Дело в том, что сделка не открывается. 

А, если крайний параметр выставляю в положение "false", выставляется отложенный ордер.

Подскажите, пожалуйста, что не так делаю. Возможно, неверно понимаю логику работы копира?

Здравствуйте! 
Текст сигнала напишите. 
Дмитрий Станский  
Sergey Batudayev #:
Здравствуйте! 
Текст сигнала напишите. 
XAUUSD BUY 

ENTRY 4770.3-4766.3
SL 4760
TP 4780.3
TP 4785
TP 4793.3
Sergey Batudayev  
Дмитрий Станский #:
XAUUSD BUY 

ENTRY 4770.3-4766.3
SL 4760
TP 4780.3
TP 4785
TP 4793.3

удалите слово ENTRY из слов определения цены, тогда будет по рынку при учете что физически с такими параметрами сл и тп сделку можно открыть. 

sc404  
Hello programmer,
By the way, thanks to you for the detailed explanation of solving the issue I had before. Everything is working as you explained. 

Could you help me resolve the issue with the symbol? It is not the first time the EA has skipped the signal. The same message 
"Could not resolve signal symbol <emty>" . The symbol for both the broker and the signal provider is identical.(XAUUSD).  It does detect the correct the opening price. I attached the screenshot from telegram provider.
Thank you. 
Mark Genber Escartin  

Hi bro how are you now?

are you considering to add a partial close like this?

we can do a trigger by pips or rr 

Partial close that works by TP levels and not just via command in the signal...

please add partial close up to 6 bro the same with the TP you recently I added it was up to TP6 

I love it bro.. I hope you would consider adding this feature also in the next update... 

Take Care always bro! Thanks!


 
Mark Genber Escartin  

Hi bro why is the comment for TP doesnt have the number of the TP showing example
Example in the settings I would put Comment for the order = Coppy

The comments should show

Coppy_TP1
Coppy_TP2


Coppy_TP3
Coppy_TP4

Coppy_TP5 
Coppy_TP6 

The comments now is only showing Coppy in all TP1 up to TP6 thats not good bro that would confused us..
We dont know which of them are TP1 TP2 or any TP
I hope you will fix this bro...

Sergey Batudayev  
Mark Genber Escartin #:
I love it bro.. I hope you would consider adding this feature also in the next update...

You’ve already shared quite a lot of ideas and feature requests, and I’ve implemented many improvements based on user feedback.

However, I noticed that you haven’t left any review or support feedback for the product. It feels a bit like a one-sided interaction.

I always appreciate constructive suggestions, but feedback and support from users are also important for the development of the project.

Hope you understand.

Sergey Batudayev  
sc404 #:
Hello programmer,
By the way, thanks to you for the detailed explanation of solving the issue I had before. Everything is working as you explained. 

Could you help me resolve the issue with the symbol? It is not the first time the EA has skipped the signal. The same message 
"Could not resolve signal symbol <emty>" . The symbol for both the broker and the signal provider is identical.(XAUUSD).  It does detect the correct the opening price. I attached the screenshot from telegram provider.
Thank you. 

A screenshot isn't enough; I need detailed log files, and a screenshot of which log to look at.

The utility also has a feature for automatically detecting and substituting symbols by broker; check these windows.

If your signal name differs from the name used by your broker, they won't be able to find it. Check if the symbol you want to open a position for is available. Review these windows.


If the utility has signals that it cannot determine, they will be placed in the Review Unresolved column, and you can enter the corresponding symbol for this symbol at your broker and move it to the Mappings column.

Дмитрий Станский  
Sergey Batudayev #:

удалите слово ENTRY из слов определения цены, тогда будет по рынку при учете что физически с такими параметрами сл и тп сделку можно открыть. 

Да, так работает, благодарю! Но, как настроить, чтобы можно было войти в сделку по рынку только при условии, что цена в этот момент не дальше, чем, допустим, 50 пунктов от первой (второй) цены входа из сигнала. Иначе, без ориентира на цену из сигнала можно открыться в моменте на импульсе, например, в 100 (200 и более) пунктов
Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti