Skip to content

Commit

Permalink
docs(readme): add getSymbol example
Browse files Browse the repository at this point in the history
  • Loading branch information
vansergen committed Sep 21, 2020
1 parent dec0b5d commit abd569b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ const symbol = await client.getGroupNearestSymbol({ version, groupId });
const symbols = await client.getSymbols();
```

- [`getSymbol`](https://api-live.exante.eu/api-docs/#operation/getSymbol)

```typescript
const version = "3.0";
const symbolId = "AAPL.NASDAQ";
const symbol = await client.getSymbol({ version, symbolId });
```

- [`getLastQuote`](https://api-live.exante.eu/api-docs/#operation/getQuoteLast)

```typescript
Expand Down

0 comments on commit abd569b

Please sign in to comment.