Benny Neugebauer

Results 102 comments of Benny Neugebauer

@mrexox do you have a "recipe" on how to use the "rc" file option? I am using Windows and the Windows Subsystem for Linux. So my Git environment is inside...

The MIN_NOTIONAL issue got fixed with this PR: https://github.com/ViewBlock/binance-api-node/pull/609 @balthazar I think this issue here can be closed now?!

Thank you for the hint! I got it solved now using: ```ts const closeHandler = client.ws.candles('ETHBTC', '1m', candle => { console.log(candle); }); closeHandler({delay: 0, fastClose: true, keepClosed: true}); ```

@sobolevn are you aware of it?

I've also noticed the issue with `#legal5`. It might be better to just link to https://wire.com/legal/ instead, as this would be a more effective solution than the current one, which...

I also received [error TS7016](https://typescript.tv/errors/#TS7016) when trying to use **@master-chief/alpaca v6.3.20** in a TS project using ESM with `moduleResolution` set to `node16` and `module` set to `es2022`. Upgrading to **@master-chief/alpaca-ts...

@117 I also tried `"@master-chief/alpaca": "github:117/alpaca"`. It works when I set "skipLibCheck" to `true` in my TS config. Given that this library is currently the best solution for TS-ESM projects...

Hey @117, today I noticed that the `error` callback of `stream.ts` is typed wrongly: https://github.com/alpacahq/alpaca-ts/blob/d4a2b7bae909f8c4e4d80752940c1a9cd60e7617/src/stream.ts#L24 Instead of a `WebSocket.ErrorEvent` a custom error in the format of `{ T: 'error', code:...

I was also surprised that `stream.subscribe("bars")` only works for stocks as it uses this hardcoded URL: https://github.com/alpacahq/alpaca-ts/blob/d4a2b7bae909f8c4e4d80752940c1a9cd60e7617/src/endpoints.ts#L13 @117 is it possible to change the base URL to `wss://stream.data.alpaca.markets/v1beta3/crypto/us`?

@bennidi - Thanks for the info! I updated the `package.json` and `bower.json` file with a package name which doesn't use camelCase. But @jamesfoster still needs to merge my pull request....