shrimpy-node
shrimpy-node copied to clipboard
Shrimpy’s Developer Trading API is a unified way to integrating trading functionality across every major exchange. Collect historical market data, access real-time websockets, execute advanced trading...
the following call will not return any candles after 2021-08-05T07:00:00.000Z ``` const Shrimpy = require('shrimpy-node'); const client = new Shrimpy.ShrimpyApiClient(publicKey, privateKey); const candles = await client.getCandles( 'binance', // exchange 'BTC',...
Hey guys. I've just tried to use the `ShrimpyWsClient` to use the Shrimpy WS feature. Order Book/BBO also seems to work without any issues. Now to my point, if you...
Bumps [ws](https://github.com/websockets/ws) from 7.1.1 to 7.4.6. Release notes Sourced from ws's releases. 7.4.6 Bug fixes Fixed a ReDoS vulnerability (00c425ec). A specially crafted value of the Sec-Websocket-Protocol header could be...
Would be really nice to get this work on Cloudflare Workers. The Worker env is a bit more restrictive than a full Node env. (runs in a v8 isolate) but...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
```` const publicKey = process.env.PUB_KEY; const privateKey = process.env.PRIVATE_KEY; const client = new Shrimpy.ShrimpyApiClient(publicKey, privateKey); async function some() { try { const users = await client.getUsers(); console.log(users); const response =...
Hi all is there any code example so I can achieve to embed this in an ng project (ionic)? I have tried adding node types in my tsconfig or different...
Bumps [request](https://github.com/request/request) from 2.34.0 to 2.88.2. Changelog Sourced from request's changelog. Change Log v2.88.0 (2018/08/10) #2996 fix(uuid): import versioned uuid (@kwonoj) #2994 Update to oauth-sign 0.9.0 (@dlecocq) #2993 Fix header...
Hi guys, A code sample in JS for how to connect to the Websocket using ShrimpyWsClient would be useful. I am running the following code without success: ``` let errorHandler...
Note: async functions should return pure call, not await (for .catch()).