Skip to content

Commit

Permalink
Update security details docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
bm64 committed Dec 9, 2024
1 parent aa4ae55 commit 53c059c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/connectors/morningstar/security-details.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,31 @@ Supported id-types are: `CUSIP`, `FundCode`, `ISIN`, `MSID`, `PerformanceId`, `S

If any securities are invalid, the connector will still yield results. The invalid securities will appear in the connector's `metadata` after load.

#### Security Details Types

You can specify the type of data to retrieve by using the `type` option in the connector. The following types are available:

- **TrailingPerformance** (default)
- **AssetAllocations**
- **RegionalExposure**
- **GlobalStockSectorBreakdown**
- **CountryExposure**

Example usage:

```js
const securityDetailsConnector = new HighchartsConnectors.Morningstar.SecurityDetailsConnector({
postman: {
environmentJSON: postmanJSON
},
security: {
id: 'F0GBR050DD',
idType: 'MSID'
},
type: 'AssetAllocations' // Specify the type of data to retrieve
});
```

For more details, see [Morningstar’s Security Details API].

### Security Details with Morningstar standalone for Highcharts:
Expand Down

0 comments on commit 53c059c

Please sign in to comment.