Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1942
I Asked GROK to fix the (well known) z-order problem with XU_PANELS on reload (dating for ages) .
Template Reload looks ok for now.

Add to the beginning of OnInit() (just after chartID = ChartID();) :

Code: Select all

// === COMPLETE CLEANING AT EACH INITIAL USE ===
ObjectsDeleteAll(chartID, ID1);
ObjectsDeleteAll(chartID, ID2);
And in OnDeinit, you can even remove the condition and still perform the delete operation (it's safer):

Code: Select all

void OnDeinit(const int reason)
{
   ObjectsDeleteAll(chartID, ID1);
   ObjectsDeleteAll(chartID, ID2);
   EventKillTimer();
   Comment("");
   ...
}
Video games are like merguez sausages; it's better not to know how they're made so you can continue to enjoy them.

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1944
VIP11872213 wrote: Tue Apr 21, 2026 8:17 pm It has an editing issue and cannot be refreshed in the navigation
It's hard for me to say why you're having issues. It compiles without any problems on my MT5, but it's a beta version. If you encounter any errors, try uploading it to an AI like claude and fixing them.Besides, time-based semaphores don't really make that much of a difference, in my opinion.

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1946
Good morning. Anyway, trading isn't easy; those who do it make it seem like it is. I still don't really get it. When you think it's time to buy, you follow the arrows on the higher time frames, then switch to the lower time frame and see the buy arrow, but suddenly it turns into a sell signal... and you wonder, “Did I get it wrong again?” Maybe I should have followed the square with the arrow, and you keep repeating this to yourself every day. Thank goodness I’ve only been doing demos for the last three months—only an expert advisor could save me. Unfortunately, I have to keep going to take care of my mother, and I can’t look for work outside the home because she needs me here. But I’ll keep at it; sooner or later, I’ll have to figure it out. Good luck to everyone. Please forgive my morning musings, but since I spend all day here with you, I have no one else to vent to.
These users thanked the author Lenovo for the post (total 5):
ramsdac, KeyF1, Danielsam, fnz, GoldenBrett90

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1947
Lenovo wrote: Thu Apr 23, 2026 5:03 pm Good morning. Anyway, trading isn't easy; those who do it make it seem like it is. I still don't really get it. When you think it's time to buy, you follow the arrows on the higher time frames, then switch to the lower time frame and see the buy arrow, but suddenly it turns into a sell signal... and you wonder, “Did I get it wrong again?” Maybe I should have followed the square with the arrow, and you keep repeating this to yourself every day. Thank goodness I’ve only been doing demos for the last three months—only an expert advisor could save me. Unfortunately, I have to keep going to take care of my mother, and I can’t look for work outside the home because she needs me here. But I’ll keep at it; sooner or later, I’ll have to figure it out. Good luck to everyone. Please forgive my morning musings, but since I spend all day here with you, I have no one else to vent to.
try watching M15/M4/M1 regularly, looking for subtrend alignment, it should help you (a dot appearing in lower TF should also appear on upper TF to be considered as valid).
These users thanked the author SOLESHOE for the post:
Lenovo
Video games are like merguez sausages; it's better not to know how they're made so you can continue to enjoy them.

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1948
Lenovo wrote: Thu Apr 23, 2026 5:03 pm only an expert advisor could save me.
I wouldn't count on it ever being developed—it's a purely discretionary system. You can't translate it into an EA, and even if you could on higher timeframes, the results would likely disappoint you. Trend-following systems have a win rate of 33%. Believe me, it’s hard to withstand that many consecutive losses. Xard has good intentions, but what’s simple for him is unattainable for most people, and I don’t think any new version of the system will change that.

You can’t translate the way he looks at the chart to another person, and even spending hundreds of hours in front of the chart might not change much here—how he assesses which entries to take and which to skip, and when to exit from a position is what makes the system work for him. If it were that easy to translate it into an EA, it would have been created long ago.
These users thanked the author Vetis for the post (total 6):
Lenovo, ramsdac, KeyF1, anubis19, TCT_bx, fnz

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1949
Update: XU v049-MT5-Setup (Vault-Ready)

Here is the latest Xard Universe trading setup for MT5.

For this version, I’ve focused on keeping everything clean, simple, and highly intuitive. I have integrated the new PANEL layout originally introduced by member Horizon202 in their EFFECT mq4 indicator—special thanks to them for the design improvement.

This is intended to be a definitive, standalone trading package. It is fully optimized for use with HomeLAB v4 and is pre-configured for the HomeLAB v4.5 ecosystem launching soon.

As usual the Xard Universe is now Open -- Full source files included -- Pay It Forward - It's how we grow.

I hope you all make a boatload of Pip$!

Enjoy,
Xard777
XARD: If Carlsberg made charts... Probably the best charts in the world

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1950
xard777 wrote: Fri Apr 24, 2026 2:32 am Update: XU v049-MT5-Setup (Vault-Ready)

Here is the latest Xard Universe trading setup for MT5.

For this version, I’ve focused on keeping everything clean, simple, and highly intuitive. I have integrated the new PANEL layout originally introduced by member Horizon202 in their EFFECT mq4 indicator—special thanks to them for the design improvement.

This is intended to be a definitive, standalone trading package. It is fully optimized for use with HomeLAB v4 and is pre-configured for the HomeLAB v4.5 ecosystem launching soon.

As usual the Xard Universe is now Open -- Full source files included -- Pay It Forward - It's how we grow.

I hope you all make a boatload of Pip$!

Enjoy,
Xard777
Hi XARD. There's an error in all the indicators. It looks like you won't be supporting X64 anymore

2026.04.24 11:00:51.415 Custom Indicator loading of XU SEMAPHORE-X (GBPUSDrfd,M1) from C:\Users\Подошва\Desktop\MT5_21-03\MQL5\Indicators\XU v049\XU SEMAPHORE-X.ex5 failed [568]
2026.04.24 11:00:52.196 MQL5 your CPU architecture does not allow to run the file 'XU SESSIONS BT.ex5': AVX2 required, you have X64 only
These users thanked the author ramsdac for the post (total 2):
xard777, BBurroughs