Комментарии могут оставлять пользователи, купившие или арендовавшие продукт
Cristian-bogdan Buzatu  
I got "Unsupported filling mode" error on XM, probably because it needs IOC order type. 
Choawana Malaikitsanachalee  
Cristian-bogdan Buzatu #:
I got "Unsupported filling mode" error on XM, probably because it needs IOC order type. 

Hello, thank you for reporting this issue.

The 'unsupported filling mode' error is not directly from the EA code. It's because your broker has a restriction on order placement, requiring the 'Immediate or Cancel (IOC)' order type.

I will prepare a code update to support this functionality. Users will be able to select 'IOC' as the 'Order Filling Mode' in the EA's Input Parameters. Alternatively, if no changes are made, the code will be set to use IOC by default in the next version.

Thank you for your valuable feedback.

Cristian-bogdan Buzatu  
Choawana Malaikitsanachalee #:

Hello, thank you for reporting this issue.

The 'unsupported filling mode' error is not directly from the EA code. It's because your broker has a restriction on order placement, requiring the 'Immediate or Cancel (IOC)' order type.

I will prepare a code update to support this functionality. Users will be able to select 'IOC' as the 'Order Filling Mode' in the EA's Input Parameters. Alternatively, if no changes are made, the code will be set to use IOC by default in the next version.

Thank you for your valuable feedback.

Still no trades with the new version...
Choawana Malaikitsanachalee  
Cristian-bogdan Buzatu #:
I got "Unsupported filling mode" error on XM, probably because it needs IOC order type. 

I have made a fix to the code related to the FillModeForSymbol() function. The function now automatically checks for and selects the appropriate filling mode for the broker. The priority is as follows:

  • IOC (Immediate or Cancel): If the CFG_USE_IOC setting is true and the broker supports it, the code will prioritize using the IOC mode.

  • FOK (Fill or Kill): If IOC is not supported, the code will check if FOK is available.

  • RETURN: If FOK is also not supported, the code will then check for RETURN.

I suggest you try using another broker. If you still encounter any issues, please feel free to let me know.

Choawana Malaikitsanachalee  
Choawana Malaikitsanachalee #:

Hello, thank you for reporting this issue.

The 'unsupported filling mode' error is not directly from the EA code. It's because your broker has a restriction on order placement, requiring the 'Immediate or Cancel (IOC)' order type.

I will prepare a code update to support this functionality. Users will be able to select 'IOC' as the 'Order Filling Mode' in the EA's Input Parameters. Alternatively, if no changes are made, the code will be set to use IOC by default in the next version.

Thank you for your valuable feedback.

I have tested the EA on XM, and it is working correctly
Choawana Malaikitsanachalee  

📌 ภาษาไทย 

ในเวอร์ชันถัดไป ผมกำลังพัฒนาระบบสำหรับการเก็บกำไรที่สามารถจัดการได้หลายออเดอร์พร้อมกัน โดยมุ่งเน้นให้เกิดการขาดทุนน้อยที่สุด และสามารถสร้างกำไรได้จากหลายออเดอร์อย่างมีประสิทธิภาพ หากชื่นชอบหรือเห็นว่ามีประโยชน์ รบกวนฝากคอมเมนต์หรือกดไลก์ให้ด้วยนะครับ


📌 English 

In the upcoming version, I am developing a profit-taking system capable of managing multiple orders simultaneously. The system is designed to minimize potential losses while efficiently securing profits across several positions. If you find this useful or interesting, I would greatly appreciate your comments or a like.

MikeBaranoff  
Добрый день. Какая логика по Фибоначи заложена в этом эксперте?Пока я не увидел логики входа в сделку на ретесте любой из зон Фибоначи. Буду очень благодарен за подробное объяснение алгоритма работы вашего робота. Логика Фибоначи очень привлекательна в построении экспертов.Хотелось бы чтобы ваш эксперт дал определенную прибыль. Спасибо.
Choawana Malaikitsanachalee  
MikeBaranoff #:
Добрый день. Какая логика по Фибоначи заложена в этом эксперте?Пока я не увидел логики входа в сделку на ретесте любой из зон Фибоначи. Буду очень благодарен за подробное объяснение алгоритма работы вашего робота. Логика Фибоначи очень привлекательна в построении экспертов.Хотелось бы чтобы ваш эксперт дал определенную прибыль. Спасибо.
The entry logic is primarily based on the "Fibonacci Window" which identifies the High and Low points within a specific lookback period to create a trading range. Here are the three main entry setups:

1. Retrace Entry (The 50% Rule)

Logic: The EA waits for the price to pull back (retrace) into the 38.2% – 61.8% zone of the Fibo range.

Execution: It enters a trade when the price crosses back over the 50.0% level (Middle Line). This ensures we are entering on a reversal after a correction.

2. Breakout Entry

Logic: The EA looks for a strong move out of the established range.

Execution: It enters a Buy when the price breaks above the 100% level or a Sell when it breaks below the 0% level.

3. Fibo 50% Cross Entry

Logic: A direct momentum play.

Execution: It enters when a candle closes on the opposite side of the 50% midline, signaling a shift in short-term sentiment.

Key Filters & Protections (Why it’s safe):
Trend Confirmation: The EA uses a 200 MA Filter to ensure we only trade in the direction of the long-term trend.

Momentum Check: The ADX Filter ensures the market has enough strength to move; it won't trade in a "dead" or sideways market.

Overbought/Oversold: The RSI Filter prevents entering a trade when the price is already stretched too far.

Smart Management: Includes Partial Take Profit (closing 50% of the position at 1:1 Risk/Reward) and Trailing Stop based on previous candle highs/lows to lock in profits.

Summary of SL/TP:
Stop Loss: Placed just outside the Fibo Box (below the low for Buy, above the high for Sell) for maximum protection.

Take Profit: Calculated based on a chosen Risk/Reward ratio (e.g., 1:2) or projected Fibo extension levels.
Комментарии могут оставлять пользователи, купившие или арендовавшие продукт