Robin Hansson

Results 4 comments of Robin Hansson

> How did you import your backtesting candles? From Poloniex trades manually? Do they have correct timestamps in MongoDB? In most cases it's a timestamp issue. If not a bug...

Check your import ```apollo-link-persisted-queries```. It should be ```@apollo/link-persisted-queries``` Then you can concat the Link or use from() ```js import { HttpLink, from } from '@apollo/client'; import { createPersistedQueryLink } from...

Connecting with a user having "Authentication Type" set to Standard worked for me. I guess you need to provide a path to SSL certs if you try to connect using...

There is some progress [here](https://github.com/swc-project/swc-node/pull/643) Until it's merged you can compile SWC on the fly using [ts-node](https://typestrong.org/ts-node/docs/swc) ```sh node node_modules/ts-node/dist/bin.js --experimental-specifier-resolution=node --esm --swc ./index.ts ``` [SWC+ESM project example](https://github.com/rabinage/starters/tree/main/node-module-swc-esm-ts)