Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1672
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
XARD: If Carlsberg made charts... Probably the best charts in the world

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1673
xard777 wrote: Thu Feb 19, 2026 10:20 pm Update: XU_EFFECT_v3.12
Enjoy
Xard777
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

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1675
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?
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



Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1676
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
I´m setting the InpEnablePerformanceMode to false and the problem persist.
XARD: I am looking into it just now

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1677
Ok 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.

Re: 🔺 MT5 XARD - Simple Trend Following Trading System

1678
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?
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?