I've the same problem with my G-MASTER GB2888UHSU-B1 in HDMI 2.0 set to 3840 x 2160 @60Hz, my cable is HDMI 1.4, couldn't find a flat one in 2.0.
Anyways when the screen shuts down for any reason and enters power saving mode (the LED indicator switches from blue to orange) it doesn't wake up again unless I set it temporarily at 3840 x 2160 @30Hz then back to 3840 x 2160 @60Hz.
I do it using dc64cmd (12noon's Display Changer) with two batch files (one to disconnect the screen, another one to reconnect it). Download dc64cmd, add it to windows path variable and use this in a batch file.
To disconnect the monitor:
dc64cmd -monitor="\\.\DISPLAY2" -detach
To reconnect it:
REM First wake it up by setting the refresh rate at 30Hz
dc64cmd -monitor="\\.\DISPLAY2" -secondary -width=3840 -height=2160 -depth=32 -refresh=30 -fixedoutput=default
timeout /t 1 /nobreak > NUL REM Pause for a second
REM set it up again but this time it's awake so put the max rate, 60Hz in my case
dc64cmd -monitor="\\.\DISPLAY2" -secondary -width=3840 -height=2160 -depth=32 -refresh=max -fixedoutput=default
timeout /t 1 /nobreak > NUL REM Pause for a second again
REM move the monitor to the left of the main one and position it so the bottoms are aligned, then "apply" to make sure everything is set.
dc64cmd -monitor="\\.\DISPLAY2" -left
dc64cmd -monitor="\\.\DISPLAY2" -ty=-1080 -apply
I'm going to try to find a 2.0 cable though, I hope it'll fix this because even with my batch files it's still a pain in the eema.