It may or may not have TWRP. You are getting static because an engineering bootloader had to be used to root your phone.
Easy way to tell is to boot into recovery, and then plug your phone into you PC and run adb devices. If you have TWRP, then it will show your device id and the fact that it is in recovery, like so:
Code:
adb devices
LGUS996cee1f168 recovery
Either way, TWRP isn't much good if you can't see the screen, so you need to flash a version that has a kernel for your phone:
link
Download that, and flash it from fastboot:
* adb reboot bootloader (or with the phone off, hold vol DOWN and plug in the USB cable)
* fastboot flash recovery twrp-3.0.2-1-us996.img
* fastboot reboot
You should then have a TWRP that you can use.
-- Brian