X-VWAP is repainting ! Any solution for this issue ?
1If you wish to attach one or more files enter the details below. You may also attach files by dragging and dropping them in the message box.
Solarwin the indi in yhe first wikdow repaint tooAbdulrhim246 wrote: Sat Jun 06, 2026 4:45 am If you wish to attach one or more files enter the details below. You may also attach files by dragging and dropping them in the message box.
Solar wind joy indicator doesn't repaint after testing more 100 times, it's not like fisher transform , you can use in many time frames at the same time.
if this indicator doesn't repaint, I don't understand why you have others indicators on the chart? BTW can you upload your NRP solar wind....Abdulrhim246 wrote: Sat Jun 06, 2026 3:36 pm Solar wind joy indicator doesn't repaint after testing more 100 times, it's not like fisher transform , you can use in many time frames at the same time.
Solar wind joy this version doesn't repaint but It's little lagging. when you use with X-VWAP , you only can get 40% of total of profit. I mean It's possible to change after X_VWAP changes the direction of trend . So you have to keep watching the chart.. I will post all indicators soon when I get solution and Fixing for the X-VWAP issue.kvak wrote: Sun Jun 07, 2026 2:54 am if this indicator doesn't repaint, I don't understand why you have others indicators on the chart? BTW can you upload your NRP solar wind....
Post your nrp solar wind so we could also test?Abdulrhim246 wrote: Sun Jun 07, 2026 3:55 pm Solar wind joy this version doesn't repaint but It's little lagging. when you use with X-VWAP , you only can get 40% of total of profit. I mean It's possible to change after X_VWAP changes the direction of trend . So you have to keep watching the chart.. I will post all indicators soon when I get solution and Fixing for the X-VWAP issue.
Just patiently waiting...........Abdulrhim246 wrote: Sun Jun 07, 2026 3:55 pm Solar wind joy this version doesn't repaint but It's little lagging. when you use with X-VWAP , you only can get 40% of total of profit. I mean It's possible to change after X_VWAP changes the direction of trend . So you have to keep watching the chart.. I will post all indicators soon when I get solution and Fixing for the X-VWAP issue.
You need to post the code, if you need help.Abdulrhim246 wrote: Sun Jun 07, 2026 4:23 pm I another version of X_VWAP , the issue is lagging as well
Yes, it is entirely possible to code a Non-Repainting (NRP) version of **Solar Wind Joy**, but there is a major catch that you need to be aware of before using it.Abdulrhim246 wrote: Sun Jun 07, 2026 3:55 pm Solar wind joy this version doesn't repaint but It's little lagging. when you use with X-VWAP , you only can get 40% of total of profit. I mean It's possible to change after X_VWAP changes the direction of trend . So you have to keep watching the chart.. I will post all indicators soon when I get solution and Fixing for the X-VWAP issue.
Code: Select all
```mql4
int start() {
int counted_bars = IndicatorCounted();
if(counted_bars < 0) return(-1);
if(counted_bars > 0) counted_bars--;
int limit = Bars - counted_bars;
// Non-repainting calculation loop (counting down from past to present)
for(int i = limit; i >= 0; i--) {
double MaxH = High[i];
double MinL = Low[i];
// Look back into historical data only (i + k), never into future data (i - k)
for(int k = 0; k < Period; k++) {
if(High[i + k] > MaxH) MaxH = High[i + k];
if(Low[i + k] < MinL) MinL = Low[i + k];
}
// Price normalization and Fisher Transform formulas follow strictly using past data...
}
return(0);
}
```