Rossco8
Rossco8
## Question - Is cloud-sql-python-connector supported in a pypy runtime? I'm seeing regular errors (eg 90% of the time) when the 'Requesting ephemeral certificate' runs. ``` 2022-09-02T05:37:16.155338489ZTraceback (most recent call...
When using a v4 Local token, how do I validate the nonce when decoding? ``` my_key = secrets.token_bytes(32) my_nonce = secrets.token_bytes(32) data = json.dumps({"hello": "world"}) key = Key.new(version=4, purpose="local", key=my_key)...
There are 2 PVI indicators on TradingView. One calculates PVI using ```C pvi := na(pvi[1]) ? initial : (change(volume) > 0 ? pvi[1] * close / close[1] : pvi[1]) ```...
I'm having a look at the 3 tests that are failing. ```sh FAILED tests/test_indicator_momentum.py::test_ppo - AttributeError: 'DataFram... FAILED tests/test_indicator_overlap.py::test_mama - AttributeError: 'DataFram... FAILED tests/test_indicator_trend.py::test_adx - AttributeError: 'DataFrame' ... ``` Looks...
Hi, can you tell me which issues need to be complete for the next release to go out? There's heaps of improvements in the development branch I'd like to use.
Two updates in this PR to address the next slowest indicators. Also a proposed logic change to PSAR see below STC - All I was able to do was to...
Code performance tested with cProfile **WMA original performance** ``` 120451 function calls (120437 primitive calls) in 0.073 seconds Ordered by: internal time ncalls tottime percall cumtime percall filename:lineno(function) 5001 0.015...