Ilan Kalendarov
Ilan Kalendarov
Hey! Can you give me your OS version and frida version? Additionally try to reset the desired process because of artifacts from the last hook that may appear.
This is weird, I couldn't reproduce your error in any way. Can you try to run as local admin and see if it will work that way ?
No, It should work. Did you run the latest version? Also hooking the UAC window works for when you open a program as a different user
Hey, please look into the readme table. Currently I have problems with hooking the UAC prompt.
> Looks like you need to run your for loop for removing the primitives before `ax.reset()`. if I inspect self.ax.items before the reset I do see some finplot object but...
I do it like so: ```python for item in self.ax.items: if isinstance(item, fplt.FinLine) or isinstance(item, fplt.FinPolyLine): fplt.remove_primitive(item) ``` And still get the same results
> Did you try [3c0f3c6](https://github.com/highfestiva/finplot/commit/3c0f3c63ac46654299ec3e5a40eaa92d4a649990)? Please send me a minimal piece of code that I can use to reproduce the issue. I don't get what you meant by this because...
> I need a complete, minimal example of your problem, including the data required to run it. Otherwise I can't help, sorry. Sorry but the code is kind of complex...
Thanks it worked!
Also, I have this code that creates labels but for some reason it wont show on the live candles it messes things up ```python def add_hh_ll_hl_lh_labels(self): # Create new charts,...