Re: Fix: Indicator is not showing on MT4 chart

291
srinarayani13 wrote: Fri Dec 12, 2025 3:36 am Thank you Mr Tools, its a look a like, TeamViewer indicator is more accurate compare to Kumo cloud
Just be careful with the neo cloud because think this part

Code: Select all

         double tenkan = (iHighest(NULL,0,MODE_HIGH,9,i-4) + iLowest(NULL,0,MODE_LOW,9,i-4))/2;
         double kijun  = (iHighest(NULL,0,MODE_HIGH,26,i-13) + iLowest(NULL,0,MODE_LOW,26,i-13))/2;
         double spanA  = (tenkan + kijun)/2;
         double spanB  = (iHighest(NULL,0,MODE_HIGH,52,i-26) + iLowest(NULL,0,MODE_LOW,52,i-26))/2;
makes it a repainter.