You can use autosession indicator.iardavan wrote: Mon Apr 07, 2025 1:40 am Hello and thank you in advance for your time
I've been searching a lot, but couldn't find what I need, and I'm a bit overwhelmed. I'd be super grateful for any help or suggestions.
1. MT5 version of KillZone indicator:
I’m looking for an indicator like KillZone but for MT5.
I spoke to the developer of the MT4 version, and he said he based it on these two indicators:
code/1643
code/7419
Unfortunately, I have no coding experience and would really appreciate if anyone could help create a similar version for MT5, or even point me to an existing solution.
Ideally, I’d like an indicator that can:
Draw session boxes based on custom time inputs
Extend the box to the right
Work cleanly in MT5
2. Other indicators I'm looking for:
SUPDEM Box with Button for MT5 (to show/hide supply/demand zones)
A ChartSync tool for MT5 (to sync timeframes/symbols across charts)
A Brilliant Session Levels style indicator for MT5 (that draws Open/Close lines for sessions)
If you know of any alternatives, that would be amazing.
Thank you again for your time and support.
XARD: Here is iSessions.mq5, you can manipulate the Data within the input menu.
71
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
72Hello iardavan,iardavan wrote: Mon Apr 07, 2025 7:21 am "Bro, I wrote my indicator with Grok and it blew my mind! Big respect to it, seriously. I just couldn’t get the on/off button to work properly. Also, one more question — why doesn’t the position sizer EA work on XARD charts?"
edit: found this but it is old version and it is indicator! post1295507710.html#p1295507710
Exploring MQL5 a bit, I really liked your challenge of taking a code that's already been done and exploring the button part.
What do you think?
Every entry into the market is a reflection of your courage. Every goal you overcome, however small it may seem, is a firm step towards your dreams.
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
73Hi Guys
just double checking something in xards initial post.
M5 Trading: H6 as roadmap, M5 as trigger. Create the roadmap and trigger that suits your needs.
Are we to use the H6 as the roadmap for the M5?
Thanks
XARD: I was just showing alternatives... Just now I use M15 roadmap and M3 Trigger
just double checking something in xards initial post.
M5 Trading: H6 as roadmap, M5 as trigger. Create the roadmap and trigger that suits your needs.
Are we to use the H6 as the roadmap for the M5?
Thanks
XARD: I was just showing alternatives... Just now I use M15 roadmap and M3 Trigger
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
74You know what?! Even the original creator wouldn't have thought how cool it would be to have a button for each range! It's awesome. Thanks for your help!Curioso wrote: Mon Apr 07, 2025 6:45 pm Hello iardavan,
Exploring MQL5 a bit, I really liked your challenge of taking a code that's already been done and exploring the button part.
What do you think?
Do you have any suggestions for a good and powerful position sizer EA or position manager EA for MT5? Thanks a lot!
When your strategy is based on hope, it's a HOPELESS strategy!
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
75Hello guys. GBPAUD trade. First entry is me and fomo. Second one much cleaner as the second Oracle higher time frame was also in agreement. Closed when yellow candles creeped in.
I've also attached the xard dash, incase there is someone with the same symbols. First image is what the dash would show on the forex pairs, second is what it shows on the indices.
XARD: Trading off the VWAP & Oracle: No Brainer
I've also attached the xard dash, incase there is someone with the same symbols. First image is what the dash would show on the forex pairs, second is what it shows on the indices.
XARD: Trading off the VWAP & Oracle: No Brainer
- These users thanked the author Abzak for the post (total 6):
- xard777, Cagliostro, iardavan, Ababai, eduarescobar, davidpont
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
76Here is the Dash2.mq5, anyone want to try their hand at recoloring the text (and background if need be).
Looking forward to you posting your updated version.
See the user color section...
Best,
Xard777
Looking forward to you posting your updated version.
See the user color section...
// User Colors Section
input string colorSection = "------ User Colors ------"; // Color customization section
input color userBackgroundColor = clrSnow; // Background color
input color userTitleColor = C'60,110,123'; // Title color
input color userPairColor = C'70,96,108'; // Pair and non-highlighted data color
input color userHighlightColor = clrDodgerBlue; // Highlight color for current symbol
input color userPriceUpColor = C'152,205,255'; // Price up color
input color userPriceDownColor = C'255,152,205'; // Price down color
input color userChangeUpColor = C'152,205,255'; // Change up color
input color userChangeDownColor = C'255,152,205'; // Change down color
input color userPercentUpColor = clrGreen; // Percent up color (triangle and text)
input color userPercentDownColor = clrCrimson; // Percent down color (triangle and text)
Best,
Xard777
- These users thanked the author xard777 for the post (total 5):
- ManilaSpurs, Abzak, Curioso, mazibee, eduarescobar
XARD: If Carlsberg made charts... Probably the best charts in the world
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
77Comparing the open lines of MT4 and MT5, same broker but different open line positions, anyone know why?
Also the clock of NY time, MT5 is one hour faster than MT4, and HK time is one hour slower than MT4.
XARD: Here is the clock indicator, I will look at the open line.
Also the clock of NY time, MT5 is one hour faster than MT4, and HK time is one hour slower than MT4.
XARD: Here is the clock indicator, I will look at the open line.
- These users thanked the author horizon202 for the post (total 3):
- Curioso, mazibee, eduarescobar
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
78RE Clock settings
I have added a user input menu to set the clock.
Here is the updated XU CLOCK.ex5 indicator.
Best,
Xard777
I have added a user input menu to set the clock.
Here is the updated XU CLOCK.ex5 indicator.
Best,
Xard777
Code: Select all
// Clock Time Zone Offsets
input string clockSection = "------ Clock Time Zone Offsets ------"; // Clock offset customization section
input int hkOffset = 5; // Hong Kong time offset (hours)
input int londonOffset = -2; // London time offset (hours)
input int nycOffset = -7; // NYC time offset (hours)
- These users thanked the author xard777 for the post (total 12):
- Jimmy, Cagliostro, WN25, horizon202, Abzak, thomdel, lukgoku, Curioso, Mundu19, Ababai, eduarescobar, davidpont
XARD: If Carlsberg made charts... Probably the best charts in the world
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
79Hello everyone,
I've become addicted to this new system with Anchored VWAP and Oracle!
I have a few issues I’d like to discuss:
1. Position Sizing / Capital Management EAs:
The money management experts I've previously worked with don’t function properly on XARD versions — both on MT4 and MT5.
On MT4, only Ultimate Trade Assistant worked correctly.
Right now, I need a Position Sizer EA (like the one from EarnForex), but again, it’s not working as expected. After refreshing, the menus disappear and turn blank/white.
Request:
Can someone suggest or provide a working Position Manager EA? I urgently need it!
2. Indicator Refresh Issues & Pip Size Display:
Some indicators need to be manually refreshed to display correct data (as shown in the screenshot I posted).
Also, abnormally large pip sizes are being shown on some symbols.
3. Indicator & UI Customization:
If possible, it would be great to change the colour scheme of indicators and certain menus, especially the X/Y coordinates.
4. A request for XARD:
Please consider porting the xu EMA Histo to MT5. That would be amazing.
Lastly, I want to share that over the past three days — with barely 7–8 hours of sleep — I developed some essential tools I really needed, spending sleepless nights experimenting and working with Grok.it might seem like nothing to many — especially compared to the amazing masters here.
Even to me, it feels like just a tiny drop in the ocean, honestly.
It was exhausting but incredibly rewarding.
I’m sharing these tools here in case they can help someone else.
This forum has been an incredible resource for me — especially thanks to XARD, Cagliostro Alkemix, and mrtools.
Much love and appreciation to all of you!
XARD: Awaiting different broker data to be available via Dash indicator so I can update the FusionPanel.
Plus, it's first edition MT5 created inside a two period, later editions will have updated improvements from user feedback.
I've become addicted to this new system with Anchored VWAP and Oracle!
I have a few issues I’d like to discuss:
1. Position Sizing / Capital Management EAs:
The money management experts I've previously worked with don’t function properly on XARD versions — both on MT4 and MT5.
On MT4, only Ultimate Trade Assistant worked correctly.
Right now, I need a Position Sizer EA (like the one from EarnForex), but again, it’s not working as expected. After refreshing, the menus disappear and turn blank/white.
Can someone suggest or provide a working Position Manager EA? I urgently need it!
2. Indicator Refresh Issues & Pip Size Display:
Some indicators need to be manually refreshed to display correct data (as shown in the screenshot I posted).
Also, abnormally large pip sizes are being shown on some symbols.
3. Indicator & UI Customization:
If possible, it would be great to change the colour scheme of indicators and certain menus, especially the X/Y coordinates.
4. A request for XARD:
Please consider porting the xu EMA Histo to MT5. That would be amazing.
Lastly, I want to share that over the past three days — with barely 7–8 hours of sleep — I developed some essential tools I really needed, spending sleepless nights experimenting and working with Grok.it might seem like nothing to many — especially compared to the amazing masters here.
Even to me, it feels like just a tiny drop in the ocean, honestly.
It was exhausting but incredibly rewarding.
I’m sharing these tools here in case they can help someone else.
This forum has been an incredible resource for me — especially thanks to XARD, Cagliostro Alkemix, and mrtools.
Much love and appreciation to all of you!
XARD: Awaiting different broker data to be available via Dash indicator so I can update the FusionPanel.
Plus, it's first edition MT5 created inside a two period, later editions will have updated improvements from user feedback.
- These users thanked the author iardavan for the post (total 6):
- ManilaSpurs, budhi1976, lukgoku, Curioso, mazibee, eduarescobar
When your strategy is based on hope, it's a HOPELESS strategy!
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
80Here is the XU EMA HISTO.ex5, it was completed ages ago but I felt that the Oracle by Cagliostro was a way better indicator to use (still do).iardavan wrote: Tue Apr 08, 2025 7:35 am Hello everyone,
I've become addicted to this new system with Anchored VWAP and Oracle!
A request for XARD:
Please consider porting the xu EMA Histo to MT5. That would be amazing.
[/color]
Also, it's about retail trading space on the chart, EMA HISTO took up too much space. Once the DASH2 color is sorted out, I will reduce the DASH2 by 20%.
Best,
Xard777
XARD: If Carlsberg made charts... Probably the best charts in the world