Hello Lenovo, you can search for this indicator directly in the Marketplace. It’s free, and you can adjust the size, position, time period, font, etc.Lenovo wrote: Thu Feb 19, 2026 8:28 pm Hello tech-savvy friends, could you add a
countdown where I have circled in red? It would be useful, because due to the size of my monitor, I can't keep the right-hand panel visible.
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1672Hi Lenovo,
I thought you ordered up a new pc plus new monitor which will no doubt solve all your display problems when it arrives.
I too ordered up a new TCL 65" 4K TV just two weeks ago and it runs a treat on all my indicators.
I paid £400 for it here in the UK which is roughly about 25% dearer than anywhere else on the planet.
Best,
Xard777
I thought you ordered up a new pc plus new monitor which will no doubt solve all your display problems when it arrives.
I too ordered up a new TCL 65" 4K TV just two weeks ago and it runs a treat on all my indicators.
I paid £400 for it here in the UK which is roughly about 25% dearer than anywhere else on the planet.
Best,
Xard777
- Rating: 0.6%
XARD: If Carlsberg made charts... Probably the best charts in the world
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1673Hi Xard777, i hope you are well.
Just to report.
The latest version is causing the old problem of not displaying the candles correctly. I need to right‑click and refresh the chart for the candles to appear.
Regards
XARD: So you add the v3.12 indicator to the chart and there are no visible candles until you update the chart -- YES?
It could be the "Hyper Elite" Throttling Logic -- try setting the InpEnablePerformanceMode to false temporarily to see if the candles appear. If they do, you can then turn it back on. In the meantime, I will look at a fix
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1674Xard feel free to delete my posts with "fixes" they are only for evaluating the code. Your home lab is definitely more capable and you know what effect you want to achieve
Edit:
For me version 3.12 works without problems on beta build 5574
XARD: It has been working fine for me too but I have been moving stuff around so some parts of the code can be forgotten or missed out
Edit:
For me version 3.12 works without problems on beta build 5574
XARD: It has been working fine for me too but I have been moving stuff around so some parts of the code can be forgotten or missed out
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1675When I add the indicator XU_EFFECT_v3.12, everything seems fine at first, but on the next candle it stops being displayed. I know it’s there because the price line is moving, but the candle doesn’t appear until I refresh the chart. Once the current candle closes and a new one begins, the problem happens again.RollerAndTrading wrote: Fri Feb 20, 2026 12:40 am Hi Xard777, i hope you are well.
Just to report.
The latest version is causing the old problem of not displaying the candles correctly. I need to right‑click and refresh the chart for the candles to appear.
Regards
XARD: So you add the v3.12 indicator to the chart and there are no visible candles until you update the chart -- YES?
XARD: So you add the v3.12 indicator to the chart and there are no visible candles until you update the chart -- YES?
It could be the "Hyper Elite" Throttling Logic -- try setting the InpEnablePerformanceMode to false temporarily to see if the candles appear. If they do, you can then turn it back on. In the meantime, I will look at a fix
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1676I´m setting the InpEnablePerformanceMode to false and the problem persist.RollerAndTrading wrote: Fri Feb 20, 2026 12:57 am When I add the indicator XU_EFFECT_v3.12, everything seems fine at first, but on the next candle it stops being displayed. I know it’s there because the price line is moving, but the candle doesn’t appear until I refresh the chart. Once the current candle closes and a new one begins, the problem happens again.
XARD: So you add the v3.12 indicator to the chart and there are no visible candles until you update the chart -- YES?
It could be the "Hyper Elite" Throttling Logic -- try setting the InpEnablePerformanceMode to false temporarily to see if the candles appear. If they do, you can then turn it back on. In the meantime, I will look at a fix
Captura de pantalla 2026-02-19 110053.png
XARD: I am looking into it just now
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1677Ok i can see it now on forming candle
Before
After Ok i changed this code and it looks like it works .
Disabled Aggressive Throttling (lines ~2537-2545): I commented out the code block that was completely skipping calculations on ticks when the HUD timer was enabled. This allows OnCalculate to run on every tick, ensuring the candle updates in real-time.
cpp
/* v3.12 FIX: Removed aggressive throttling to allow candle updates
if(InpEnableTimerHUDThrottle && prev_calculated > 0 && !isNewBar) {
// ... (code that skips calculations)
return(rates_total);
}
*/
Forced RSI Update for Current Candle (line ~2763): I added the condition || i == rates_total - 1 to ensure RSI (and consequently the ternary logic) is recalculated for the current bar on every tick, not just when a new bar appears.
cpp
// Old line:
// if(gRSITernaryActive && gHandleRSI.IsValid() && (isNewBar || prev_calculated == 0)) {
// New line:
if(gRSITernaryActive && gHandleRSI.IsValid() && (isNewBar || prev_calculated == 0 || i == rates_total - 1)) {
// ...
}
These changes ensure the indicator reacts to current price changes (candle color, signals) instantly instead of waiting for the candle to close, while maintaining optimization for historical data.
Before
After Ok i changed this code and it looks like it works .
Disabled Aggressive Throttling (lines ~2537-2545): I commented out the code block that was completely skipping calculations on ticks when the HUD timer was enabled. This allows OnCalculate to run on every tick, ensuring the candle updates in real-time.
cpp
/* v3.12 FIX: Removed aggressive throttling to allow candle updates
if(InpEnableTimerHUDThrottle && prev_calculated > 0 && !isNewBar) {
// ... (code that skips calculations)
return(rates_total);
}
*/
Forced RSI Update for Current Candle (line ~2763): I added the condition || i == rates_total - 1 to ensure RSI (and consequently the ternary logic) is recalculated for the current bar on every tick, not just when a new bar appears.
cpp
// Old line:
// if(gRSITernaryActive && gHandleRSI.IsValid() && (isNewBar || prev_calculated == 0)) {
// New line:
if(gRSITernaryActive && gHandleRSI.IsValid() && (isNewBar || prev_calculated == 0 || i == rates_total - 1)) {
// ...
}
These changes ensure the indicator reacts to current price changes (candle color, signals) instantly instead of waiting for the candle to close, while maintaining optimization for historical data.
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1678RollerAndTrading wrote: Fri Feb 20, 2026 12:40 am Hi Xard777, i hope you are well.
Just to report.
The latest version is causing the old problem of not displaying the candles correctly. I need to right‑click and refresh the chart for the candles to appear.
Regards
XARD: So you add the v3.12 indicator to the chart and there are no visible candles until you update the chart -- YES?
It could be the "Hyper Elite" Throttling Logic -- try setting the InpEnablePerformanceMode to false temporarily to see if the candles appear. If they do, you can then turn it back on. In the meantime, I will look at a fix
Was there no alarm?
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1679Am I being too sentimental if I tell you that I love you all regardless of trading? 
- Rating: 0.6%
Re: 🔺 MT5 XARD - Simple Trend Following Trading System
1680Yes, I bought a Mac mini m4, but I haven't set it up yet. I wanted to keep the monitors I already have: I have a 36-inch, a 42-inch, and another 27-inch, plus some smaller 22-inch ones that my mom used to use, but I don't use them anymore.xard777 wrote: Fri Feb 20, 2026 12:03 am Hi Lenovo,
I thought you ordered up a new pc plus new monitor which will no doubt solve all your display problems when it arrives.
I too ordered up a new TCL 65" 4K TV just two weeks ago and it runs a treat on all my indicators.
I paid £400 for it here in the UK which is roughly about 25% dearer than anywhere else on the planet.
Best,
Xard777