lbilli

Results 26 comments of lbilli

Certainly not a big deal and mostly about aesthetics, yet it took me a double take to the header to make sure no unexpected conversion had happened behind the scenes....

Instead of hardcoding either one, I was wondering if it has been considered to put some of these settings in some global variable that users can easily customize to their...

I'm having a similar problem with dt master. I'm not sure when it started happening (maybe few weeks ago) but now I can't go past few clicks before dt crashes...

An update: I haven't experienced any of these crashes in a while and the repro above works fine now. Not sure what did it, but since maybe around the 4.0...

I get just a warning, but similar issue: ```julia (@v1.10) pkg> up ┌ Warning: could not download https://pkg.julialang.org/registries │ exception = RequestError: Error reading ca cert file /etc/ssl/certs/ca-certificates.crt - mbedTLS:...

OS is openSUSE tumbleweed with R 4.2.1 As far as I can tell, the error happens right after the first batch of 6 connections are established. Here's a repro: ```r...

The issue got recently resolved somehow.

Here's a very quick idea on how to keep historical dataframes up to date. For semplicity, I'll store them in a `list` indexed the same way as `tickers` to make...

It's difficult to say from here. But as `dflist` is initialized as an empty list, you'd get that error if you try to access its elements, _e.g._ `dflist[[1]]` before any...

As per [IB API documentation](https://interactivebrokers.github.io/tws-api/order_submission.html), each **new** `Order` needs a unique `orderId` that is greater than any previous `Order`. The `orderId` can be reused to modify **existing** orders. Upon connection,...