Justin Walker
Justin Walker
Yes, I checked the bucket is there and the .serverless folder with the vendor.zip is present. It's intermittent, so I'm not sure what is causing it. The function runs as...
Also, getting this error as well. ``` ERROR: Uncaught Exception: Error while calling the Lambda runtime API: The requested URL returned error: 403 in /tmp/vendor/bref/bref/src/Runtime/LambdaRuntime.php:291 Stack trace: #0 /tmp/vendor/bref/bref/src/Runtime/LambdaRuntime.php(223): Bref\Runtime\LambdaRuntime->postJson()...
Sorry this project has a quick turnaround requirement so I decided to build my own custom runtime.
What is the status of this? This makes the code unusable. Is there a workaround? This is quite an old request, so I'm a bit surprised this hasn't been fixed....
Will try thanks
The new api version returns an additional column 'vwap' in the `historic_agg_v2` call. Add the following just under the call ``` if 'vwap' in minute_history[symbol]: minute_history[symbol].drop('vwap', axis=1, inplace=True) ```
Not sure, the script waits for until 15 minutes after market to open then gathers symbols to watch. Buying mode takes place for the first hour of execution, then it...
The error is telling you that the data being added to a dataFrame does have the same columns. You can place a print statement during iterations to find the issue....