-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Security Details Portfolios data #55
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests are failing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing:
- docs update (how to use it)
- tests ?
- API changes?
- at least one demo/sample
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+tests are failing
security: { | ||
id: 'F0GBR050DD', | ||
idType: 'MSID' | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to specify type
? Here in all other tests? Why the tests pass without it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id: 'F0GBR050DD', | ||
idType: 'MSID' | ||
}, | ||
type: 'AssetAllocations' // Specify the type of data to retrieve |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong API option
id: securityId, | ||
idType: 'ISIN' | ||
}, | ||
type: 'AssetAllocations' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong API option, demo doesn't work
for (file of htmlInputFile.files) { | ||
try { | ||
fileJSON = JSON.parse(await file.text()); | ||
if (HighchartsConnectors.Morningstar.isPostmanEnvironmentJSON(fileJSON)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong path. Should be HighchartsConnectors.Morningstar.Shared.isPostmanEnvironmentJSON
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Add portfolios data converters to security details connector.