package entity const ( RatioTypeGlobalAccount = "global_account" RatioTypeTopTraderPosition = "top_trader_position" RatioTypeTopTraderAccount = "top_trader_account" ) type LongShortRatio struct { Source string `json:"source"` Symbol string `json:"symbol"` Period string `json:"period"` RatioType string `json:"ratioType"` Timestamp int64 `json:"timestamp"` LongShortRatio string `json:"longShortRatio"` LongValue string `json:"longValue,omitempty"` ShortValue string `json:"shortValue,omitempty"` }