[][src]Struct jqdata::GetMoneyFlow

pub struct GetMoneyFlow {
    pub code: String,
    pub date: String,
    pub end_date: String,
}

获取一只股票在一个时间段内的资金流向数据,仅包含股票数据,不可用于获取期货数据 参数: code: 股票代码 date: 开始日期 end_date: 结束日期 返回: date: 日期 sec_code: 股票代码 change_pct: 涨跌幅(%) net_amount_main: 主力净额(万): 主力净额 = 超大单净额 + 大单净额 net_pct_main: 主力净占比(%): 主力净占比 = 主力净额 / 成交额 net_amount_xl: 超大单净额(万): 超大单:大于等于50万股或者100万元的成交单 net_pct_xl: 超大单净占比(%): 超大单净占比 = 超大单净额 / 成交额 net_amount_l: 大单净额(万): 大单:大于等于10万股或者20万元且小于50万股或者100万元的成交单 net_pct_l: 大单净占比(%): 大单净占比 = 大单净额 / 成交额 net_amount_m: 中单净额(万): 中单:大于等于2万股或者4万元且小于10万股或者20万元的成交单 net_pct_m: 中单净占比(%): 中单净占比 = 中单净额 / 成交额 net_amount_s: 小单净额(万): 小单:小于2万股或者4万元的成交单 net_pct_s: 小单净占比(%): 小单净占比 = 小单净额 / 成交额

Fields

code: Stringdate: Stringend_date: String

Trait Implementations

impl BodyConsumer<Vec<MoneyFlow>> for GetMoneyFlow[src]

impl CsvListBodyConsumer for GetMoneyFlow[src]

type Output = MoneyFlow

impl Debug for GetMoneyFlow[src]

impl<'de> Deserialize<'de> for GetMoneyFlow[src]

impl HasMethod for GetMoneyFlow[src]

impl Serialize for GetMoneyFlow[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,