Comparing version 1.4.5 to 1.4.6
{ | ||
"name": "taapi", | ||
"version": "1.4.5", | ||
"version": "1.4.6", | ||
"description": "A wrapper and a client for the TAAPI.IO API", | ||
@@ -5,0 +5,0 @@ "main": "./dist/cjs/index.js", |
@@ -104,4 +104,24 @@ # TAAPI.IO | ||
For Stocks & Forex examples, please visit out main documentation. | ||
### Discover Symbols | ||
```javascript | ||
// Import taapi | ||
import Taapi from 'taapi'; // See out main docs for Common JS usage | ||
// Setup client with authentication | ||
const taapi = new Taapi("<MY_SECRET>"); | ||
// Get all USDT pairs traded on Binance | ||
taapi.getExchangeSymbols("crypto", "binance", "USDT").then( symbols => { | ||
console.log(symbols); | ||
}); | ||
``` | ||
For more examples including Stocks & Forex, please visit our main documentation. | ||
#### v1.4.0 Breaking Updates | ||
As of version 1.4.0 of this NPM package is completely rewritten in TypeScript. It does not use CCXT anymore as the data-source, but TAAPI.IO's inhouse data source. To keep using the legacy CCXT client, please see the: taapi-ccxt package. Alternatively install this package version 1.3.1 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20368
127