client-js icon indicating copy to clipboard operation
client-js copied to clipboard

`fmv` field missing on `UniversalSnapshotInfo`

Open jdconley opened this issue 10 months ago • 2 comments

The UniversalSnapshotInfo interface is missing the fmv field.

interface UniversalSnapshotInfo {
    market_status?: string;
    name?: string;
    ticker?: string;
    type?: string;
    session?: UniversalSnapshotSession;
    last_quote?: UniversalSnapshotLastQuote;
    last_trade?: UniversalSnapshotLastTrade;
    details?: UniversalSnapshotDetails;
    greeks?: UniversalSnapshotGreeks;
    implied_volatility?: number;
    open_interest?: number;
    underlying_asset?: UniversalSnapshotUnderlyingAsset;
    value?: number;
    break_even_price?: number;
}

It has a value field but I don't think that is used in the API. When I request data from the universalSnapshot endpoint the fmv is returned, but no value.

jdconley avatar Apr 12 '24 16:04 jdconley

missing fmv on all such cases

brotzky avatar Jun 27 '24 18:06 brotzky

Thanks, I'll take a look @brotzky.

justinpolygon avatar Jun 27 '24 18:06 justinpolygon