client-js
client-js copied to clipboard
`fmv` field missing on `UniversalSnapshotInfo`
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
.
missing fmv
on all such cases
Thanks, I'll take a look @brotzky.