You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
817 lines
108 KiB
817 lines
108 KiB
研究因子名称
|
|
基金季报超预期一致动量
|
|
假设
|
|
基金经理的管理能力不仅体现在其历史业绩的持续性上,更反映在对上市公司未来盈利的预判和先导性布局上。当一只基金在季度报告中,其重仓股组合的整体未来盈利预期(如下季度一致预期EPS的调整幅度)显著优于市场平均水平时,这表明该基金经理的选股能力获得了专业卖方分析师的即时验证,其持仓组合蕴含着未被市场完全定价的积极信息。这种基于机构专业判断形成的“超预期共识”将产生持续的动量效应,因为信息的消化和资金的跟进需要时间,使得具备该特征的基金在未来一段时间内有望继续跑赢。
|
|
实施方案
|
|
在每季度基金报告(季报/年报)披露后,提取其公布的前十大重仓股及其持仓权重。对于每只重仓股,计算其在基金报告截止日之后(如下一月)的卖方一致预期EPS(未来12个月)的月度环比调整百分比。然后,以持仓市值为权重,加权计算该基金重仓股组合的整体预期调整幅度。将此加权调整幅度与全市场所有股票的平均预期调整幅度(或基准指数成分股的平均值)进行比较,得到“超预期幅度”因子值。最终,根据该因子值对所有基金进行排序,构建多空组合或用于截面收益预测。
|
|
|
|
*=========================================================================================*
|
|
输出格式:
|
|
输出必须是且仅是纯文本。
|
|
每一行是一个完整、独立、语法正确的WebSim表达式。
|
|
严禁任何形式的解释、编号、标点包裹(如引号)、Markdown格式或额外文本。
|
|
===================== !!! 重点(输出方式) !!! =====================
|
|
现在,请严格遵守以上所有规则,开始生成可立即在WebSim中运行的复合因子表达式。
|
|
不要自行假设, 你需要用到的操作符 和 数据集, 必须从我提供给你的里面查找, 并严格按照里面的使用方法进行组合
|
|
**输出格式**(一行一个表达式, 每个表达式中间需要添加一个空行, 只要表达式本身, 不需要赋值, 不要解释, 不需要序号, 也不要输出多余的东西):
|
|
表达式
|
|
表达式
|
|
表达式
|
|
...
|
|
表达式
|
|
=================================================================
|
|
重申:请确保所有表达式都使用WorldQuant WebSim平台函数,不要使用pandas、numpy或其他Python库函数。输出必须是一行有效的WQ表达式。
|
|
以下是我的账号有权限使用的操作符, 请严格按照操作符, 以及我提供的数据集, 进行生成,组合 50 个 alpha:
|
|
不要自行假设, 你需要用到的操作符 和 数据集, 必须从我提供给你的里面查找, 并严格按照里面的使用方法进行组合
|
|
!! 数据集使用要求尽量分散, 不要重复使用
|
|
!! 数据集使用要求尽量分散, 不要重复使用
|
|
=================================================================
|
|
**操作符汇总
|
|
**算术运算符 (Arithmetic):
|
|
abs(x) - 绝对值
|
|
add(x, y, filter=false) - 加法 (x + y)
|
|
densify(x) - 分组字段稠密化
|
|
divide(x, y) - 除法 (x / y)
|
|
inverse(x) - 倒数 (1/x)
|
|
log(x) - 自然对数
|
|
max(x, y, ..) - 最大值
|
|
min(x, y, ..) - 最小值
|
|
multiply(x, y, filter=false) - 乘法 (x * y)
|
|
power(x, y) - 幂运算 (x^y)
|
|
reverse(x) - 取反 (-x)
|
|
sign(x) - 符号函数
|
|
signed_power(x, y) - 保留符号的幂运算
|
|
sqrt(x) - 平方根
|
|
subtract(x, y, filter=false) - 减法 (x - y)
|
|
to_nan(x, value=0, reverse=false) - 值与NaN转换
|
|
**逻辑运算符 (Logical):
|
|
and(input1, input2) - 逻辑与
|
|
if_else(input1, input2, input3) - 条件判断
|
|
input1 < input2 - 小于比较
|
|
input1 <= input2 - 小于等于
|
|
input1 == input2 - 等于比较
|
|
input1 > input2 - 大于比较
|
|
input1 >= input2 - 大于等于
|
|
input1 != input2 - 不等于
|
|
is_nan(input) - 是否为NaN
|
|
not(x) - 逻辑非
|
|
or(input1, input2) - 逻辑或
|
|
**时间序列运算符 (Time Series):
|
|
days_from_last_change(x) - 上次变化天数
|
|
hump(x, hump=0.01) - 限制变化幅度
|
|
jump_decay(x, d, sensitivity=0.5, force=0.1) - 跳跃衰减
|
|
kth_element(x, d, k) - 第K个值
|
|
last_diff_value(x, d) - 最后一个不同值
|
|
ts_arg_max(x, d) - 最大值相对索引
|
|
ts_arg_min(x, d) - 最小值相对索引
|
|
ts_av_diff(x, d) - 与均值的差
|
|
ts_backfill(x, lookback=d, k=1, ignore="NAN") - 回填
|
|
ts_corr(x, y, d) - 时间序列相关性
|
|
ts_count_nans(x, d) - NaN计数
|
|
ts_covariance(y, x, d) - 协方差
|
|
ts_decay_linear(x, d, dense=false) - 线性衰减
|
|
ts_delay(x, d) - 延迟值
|
|
ts_delta(x, d) - 差值 (x - 延迟值)
|
|
ts_max(x, d) - 时间序列最大值
|
|
ts_mean(x, d) - 时间序列均值
|
|
ts_min(x, d) - 时间序列最小值
|
|
ts_product(x, d) - 时间序列乘积
|
|
ts_quantile(x, d, driver="gaussian") - 分位数
|
|
ts_rank(x, d, constant=0) - 时间序列排名
|
|
ts_regression(y, x, d, lag=0, rettype=0) - 回归分析
|
|
ts_scale(x, d, constant=0) - 时间序列缩放
|
|
ts_std_dev(x, d) - 时间序列标准差
|
|
ts_step(1) - 天数计数器
|
|
ts_sum(x, d) - 时间序列求和
|
|
ts_target_tvr_decay(x, lambda_min=0, lambda_max=1, target_tvr=0.1) - 目标换手率衰减
|
|
ts_target_tvr_delta_limit(x, y, lambda_min=0, lambda_max=1, target_tvr=0.1) - 目标换手率差值限制
|
|
ts_zscore(x, d) - 时间序列Z分数
|
|
**横截面运算符 (Cross Sectional):
|
|
normalize(x, useStd=false, limit=0.0) - 标准化
|
|
quantile(x, driver=gaussian, sigma=1.0) - 分位数转换
|
|
rank(x, rate=2) - 排名
|
|
scale(x, scale=1, longscale=1, shortscale=1) - 缩放
|
|
scale_down(x, constant=0) - 按比例缩放
|
|
vector_neut(x, y) - 向量中性化
|
|
winsorize(x, std=4) - 缩尾处理
|
|
zscore(x) - Z分数
|
|
**向量运算符 (Vector):
|
|
vec_avg(x) - 向量均值
|
|
vec_max(x) - 向量最大值
|
|
vec_min(x) - 向量最小值
|
|
vec_sum(x) - 向量求和
|
|
**变换运算符 (Transformational):
|
|
bucket(rank(x), range="0,1,0.1" or buckets="2,5,6,7,10") - 分桶
|
|
generate_stats(alpha) - 生成统计量
|
|
trade_when(x, y, z) - 条件交易
|
|
**分组运算符 (Group):
|
|
combo_a(alpha, nlength=250, mode='algo1') - 组合Alpha
|
|
group_backfill(x, group, d, std=4.0) - 分组回填
|
|
group_cartesian_product(g1, g2) - 笛卡尔积分组
|
|
group_max(x, group) - 分组最大值
|
|
group_mean(x, weight, group) - 分组均值
|
|
group_min(x, group) - 分组最小值
|
|
group_neutralize(x, group) - 分组中性化
|
|
group_rank(x, group) - 分组排名
|
|
group_scale(x, group) - 分组缩放
|
|
group_zscore(x, group) - 分组Z分数
|
|
**特殊运算符 (Special):
|
|
in - 包含判断
|
|
self_corr(input) - 自相关性
|
|
universe_size - 宇宙大小
|
|
**归约运算符 (Reduce):
|
|
reduce_avg(input, threshold=0) - 平均值归约
|
|
reduce_choose(input, nth, ignoreNan=true) - 选择归约
|
|
reduce_count(input, threshold) - 计数归约
|
|
reduce_ir(input) - IR归约
|
|
reduce_kurtosis(input) - 峰度归约
|
|
reduce_max(input) - 最大值归约
|
|
reduce_min(input) - 最小值归约
|
|
reduce_norm(input) - 范数归约
|
|
reduce_percentage(input, percentage=0.5) - 百分比归约
|
|
reduce_powersum(input, constant=2, precise=false) - 幂和归约
|
|
reduce_range(input) - 范围归约
|
|
reduce_skewness(input) - 偏度归约
|
|
reduce_stddev(input, threshold=0) - 标准差归约
|
|
reduce_sum(input) - 求和归约
|
|
|
|
以下是我的账号有权限使用的操作符, 请严格按照操作符, 进行生成,组合因子
|
|
|
|
========================= 操作符开始 =======================================
|
|
注意: Operator: 后面的是操作符(是可以使用的),
|
|
Description: 此字段后面的是操作符对应的描述或使用说明(禁止使用, 仅供参考), Description字段后面的内容是使用说明, 不是操作符
|
|
特别注意!!!! 必须按照操作符字段Operator的使用说明生成 alphaOperator: abs(x)
|
|
Description: Absolute value of x
|
|
Operator: add(x, y, filter = false)
|
|
Description: Add all inputs (at least 2 inputs required). If filter = true, filter all input NaN to 0 before adding
|
|
Operator: densify(x)
|
|
Description: Converts a grouping field of many buckets into lesser number of only available buckets so as to make working with grouping fields computationally efficient
|
|
Operator: divide(x, y)
|
|
Description: x / y
|
|
Operator: inverse(x)
|
|
Description: 1 / x
|
|
Operator: log(x)
|
|
Description: Natural logarithm. For example: Log(high/low) uses natural logarithm of high/low ratio as stock weights.
|
|
Operator: max(x, y, ..)
|
|
Description: Maximum value of all inputs. At least 2 inputs are required
|
|
Operator: min(x, y ..)
|
|
Description: Minimum value of all inputs. At least 2 inputs are required
|
|
Operator: multiply(x ,y, ... , filter=false)
|
|
Description: Multiply all inputs. At least 2 inputs are required. Filter sets the NaN values to 1
|
|
Operator: power(x, y)
|
|
Description: x ^ y
|
|
Operator: reverse(x)
|
|
Description: - x
|
|
Operator: sign(x)
|
|
Description: if input > 0, return 1; if input < 0, return -1; if input = 0, return 0; if input = NaN, return NaN;
|
|
Operator: signed_power(x, y)
|
|
Description: x raised to the power of y such that final result preserves sign of x
|
|
Operator: sqrt(x)
|
|
Description: Square root of x
|
|
Operator: subtract(x, y, filter=false)
|
|
Description: x-y. If filter = true, filter all input NaN to 0 before subtracting
|
|
Operator: and(input1, input2)
|
|
Description: Logical AND operator, returns true if both operands are true and returns false otherwise
|
|
Operator: if_else(input1, input2, input 3)
|
|
Description: If input1 is true then return input2 else return input3.
|
|
Operator: input1 < input2
|
|
Description: If input1 < input2 return true, else return false
|
|
Operator: input1 <= input2
|
|
Description: Returns true if input1 <= input2, return false otherwise
|
|
Operator: input1 == input2
|
|
Description: Returns true if both inputs are same and returns false otherwise
|
|
Operator: input1 > input2
|
|
Description: Logic comparison operators to compares two inputs
|
|
Operator: input1 >= input2
|
|
Description: Returns true if input1 >= input2, return false otherwise
|
|
Operator: input1!= input2
|
|
Description: Returns true if both inputs are NOT the same and returns false otherwise
|
|
Operator: is_nan(input)
|
|
Description: If (input == NaN) return 1 else return 0
|
|
Operator: not(x)
|
|
Description: Returns the logical negation of x. If x is true (1), it returns false (0), and if input is false (0), it returns true (1).
|
|
Operator: or(input1, input2)
|
|
Description: Logical OR operator returns true if either or both inputs are true and returns false otherwise
|
|
Operator: days_from_last_change(x)
|
|
Description: Amount of days since last change of x
|
|
Operator: hump(x, hump = 0.01)
|
|
Description: Limits amount and magnitude of changes in input (thus reducing turnover)
|
|
Operator: kth_element(x, d, k)
|
|
Description: Returns K-th value of input by looking through lookback days. This operator can be used to backfill missing data if k=1
|
|
Operator: last_diff_value(x, d)
|
|
Description: Returns last x value not equal to current x value from last d days
|
|
Operator: ts_arg_max(x, d)
|
|
Description: Returns the relative index of the max value in the time series for the past d days. If the current day has the max value for the past d days, it returns 0. If previous day has the max value for the past d days, it returns 1
|
|
Operator: ts_arg_min(x, d)
|
|
Description: Returns the relative index of the min value in the time series for the past d days; If the current day has the min value for the past d days, it returns 0; If previous day has the min value for the past d days, it returns 1.
|
|
Operator: ts_av_diff(x, d)
|
|
Description: Returns x - tsmean(x, d), but deals with NaNs carefully. That is NaNs are ignored during mean computation
|
|
Operator: ts_backfill(x,lookback = d, k=1, ignore="NAN")
|
|
Description: Backfill is the process of replacing the NAN or 0 values by a meaningful value (i.e., a first non-NaN value)
|
|
Operator: ts_corr(x, y, d)
|
|
Description: Returns correlation of x and y for the past d days
|
|
Operator: ts_count_nans(x ,d)
|
|
Description: Returns the number of NaN values in x for the past d days
|
|
Operator: ts_covariance(y, x, d)
|
|
Description: Returns covariance of y and x for the past d days
|
|
Operator: ts_decay_linear(x, d, dense = false)
|
|
Description: Returns the linear decay on x for the past d days. Dense parameter=false means operator works in sparse mode and we treat NaN as 0. In dense mode we do not.
|
|
Operator: ts_delay(x, d)
|
|
Description: Returns x value d days ago
|
|
Operator: ts_delta(x, d)
|
|
Description: Returns x - ts_delay(x, d)
|
|
Operator: ts_mean(x, d)
|
|
Description: Returns average value of x for the past d days.
|
|
Operator: ts_product(x, d)
|
|
Description: Returns product of x for the past d days
|
|
Operator: ts_quantile(x,d, driver="gaussian" )
|
|
Description: It calculates ts_rank and apply to its value an inverse cumulative density function from driver distribution. Possible values of driver (optional ) are "gaussian", "uniform", "cauchy" distribution where "gaussian" is the default.
|
|
Operator: ts_rank(x, d, constant = 0)
|
|
Description: Rank the values of x for each instrument over the past d days, then return the rank of the current value + constant. If not specified, by default, constant = 0.
|
|
Operator: ts_regression(y, x, d, lag = 0, rettype = 0)
|
|
Description: Returns various parameters related to regression function
|
|
Operator: ts_scale(x, d, constant = 0)
|
|
Description: Returns (x - ts_min(x, d)) / (ts_max(x, d) - ts_min(x, d)) + constant. This operator is similar to scale down operator but acts in time series space
|
|
Operator: ts_std_dev(x, d)
|
|
Description: Returns standard deviation of x for the past d days
|
|
Operator: ts_step(1)
|
|
Description: Returns days' counter
|
|
Operator: ts_sum(x, d)
|
|
Description: Sum values of x for the past d days.
|
|
Operator: ts_zscore(x, d)
|
|
Description: Z-score is a numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean: (x - tsmean(x,d)) / tsstddev(x,d). This operator may help reduce outliers and drawdown.
|
|
Operator: normalize(x, useStd = false, limit = 0.0)
|
|
Description: Calculates the mean value of all valid alpha values for a certain date, then subtracts that mean from each element
|
|
Operator: quantile(x, driver = gaussian, sigma = 1.0)
|
|
Description: Rank the raw vector, shift the ranked Alpha vector, apply distribution (gaussian, cauchy, uniform). If driver is uniform, it simply subtract each Alpha value with the mean of all Alpha values in the Alpha vector
|
|
Operator: rank(x, rate=2)
|
|
Description: Ranks the input among all the instruments and returns an equally distributed number between 0.0 and 1.0. For precise sort, use the rate as 0
|
|
Operator: scale(x, scale=1, longscale=1, shortscale=1)
|
|
Description: Scales input to booksize. We can also scale the long positions and short positions to separate scales by mentioning additional parameters to the operator
|
|
Operator: winsorize(x, std=4)
|
|
Description: Winsorizes x to make sure that all values in x are between the lower and upper limits, which are specified as multiple of std.
|
|
Operator: zscore(x)
|
|
Description: Z-score is a numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean
|
|
Operator: vec_avg(x)
|
|
Description: Taking mean of the vector field x
|
|
Operator: vec_sum(x)
|
|
Description: Sum of vector field x
|
|
Operator: bucket(rank(x), range="0, 1, 0.1" or buckets = "2,5,6,7,10")
|
|
Description: Convert float values into indexes for user-specified buckets. Bucket is useful for creating group values, which can be passed to GROUP as input
|
|
Operator: trade_when(x, y, z)
|
|
Description: Used in order to change Alpha values only under a specified condition and to hold Alpha values in other cases. It also allows to close Alpha positions (assign NaN values) under a specified condition
|
|
Operator: group_backfill(x, group, d, std = 4.0)
|
|
Description: If a certain value for a certain date and instrument is NaN, from the set of same group instruments, calculate winsorized mean of all non-NaN values over last d days
|
|
Operator: group_mean(x, weight, group)
|
|
Description: All elements in group equals to the mean
|
|
Operator: group_neutralize(x, group)
|
|
Description: Neutralizes Alpha against groups. These groups can be subindustry, industry, sector, country or a constant
|
|
Operator: group_rank(x, group)
|
|
Description: Each elements in a group is assigned the corresponding rank in this group
|
|
Operator: group_scale(x, group)
|
|
Description: Normalizes the values in a group to be between 0 and 1. (x - groupmin) / (groupmax - groupmin)
|
|
Operator: group_zscore(x, group)
|
|
Description: Calculates group Z-score - numerical measurement that describes a value's relationship to the mean of a group of values. Z-score is measured in terms of standard deviations from the mean. zscore = (data - mean) / stddev of x for each instrument within its group.
|
|
========================= 操作符结束 =======================================
|
|
|
|
========================= 数据字段开始 =======================================
|
|
注意: data_set_name: 后面的是数据字段(可以使用), description: 此字段后面的是数据字段对应的描述或使用说明(不能使用)
|
|
|
|
{'id': 62614, 'data_set_name': '可以使用:anl69_eps_most_recent_period_end_dt', 'description': '不可使用,仅供参考:Most Recent Period End Date'}
|
|
{'id': 62376, 'data_set_name': '可以使用:anl45_bias_weighted_ret', 'description': '不可使用,仅供参考:Non-Functional'}
|
|
{'id': 62273, 'data_set_name': '可以使用:anl44_2_eps_lastactvalue', 'description': '不可使用,仅供参考:eps lastactvalue'}
|
|
{'id': 138975, 'data_set_name': '可以使用:other_assets_current', 'description': '不可使用,仅供参考:Other current assets not classified elsewhere.'}
|
|
{'id': 136409, 'data_set_name': '可以使用:fnd1_director_characteristics_timebrd', 'description': '不可使用,仅供参考:Time on Board for the individual at a selected AnnualReportDate'}
|
|
{'id': 136392, 'data_set_name': '可以使用:estimated_value_unexercisable_options_ltip', 'description': '不可使用,仅供参考:Estimated value of unexercisable options awarded in the period for LTIP compensation.'}
|
|
{'id': 136390, 'data_set_name': '可以使用:estimated_value_options_held', 'description': '不可使用,仅供参考:Estimated value of options held by the director at period end.'}
|
|
{'id': 60390, 'data_set_name': '可以使用:anl10_entpast_det_analyst_6309', 'description': '不可使用,仅供参考:Analyst ID for earnings net taxes estimates'}
|
|
{'id': 61944, 'data_set_name': '可以使用:anl39_epschngin', 'description': '不可使用,仅供参考:EPS Change % - prior quarter'}
|
|
{'id': 60320, 'data_set_name': '可以使用:anl10_bpspast_det_indicator_6405', 'description': '不可使用,仅供参考:Indicator for fiscal periods in ASCII values (54=fq1, 55=fq2, 49=fy1, 50=fy2) for book value per share estimates'}
|
|
{'id': 62019, 'data_set_name': '可以使用:quarterly_current_liabilities_2', 'description': '不可使用,仅供参考:Current liabilities for the most recent quarter.'}
|
|
{'id': 373212, 'data_set_name': '可以使用:transaction_cost_estimate', 'description': '不可使用,仅供参考:Estimated cost incurred when executing a trade.'}
|
|
{'id': 137355, 'data_set_name': '可以使用:quarterly_ebit_4', 'description': '不可使用,仅供参考:Earnings before interest and taxes for the most recent quarter.'}
|
|
{'id': 60314, 'data_set_name': '可以使用:anl10_bpspast_det_analyst_6402', 'description': '不可使用,仅供参考:Analyst ID for book value per share estimates'}
|
|
{'id': 140648, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_other_adj_comp_inc', 'description': '不可使用,仅供参考:Other Adjustments - Other Comprehensive Income'}
|
|
{'id': 139016, 'data_set_name': '可以使用:quarterly_total_share_capital', 'description': '不可使用,仅供参考:Total share capital at the end of the quarter.'}
|
|
{'id': 62068, 'data_set_name': '可以使用:quarterly_interest_coverage_ratio', 'description': '不可使用,仅供参考:Earnings before interest and taxes divided by interest expense for the quarter.'}
|
|
{'id': 61400, 'data_set_name': '可以使用:anl14_numofests_eps_fp1', 'description': '不可使用,仅供参考:Num of Estimations of Earnings Per Share - upcoming quarter'}
|
|
{'id': 140551, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_change_in_inventories', 'description': '不可使用,仅供参考:Change in Inventories'}
|
|
{'id': 60715, 'data_set_name': '可以使用:social_score_subsector_position', 'description': '不可使用,仅供参考:Company’s position within subsector peer group for social score.'}
|
|
{'id': 373383, 'data_set_name': '可以使用:industry_grouping_level2_top1500', 'description': '不可使用,仅供参考:Industry classification at level 2 for the top 1500 instruments.'}
|
|
{'id': 62726, 'data_set_name': '可以使用:anl69_sales_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period D'}
|
|
{'id': 140198, 'data_set_name': '可以使用:fnd44_working_capital_accruals', 'description': '不可使用,仅供参考:Working Capital Accruals'}
|
|
{'id': 137371, 'data_set_name': '可以使用:quarterly_total_liabilities_4', 'description': '不可使用,仅供参考:Total liabilities reported for the most recent quarter.'}
|
|
{'id': 62429, 'data_set_name': '可以使用:anl46_performancepercentile', 'description': '不可使用,仅供参考:A value from 1 to 100 expressing how well the Indicator has predicted price movement on the stock in the last 12 months'}
|
|
{'id': 373534, 'data_set_name': '可以使用:top2000_factor2_group2_score', 'description': '不可使用,仅供参考:Second factor score for top 2000 securities, grouped into 2 clusters.'}
|
|
{'id': 60356, 'data_set_name': '可以使用:anl10_cpspast_det_indicator_6348', 'description': '不可使用,仅供参考:Indicator for fiscal periods in ASCII values (54=fq1, 55=fq2, 49=fy1, 50=fy2) for cash per share estimates'}
|
|
{'id': 373503, 'data_set_name': '可以使用:sta2_top500_fact2_c5', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 136872, 'data_set_name': '可以使用:fnd17_alldelay1_qtrperiods', 'description': '不可使用,仅供参考:Number of historical periods - Quarterly'}
|
|
{'id': 62193, 'data_set_name': '可以使用:quarterly_total_debt_to_assets', 'description': '不可使用,仅供参考:Ratio of total debt to total assets for the quarter.'}
|
|
{'id': 61979, 'data_set_name': '可以使用:quarterly_asset_turnover', 'description': '不可使用,仅供参考:Annualized ratio of sales to average assets for the quarter.'}
|
|
{'id': 62218, 'data_set_name': '可以使用:ttm_debt_service_to_eps_2', 'description': '不可使用,仅供参考:Debt service to earnings per share ratio for the trailing twelve months.'}
|
|
{'id': 61109, 'data_set_name': '可以使用:anl14_mean_eps_fy5', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Per Share - upcoming 5 years'}
|
|
{'id': 62189, 'data_set_name': '可以使用:quarterly_total_assets_db', 'description': '不可使用,仅供参考:Total assets for the most recent quarter (alternate source).'}
|
|
{'id': 140814, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_non_depr_decomm_fund', 'description': '不可使用,仅供参考:Non-Depreciable Fixed Assets include land, construction in progress, and other non-depreciable fixed assets for general administration as well as plants'}
|
|
{'id': 140452, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_pure_retained_earnings', 'description': '不可使用,仅供参考:Accumulated earnings, earned surplus, or unappropriated profit that has been retained by the company'}
|
|
{'id': 137380, 'data_set_name': '可以使用:reporting_currency_code_ras2', 'description': '不可使用,仅供参考:Currency code in which annual financials are reported for this module.'}
|
|
{'id': 139042, 'data_set_name': '可以使用:share_capital_ordinary_quarterly', 'description': '不可使用,仅供参考:Total value of ordinary share capital issued by the company for the quarter.'}
|
|
{'id': 62511, 'data_set_name': '可以使用:anl69_cps_expected_report_dt', 'description': '不可使用,仅供参考:Expected Earnings Report Date'}
|
|
{'id': 140139, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_yoychgroepct', 'description': '不可使用,仅供参考:Yearly Change in ROE - Percentage Method. It is defined as the yearly percentage change in the ratio of trailing-twelve-month earnings before extraordinary items divided by current total book equity.'}
|
|
{'id': 140124, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_mpgghcy3', 'description': '不可使用,仅供参考:3-Year Change in Gross Profit Margin. It is defined as the 3-Year on Year Change in Gross Profit Margin.'}
|
|
{'id': 140158, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_apgghcy3', 'description': '不可使用,仅供参考:3-Year Change in Gross Profit to Assets. It is defined as the 3-Year on Year Change in Gross Profit to Assets.'}
|
|
{'id': 140506, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_options_outstanding', 'description': '不可使用,仅供参考:Options Outstanding End of Period'}
|
|
{'id': 140604, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_fundamental_entry_dt', 'description': '不可使用,仅供参考:Date when the fundamental record for this period is created'}
|
|
{'id': 373498, 'data_set_name': '可以使用:sta2_top500_fact1_c5', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 61995, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_2', 'description': '不可使用,仅供参考:Cash flow per share for the most recent quarter.'}
|
|
{'id': 60319, 'data_set_name': '可以使用:anl10_bpspast_det_excflag_6398', 'description': '不可使用,仅供参考:Exclusion flag for book value per share estimates'}
|
|
{'id': 62653, 'data_set_name': '可以使用:anl69_net_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 137480, 'data_set_name': '可以使用:capitalized_interest_expense', 'description': '不可使用,仅供参考:[Quarterly] Interest Capitalized, Supplemental'}
|
|
{'id': 61980, 'data_set_name': '可以使用:quarterly_asset_turnover_2', 'description': '不可使用,仅供参考:Annualized ratio of sales to average assets for the quarter.'}
|
|
{'id': 60350, 'data_set_name': '可以使用:anl10_cpspast_det_analyst_6350', 'description': '不可使用,仅供参考:Analyst ID for cash per share estimates'}
|
|
{'id': 62159, 'data_set_name': '可以使用:quarterly_return_on_equity_percent_2', 'description': '不可使用,仅供参考:Annualized net income divided by average equity for the quarter, as a percentage.'}
|
|
{'id': 140403, 'data_set_name': '可以使用:fnd72_bs_q_eqy_fund_crncy', 'description': '不可使用,仅供参考:Currency in which the fundamental data is reported'}
|
|
{'id': 62063, 'data_set_name': '可以使用:quarterly_gross_margin_percent', 'description': '不可使用,仅供参考:Gross margin for the quarter, expressed as a percentage of revenue.'}
|
|
{'id': 62110, 'data_set_name': '可以使用:quarterly_net_loans_change_yoy', 'description': '不可使用,仅供参考:Year-over-year percent change in net loans for the quarter.'}
|
|
{'id': 60960, 'data_set_name': '可以使用:anl14_low_epsrep_fp1', 'description': '不可使用,仅供参考:The Lowest Estimation of Reported Earnings Per Share - Upcoming Quarter'}
|
|
{'id': 140666, 'data_set_name': '可以使用:fnd72_pit_or_is_a_latest_period_end_dt_full_record', 'description': '不可使用,仅供参考:This field displays the latest available period end date from full financial records'}
|
|
{'id': 62507, 'data_set_name': '可以使用:anl69_cps_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings per Share Curr Year'}
|
|
{'id': 62150, 'data_set_name': '可以使用:quarterly_reinvestment_rate_3', 'description': '不可使用,仅供参考:Percent of earnings reinvested for the quarter.'}
|
|
{'id': 60956, 'data_set_name': '可以使用:anl14_low_eps_fy2', 'description': '不可使用,仅供参考:The lowest estimation of earnings per share - upcoming 2 years'}
|
|
{'id': 137416, 'data_set_name': '可以使用:usd_to_reporting_currency_fx', 'description': '不可使用,仅供参考:Exchange rate from US dollars to the reporting currency.'}
|
|
{'id': 62445, 'data_set_name': '可以使用:anl69_best_eps_chg_pct', 'description': '不可使用,仅供参考:Earnings per Share % Chg'}
|
|
{'id': 140308, 'data_set_name': '可以使用:fnd6_newqus_oeps12', 'description': '不可使用,仅供参考:Earnings Per Share from Operations - 12 Months Moving'}
|
|
{'id': 373296, 'data_set_name': '可以使用:pv173_ranksatlas_unit_name', 'description': '不可使用,仅供参考:Atlas unit name'}
|
|
{'id': 62596, 'data_set_name': '可以使用:anl69_eps_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 60968, 'data_set_name': '可以使用:anl14_low_epsrep_fy4', 'description': '不可使用,仅供参考:The Lowest Estimation of Reported Earnings Per Share - upcoming 4 years'}
|
|
{'id': 136379, 'data_set_name': '可以使用:compensation_change_percent_2', 'description': '不可使用,仅供参考:Percentage change in total director compensation from previous period (alternate).'}
|
|
{'id': 140409, 'data_set_name': '可以使用:fnd72_cf_q_fiscal_year_period', 'description': '不可使用,仅供参考:This field, used for the History Wizard, will return the Fiscal year and period that coincides with the period end date'}
|
|
{'id': 62030, 'data_set_name': '可以使用:quarterly_depreciation_expense', 'description': '不可使用,仅供参考:Depreciation expense for the most recent quarter.'}
|
|
{'id': 138971, 'data_set_name': '可以使用:other_accumulated_reserves', 'description': '不可使用,仅供参考:Other accumulated reserves reported for the annual period.'}
|
|
{'id': 140716, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_sh_for_diluted_eps', 'description': '不可使用,仅供参考:Weighted average number of shares used to calculate Diluted EPS'}
|
|
{'id': 140633, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_expense_stock_based_comp', 'description': '不可使用,仅供参考:The expense for stock-based compensation'}
|
|
{'id': 61268, 'data_set_name': '可以使用:anl14_median_epsrep_fy4', 'description': '不可使用,仅供参考:Median of Estimations of Reported Earnings Per Share - upcoming 4 years'}
|
|
{'id': 62031, 'data_set_name': '可以使用:quarterly_depreciation_expense_2', 'description': '不可使用,仅供参考:Depreciation expense for the most recent quarter.'}
|
|
{'id': 62449, 'data_set_name': '可以使用:anl69_best_eps_median', 'description': '不可使用,仅供参考:Earnings per Share Median'}
|
|
{'id': 138883, 'data_set_name': '可以使用:fully_paid_share_capital', 'description': '不可使用,仅供参考:Total value of fully paid share capital issued by the company.'}
|
|
{'id': 60962, 'data_set_name': '可以使用:anl14_low_epsrep_fp3', 'description': '不可使用,仅供参考:The lowest estimation of reported earnings per share - upcoming 3 quarters'}
|
|
{'id': 137389, 'data_set_name': '可以使用:reporting_to_pricing_fx_rate_2', 'description': '不可使用,仅供参考:Exchange rate from reporting currency to pricing currency.'}
|
|
{'id': 61986, 'data_set_name': '可以使用:quarterly_book_value_per_share_2', 'description': '不可使用,仅供参考:Book value per share for the most recent quarter.'}
|
|
{'id': 62114, 'data_set_name': '可以使用:quarterly_non_annualized_cash_flow_per_share', 'description': '不可使用,仅供参考:Cash flow per share for the quarter, not annualized.'}
|
|
{'id': 373537, 'data_set_name': '可以使用:top2000_factor3_group10_score', 'description': '不可使用,仅供参考:Third factor score for top 2000 securities, grouped into 10 clusters.'}
|
|
{'id': 61965, 'data_set_name': '可以使用:annual_period_count_dup', 'description': '不可使用,仅供参考:Number of annual reporting periods available for a company (duplicate field).'}
|
|
{'id': 62650, 'data_set_name': '可以使用:anl69_net_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 61973, 'data_set_name': '可以使用:lowest_pe_ratio_quarterly', 'description': '不可使用,仅供参考:Lowest price-to-earnings ratio for the most recent quarter.'}
|
|
{'id': 136403, 'data_set_name': '可以使用:fnd1_board_characteristics_totcurrnolstdbrd', 'description': '不可使用,仅供参考:The number of Quoted Boards that an individual serves on at the AnnualReportDate selected.'}
|
|
{'id': 61996, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_3', 'description': '不可使用,仅供参考:Cash flow divided by average shares for the most recent quarter.'}
|
|
{'id': 137178, 'data_set_name': '可以使用:fnd17_qtrperiods', 'description': '不可使用,仅供参考:Number of historical periods - Quarterly'}
|
|
{'id': 61940, 'data_set_name': '可以使用:anl39_curfperiodend', 'description': '不可使用,仅供参考:Current fiscal period end'}
|
|
{'id': 62094, 'data_set_name': '可以使用:quarterly_long_term_debt_to_total_capital', 'description': '不可使用,仅供参考:Ratio of long-term debt to total capital for the quarter.'}
|
|
{'id': 62229, 'data_set_name': '可以使用:usd_to_reporting_currency_exchange_rate', 'description': '不可使用,仅供参考:Exchange rate between US dollar and reporting currency.'}
|
|
{'id': 61264, 'data_set_name': '可以使用:anl14_median_epsrep_fp5', 'description': '不可使用,仅供参考:Median of estimations of reported earnings per share - upcoming 5 quarters'}
|
|
{'id': 140747, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_other_cur_asset', 'description': '不可使用,仅供参考:Other Current Assets'}
|
|
{'id': 62203, 'data_set_name': '可以使用:quarterly_total_debt_to_total_capital_ratio', 'description': '不可使用,仅供参考:Total debt divided by total capital for the most recent quarter.'}
|
|
{'id': 62003, 'data_set_name': '可以使用:quarterly_cash_per_share', 'description': '不可使用,仅供参考:Cash plus short-term investments divided by shares outstanding for the quarter.'}
|
|
{'id': 62700, 'data_set_name': '可以使用:anl69_roe_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 140599, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_other_fnc_act', 'description': '不可使用,仅供参考:Other Financing Activities'}
|
|
{'id': 61411, 'data_set_name': '可以使用:anl14_numofests_epsrep_fp2', 'description': '不可使用,仅供参考:Num of Estimations of Reported Earnings Per Share - upcoming 2 quarters'}
|
|
{'id': 136456, 'data_set_name': '可以使用:total_remuneration_period', 'description': '不可使用,仅供参考:Total remuneration awarded to the director for the period.'}
|
|
{'id': 62202, 'data_set_name': '可以使用:quarterly_total_debt_to_equity_ratio_prior_year', 'description': '不可使用,仅供参考:Total debt divided by equity for the same quarter last year.'}
|
|
{'id': 140134, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_tw_ebitdaev', 'description': '不可使用,仅供参考:Time Weighted EBITDA/EV. It is defined as the time-weighted EBITDA/Enterprise Value for FY1 and FY2.'}
|
|
{'id': 137363, 'data_set_name': '可以使用:quarterly_return_on_equity_percent_3', 'description': '不可使用,仅供参考:Return on average equity for the most recent quarter (annualized).'}
|
|
{'id': 140749, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_other_st_liab', 'description': '不可使用,仅供参考:Other ST Liabilities'}
|
|
{'id': 60808, 'data_set_name': '可以使用:anl14_high_eps_fy4', 'description': '不可使用,仅供参考:The Highest Estimation of Earnings Per Share - upcoming 4 years'}
|
|
{'id': 140125, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_numrevy2', 'description': '不可使用,仅供参考:Net # of Revisions for Fiscal Year 2. It is defined as the weighted average of the number of FY2 analyst earnings forecasts raised less the number lowered within a month, divided by the total number of analyst forecasts.'}
|
|
{'id': 61107, 'data_set_name': '可以使用:anl14_mean_eps_fy3', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Per Share - Upcoming 3 Years'}
|
|
{'id': 139143, 'data_set_name': '可以使用:unrealized_other_net_balancesheet', 'description': '不可使用,仅供参考:[Quarterly] Right-of-Use Assets - Operating Lease, Net - Supplemental'}
|
|
{'id': 62560, 'data_set_name': '可以使用:anl69_dpss_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 61255, 'data_set_name': '可以使用:anl14_median_eps_fy1', 'description': '不可使用,仅供参考:Median of Estimations of Earnings Per Share - upcoming year'}
|
|
{'id': 61975, 'data_set_name': '可以使用:quarter_total_assets', 'description': '不可使用,仅供参考:Total assets reported for the most recent quarter.'}
|
|
{'id': 62595, 'data_set_name': '可以使用:anl69_eps_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Curr Year'}
|
|
{'id': 373515, 'data_set_name': '可以使用:top1500_pca_factor1_grouping10', 'description': '不可使用,仅供参考:First principal component grouping for top 1500 securities with 10 clusters.'}
|
|
{'id': 61260, 'data_set_name': '可以使用:anl14_median_epsrep_fp1', 'description': '不可使用,仅供参考:Median of Estimations of Reported Earnings Per Share - upcoming quarter'}
|
|
{'id': 61410, 'data_set_name': '可以使用:anl14_numofests_epsrep_fp1', 'description': '不可使用,仅供参考:Num of estimations of reported earnings per share - upcoming quarter'}
|
|
{'id': 61559, 'data_set_name': '可以使用:anl14_stddev_eps_fy5', 'description': '不可使用,仅供参考:Standard deviation of estimations of earnings per share - upcoming 5 years'}
|
|
{'id': 62206, 'data_set_name': '可以使用:quarterly_total_liabilities_3', 'description': '不可使用,仅供参考:Sum of all liabilities for the most recent quarter.'}
|
|
{'id': 140581, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_cash_from_oper', 'description': '不可使用,仅供参考:Total amount of cash a company generates from its operation'}
|
|
{'id': 60354, 'data_set_name': '可以使用:anl10_cpspast_det_estvalue_6352', 'description': '不可使用,仅供参考:Estimate value for cash per share'}
|
|
{'id': 60336, 'data_set_name': '可以使用:anl10_cpsfy1_consensus_6271', 'description': '不可使用,仅供参考:Consensus estimate value for cash per share FY1'}
|
|
{'id': 136601, 'data_set_name': '可以使用:fnd17_7_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 140693, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_diluted_eps', 'description': '不可使用,仅供参考:Diluted EPS'}
|
|
{'id': 60963, 'data_set_name': '可以使用:anl14_low_epsrep_fp4', 'description': '不可使用,仅供参考:The Lowest Estimation of Reported Earnings Per Share - upcoming 4 quarters'}
|
|
{'id': 137481, 'data_set_name': '可以使用:cash_and_equivalents_3', 'description': '不可使用,仅供参考:Total cash and cash equivalents held at the end of the period.'}
|
|
{'id': 62053, 'data_set_name': '可以使用:quarterly_free_cash_flow_2', 'description': '不可使用,仅供参考:Cash from operations minus capital expenditures and dividends for the quarter.'}
|
|
{'id': 62684, 'data_set_name': '可以使用:anl69_roe_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
|
|
{'id': 136406, 'data_set_name': '可以使用:fnd1_board_characteristics_totnounlstdbrd', 'description': '不可使用,仅供参考:The total number of Private Boards that an individual has served to the AnnualReportDate selected.'}
|
|
{'id': 373438, 'data_set_name': '可以使用:resampled_pca_factor_8', 'description': '不可使用,仅供参考:Eighth principal component factor derived from robust resampling of returns for top 2000 securities.'}
|
|
{'id': 62623, 'data_set_name': '可以使用:anl69_epss_best_eps_gaap', 'description': '不可使用,仅供参考:Earnings Per Share GAAP'}
|
|
{'id': 62510, 'data_set_name': '可以使用:anl69_cps_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
|
|
{'id': 140816, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_other_asset_def_chng_other', 'description': '不可使用,仅供参考:Other Assets/Def Change'}
|
|
{'id': 62664, 'data_set_name': '可以使用:anl69_pe_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Curr Year'}
|
|
{'id': 61106, 'data_set_name': '可以使用:anl14_mean_eps_fy2', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Per Share - upcoming 2 years'}
|
|
{'id': 140585, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_decr_cap_stock', 'description': '不可使用,仅供参考:Always negative. Repurchase of common stock, common stock warrants, or other common stock equivalents. Includes redemption of preferred share capital. Includes purchase of treasury stock. Index'}
|
|
{'id': 62659, 'data_set_name': '可以使用:anl69_net_most_recent_period_end_dt', 'description': '不可使用,仅供参考:Most Recent Period End Date'}
|
|
{'id': 62661, 'data_set_name': '可以使用:anl69_pe_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period D'}
|
|
{'id': 140324, 'data_set_name': '可以使用:fnd6_newqus_rdipepsq', 'description': '不可使用,仅供参考:In Process R&D Expense Basic EPS Effect'}
|
|
{'id': 62274, 'data_set_name': '可以使用:anl44_2_eps_prevalue', 'description': '不可使用,仅供参考:eps prevalue'}
|
|
{'id': 62575, 'data_set_name': '可以使用:anl69_dpss_expected_report_dt', 'description': '不可使用,仅供参考:Expected Earnings Report Date'}
|
|
{'id': 62604, 'data_set_name': '可以使用:anl69_eps_best_eps_gaap_stddev', 'description': '不可使用,仅供参考:Earnings Per Share GAAP Std Dev'}
|
|
{'id': 140128, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_pcdwf', 'description': '不可使用,仅供参考:Leading 12-Month Cash Yield. It is defined as the average quarterly forward-looking cash flows per share divided by close price.'}
|
|
{'id': 60463, 'data_set_name': '可以使用:anl10_grmfy2_consensus_6236', 'description': '不可使用,仅供参考:Consensus estimate value for gross margin FY2'}
|
|
{'id': 137519, 'data_set_name': '可以使用:earnings_from_subsidiaries', 'description': '不可使用,仅供参考:Earnings derived from subsidiary companies.'}
|
|
{'id': 137057, 'data_set_name': '可以使用:fnd17_epstrendgr', 'description': '不可使用,仅供参考:EPS growth rate, 5 year'}
|
|
{'id': 373477, 'data_set_name': '可以使用:sta2_top3000_fact1_c20', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62136, 'data_set_name': '可以使用:quarterly_price_to_sales_ratio_3', 'description': '不可使用,仅供参考:Price divided by sales per share for the quarter.'}
|
|
{'id': 60814, 'data_set_name': '可以使用:anl14_high_epsrep_fp5', 'description': '不可使用,仅供参考:The highest estimation of reported earnings per share - upcoming 5 quarters'}
|
|
{'id': 136551, 'data_set_name': '可以使用:cash_and_equivalents_quarterly_2', 'description': '不可使用,仅供参考:Cash and short-term investments for the most recent quarter.'}
|
|
{'id': 373476, 'data_set_name': '可以使用:sta2_top3000_fact1_c2', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62722, 'data_set_name': '可以使用:anl69_roes_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 139051, 'data_set_name': '可以使用:shareholders_other_equity', 'description': '不可使用,仅供参考:Other equity items attributable to shareholders for the interim period.'}
|
|
{'id': 62015, 'data_set_name': '可以使用:quarterly_current_assets', 'description': '不可使用,仅供参考:Sum of all current assets for the most recent quarter.'}
|
|
{'id': 373437, 'data_set_name': '可以使用:resampled_pca_factor_7', 'description': '不可使用,仅供参考:Seventh principal component factor derived from robust resampling of returns for top 2000 securities.'}
|
|
{'id': 60431, 'data_set_name': '可以使用:anl10_fcfpast_det_anntime_6382', 'description': '不可使用,仅供参考:Announce time for free cash flow estimates'}
|
|
{'id': 140417, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_acct_note_rcv', 'description': '不可使用,仅供参考:This field includes trade receivables directly related with operating activities'}
|
|
{'id': 140137, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_y5speq4vc', 'description': '不可使用,仅供参考:Stability of 5-yr TTM Earnings per Share. It is defined as the standard deviation of the last 20-Month trailing 12-month earnings per share (EPS) divided by the mean of these EPSs.'}
|
|
{'id': 62411, 'data_set_name': '可以使用:anl45_stock_ret_per', 'description': '不可使用,仅供参考:Net total return from all ideas since previous market close'}
|
|
{'id': 62670, 'data_set_name': '可以使用:anl69_roa_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period D'}
|
|
{'id': 136587, 'data_set_name': '可以使用:fnd17_3alldelay1_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 140131, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_psdwf', 'description': '不可使用,仅供参考:Leading 12 Month Sales Yield. It is defined as the FY1 estimate of Sales value per share divided by its trading price.'}
|
|
{'id': 140868, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_q_cf_other_non_cash_adjust', 'description': '不可使用,仅供参考:Other Non-Cash Adjustments'}
|
|
{'id': 61569, 'data_set_name': '可以使用:anl14_stddev_epsrep_fy5', 'description': '不可使用,仅供参考:Standard deviation of estimations of reported earnings per share - upcoming 5 years'}
|
|
{'id': 140448, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_other_st_liab', 'description': '不可使用,仅供参考:Other ST Liabilities'}
|
|
{'id': 62662, 'data_set_name': '可以使用:anl69_pe_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 62169, 'data_set_name': '可以使用:quarterly_revenue_per_share_3', 'description': '不可使用,仅供参考:Total revenue divided by average shares for the quarter.'}
|
|
{'id': 140426, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_common_stock', 'description': '不可使用,仅供参考:Common Stocks'}
|
|
{'id': 137347, 'data_set_name': '可以使用:quarterly_cash_per_share_amt', 'description': '不可使用,仅供参考:Cash and short-term investments per share for the most recent quarter.'}
|
|
{'id': 62125, 'data_set_name': '可以使用:quarterly_pe_ratio_high_2', 'description': '不可使用,仅供参考:Highest price-to-earnings ratio for the quarter.'}
|
|
{'id': 62062, 'data_set_name': '可以使用:quarterly_free_cash_flow_per_share_prior', 'description': '不可使用,仅供参考:Free cash flow per share for the same quarter last year.'}
|
|
{'id': 140460, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_sh_cap_and_apic', 'description': '不可使用,仅供参考:Share Capital & APIC'}
|
|
{'id': 60739, 'data_set_name': '可以使用:anl14_d1_curperiodnum', 'description': '不可使用,仅供参考:Number of period -'}
|
|
{'id': 62652, 'data_set_name': '可以使用:anl69_net_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Curr Year'}
|
|
{'id': 140931, 'data_set_name': '可以使用:mdl56_companyname', 'description': '不可使用,仅供参考:Company name index'}
|
|
{'id': 373494, 'data_set_name': '可以使用:sta2_top3000_fact4_c50', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62010, 'data_set_name': '可以使用:quarterly_common_equity_prior_year', 'description': '不可使用,仅供参考:Common equity reported for the same quarter in the previous year.'}
|
|
{'id': 138867, 'data_set_name': '可以使用:fnd23_repnotickermap', 'description': '不可使用,仅供参考:maps each rep to a ticker on a given day.'}
|
|
{'id': 62634, 'data_set_name': '可以使用:anl69_epss_expected_report_dt', 'description': '不可使用,仅供参考:Expected Earnings Report Date'}
|
|
{'id': 61553, 'data_set_name': '可以使用:anl14_stddev_eps_fp4', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Earnings Per Share - upcoming 4 quarters'}
|
|
{'id': 61993, 'data_set_name': '可以使用:quarterly_cash_balance', 'description': '不可使用,仅供参考:Cash held by the company for the most recent quarter.'}
|
|
{'id': 139100, 'data_set_name': '可以使用:short_term_other_current_assets_2', 'description': '不可使用,仅供参考:Short-term other current assets reported in interim financials.'}
|
|
{'id': 140175, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_y5speq4rqsr', 'description': '不可使用,仅供参考:R Sqr of 5-yr TTM EPS Trend Line. It is defined as the slope coefficient between monthly dates and the corresponding trailing 12-month earnings per share before extra items in the prior 20 quarters.'}
|
|
{'id': 139040, 'data_set_name': '可以使用:share_capital_in_preference', 'description': '不可使用,仅供参考:Share capital in preference reported for the interim period.'}
|
|
{'id': 62076, 'data_set_name': '可以使用:quarterly_inventory_turnover_ratio', 'description': '不可使用,仅供参考:Inventory turnover ratio for the most recent quarter.'}
|
|
{'id': 136414, 'data_set_name': '可以使用:fnd1_director_characteristics_totcurrnounlstdbrd', 'description': '不可使用,仅供参考:The number of Private Boards that an individual serves on at the AnnualReportDate selected.'}
|
|
{'id': 62190, 'data_set_name': '可以使用:quarterly_total_debt', 'description': '不可使用,仅供参考:Total debt reported for the most recent quarter.'}
|
|
{'id': 137312, 'data_set_name': '可以使用:market_capitalization_latest', 'description': "不可使用,仅供参考:The latest available total market value of a company's outstanding shares."}
|
|
{'id': 140432, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_future_min_oper_lease_oblig', 'description': '不可使用,仅供参考:Total of the Future Minimum Operating Lease Commitments'}
|
|
{'id': 62048, 'data_set_name': '可以使用:quarterly_eps_excluding_extraordinary', 'description': '不可使用,仅供参考:Earnings per share for the quarter, excluding extraordinary items.'}
|
|
{'id': 62561, 'data_set_name': '可以使用:anl69_dpss_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
|
|
{'id': 137138, 'data_set_name': '可以使用:fnd17_qdebteps', 'description': '不可使用,仅供参考:Debt Service to EPS - most recent quarter'}
|
|
{'id': 137385, 'data_set_name': '可以使用:reporting_currency_code_ras8', 'description': '不可使用,仅供参考:Currency code for financial reporting in this module.'}
|
|
{'id': 62106, 'data_set_name': '可以使用:quarterly_net_loans_2', 'description': '不可使用,仅供参考:Net loans for the most recent quarter.'}
|
|
{'id': 137119, 'data_set_name': '可以使用:fnd17_ptmepsincx', 'description': '不可使用,仅供参考:EPS including extraordinary items - prior trailing 12 month'}
|
|
{'id': 62527, 'data_set_name': '可以使用:anl69_cpss_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 62012, 'data_set_name': '可以使用:quarterly_cost_of_goods_sold', 'description': '不可使用,仅供参考:Cost of goods sold for the most recent quarter.'}
|
|
{'id': 62742, 'data_set_name': '可以使用:anl69_saless_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 62080, 'data_set_name': '可以使用:quarterly_long_term_debt_3', 'description': '不可使用,仅供参考:Sum of all long-term debt for the most recent quarter.'}
|
|
{'id': 60353, 'data_set_name': '可以使用:anl10_cpspast_det_estflag_6355', 'description': '不可使用,仅供参考:Estimate flag for cash per share'}
|
|
{'id': 373538, 'data_set_name': '可以使用:top2000_factor3_group20_score', 'description': '不可使用,仅供参考:Third factor score for top 2000 securities, grouped into 20 clusters.'}
|
|
{'id': 140195, 'data_set_name': '可以使用:fnd44_probability_restatement', 'description': '不可使用,仅供参考:Using an alternative data; we devise a model to predict accounting restatements. We show that restatements can lead to a significantly adverse stock price reaction. As such, our restatement model is useful at predicting underperforming stocks. This enhanced\r\nrestatement model employes machine learning and uses over 250 unconventional factors as inputs. We apply the model that was trained using US data to global stocks.'}
|
|
{'id': 62639, 'data_set_name': '可以使用:anl69_ndebt_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
|
|
{'id': 62108, 'data_set_name': '可以使用:quarterly_net_loans_change_percent', 'description': '不可使用,仅供参考:Percent change in net loans compared to the same quarter last year.'}
|
|
{'id': 140779, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_2_bs_pure_retained_earnings', 'description': '不可使用,仅供参考:Accumulated earnings, earned surplus, or unappropriated profit that has been retained by the company'}
|
|
{'id': 137361, 'data_set_name': '可以使用:quarterly_net_income_to_common', 'description': '不可使用,仅供参考:Net income available to common shareholders for the most recent quarter.'}
|
|
{'id': 62672, 'data_set_name': '可以使用:anl69_roa_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
|
|
{'id': 138992, 'data_set_name': '可以使用:other_net_equity_total', 'description': '不可使用,仅供参考:Total of other net equity items for the annual period.'}
|
|
{'id': 62120, 'data_set_name': '可以使用:quarterly_operating_margin_percent_2', 'description': '不可使用,仅供参考:Operating margin percentage for the most recent quarter.'}
|
|
{'id': 138988, 'data_set_name': '可以使用:other_long_term_obligations_7', 'description': '不可使用,仅供参考:includes diverse cash flows that are reported outside of the operating, investing and financing sections of the cash flow statement.'}
|
|
{'id': 62160, 'data_set_name': '可以使用:quarterly_return_on_investment', 'description': '不可使用,仅供参考:Annualized net income divided by average investment for the quarter.'}
|
|
{'id': 137350, 'data_set_name': '可以使用:quarterly_common_equity_value', 'description': '不可使用,仅供参考:Common equity value reported for the most recent quarter.'}
|
|
{'id': 140146, 'data_set_name': '可以使用:fnd31_fc_y2repsg', 'description': "不可使用,仅供参考:2-Year Projected EPS Growth. It is defined as a stock's most recent consensus analysts earnings forecast for fiscal year 2 minus the most recent reported fiscal year actual earnings tracked by and then deflated by its month-end trading price."}
|
|
{'id': 139039, 'data_set_name': '可以使用:share_capital_extraordinary', 'description': '不可使用,仅供参考:Extraordinary share capital reported for the annual period.'}
|
|
{'id': 60364, 'data_set_name': '可以使用:anl10_dpspast_det_estflag_6221', 'description': '不可使用,仅供参考:Estimate flag for dividends per share'}
|
|
{'id': 137430, 'data_set_name': '可以使用:accounts_payable_notes', 'description': '不可使用,仅供参考:Notes payable included in accounts payable.'}
|
|
{'id': 140312, 'data_set_name': '可以使用:fnd6_newqus_opepsq', 'description': '不可使用,仅供参考:Earnings Per Share from Operations'}
|
|
{'id': 373428, 'data_set_name': '可以使用:resampled_pca_factor_11', 'description': '不可使用,仅供参考:Eleventh principal component factor derived from robust resampling of returns for top 2000 securities.'}
|
|
{'id': 373499, 'data_set_name': '可以使用:sta2_top500_fact1_c50', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 61263, 'data_set_name': '可以使用:anl14_median_epsrep_fp4', 'description': '不可使用,仅供参考:Median of Estimations of Reported Earnings Per Share - upcoming 4 quarters'}
|
|
{'id': 373627, 'data_set_name': '可以使用:pv47_for_statssimple_only_spret', 'description': '不可使用,仅供参考:specific return'}
|
|
{'id': 138985, 'data_set_name': '可以使用:other_long_term_obligations_2', 'description': '不可使用,仅供参考:Other long-term obligations not classified elsewhere.'}
|
|
{'id': 136603, 'data_set_name': '可以使用:fnd17_7alldelay1_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 60351, 'data_set_name': '可以使用:anl10_cpspast_det_anntime_6354', 'description': '不可使用,仅供参考:Announce time for cash per share estimates'}
|
|
{'id': 373432, 'data_set_name': '可以使用:resampled_pca_factor_2', 'description': '不可使用,仅供参考:Second principal component factor derived from robust resampling of returns for top 2000 securities.'}
|
|
{'id': 62582, 'data_set_name': '可以使用:anl69_ebit_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
|
|
{'id': 373513, 'data_set_name': '可以使用:sta2_top500_fact4_c5', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62532, 'data_set_name': '可以使用:anl69_cpss_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
|
|
{'id': 140133, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_slope4qeps5y', 'description': '不可使用,仅供参考:Slope of 5-yr TTM EPS Trend Line. It is defined as the slope coefficient between monthly dates and the corresponding trailing 12-month earnings per share before extra items in the prior 20 quarters.'}
|
|
{'id': 62275, 'data_set_name': '可以使用:anl44_2_eps_value', 'description': '不可使用,仅供参考:eps value'}
|
|
{'id': 62121, 'data_set_name': '可以使用:quarterly_operating_margin_percent_3', 'description': '不可使用,仅供参考:Operating income divided by revenue for the quarter, expressed as a percentage.'}
|
|
{'id': 140165, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_pbdwf', 'description': '不可使用,仅供参考:Leading 12-Month Book Yield. It is defined as the average quarterly forward-looking book value per share divided by close price.'}
|
|
{'id': 136559, 'data_set_name': '可以使用:earnings_before_tax_annual', 'description': '不可使用,仅供参考:Earnings before taxes for the most recent fiscal year.'}
|
|
{'id': 373507, 'data_set_name': '可以使用:sta2_top500_fact3_c20', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62687, 'data_set_name': '可以使用:anl69_roe_best_fiscal_period_dt', 'description': '不可使用,仅供参考:Fiscal Period Date'}
|
|
{'id': 373505, 'data_set_name': '可以使用:sta2_top500_fact3_c10', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 373385, 'data_set_name': '可以使用:industry_grouping_level2_top3000_2', 'description': '不可使用,仅供参考:Industry classification group at level 2 for the top 3000 instruments.'}
|
|
{'id': 62621, 'data_set_name': '可以使用:anl69_epss_best_eps', 'description': '不可使用,仅供参考:Earnings Per Share'}
|
|
{'id': 60367, 'data_set_name': '可以使用:anl10_dpspast_det_indicator_6220', 'description': '不可使用,仅供参考:Indicator for fiscal periods in ASCII values (54=fq1, 55=fq2, 49=fy1, 50=fy2) for dividends per share estimates'}
|
|
{'id': 136569, 'data_set_name': '可以使用:fifty_day_average_price', 'description': '不可使用,仅供参考:The average closing price over the last 50 trading days.'}
|
|
{'id': 140189, 'data_set_name': '可以使用:fnd44_factor_benford', 'description': '不可使用,仅供参考:Benford score based on KS statistics of first and second digits.'}
|
|
{'id': 373526, 'data_set_name': '可以使用:top1500_pca_factor3_grouping5', 'description': '不可使用,仅供参考:Third principal component grouping for top 1500 securities with 5 clusters.'}
|
|
{'id': 140595, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_issue_com_stock', 'description': '不可使用,仅供参考:Issuance of common stock warrants or other common stock equivalents'}
|
|
{'id': 61406, 'data_set_name': '可以使用:anl14_numofests_eps_fy2', 'description': '不可使用,仅供参考:Num of estimations of Earnings Per Share - upcoming 2 years'}
|
|
{'id': 373532, 'data_set_name': '可以使用:top2000_factor2_group10_score', 'description': '不可使用,仅供参考:Second factor score for top 2000 securities, grouped into 10 clusters.'}
|
|
{'id': 61257, 'data_set_name': '可以使用:anl14_median_eps_fy3', 'description': '不可使用,仅供参考:Median of Estimations of Earnings Per Share - Upcoming 3 Years'}
|
|
{'id': 62624, 'data_set_name': '可以使用:anl69_epss_best_eps_gaap_4wk_chg', 'description': '不可使用,仅供参考:Earnings Per Share GAAP 4 Wk Chg'}
|
|
{'id': 62107, 'data_set_name': '可以使用:quarterly_net_loans_3', 'description': '不可使用,仅供参考:Net loans outstanding for the most recent quarter.'}
|
|
{'id': 140540, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_latest_period_end_dt_full_record', 'description': '不可使用,仅供参考:This field displays the latest available period end date from full financial records'}
|
|
{'id': 373493, 'data_set_name': '可以使用:sta2_top3000_fact4_c5', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 373543, 'data_set_name': '可以使用:top2000_factor4_group20_score', 'description': '不可使用,仅供参考:Fourth factor score for top 2000 securities, grouped into 20 clusters.'}
|
|
{'id': 62077, 'data_set_name': '可以使用:quarterly_inventory_value', 'description': '不可使用,仅供参考:Inventory value for the most recent quarter.'}
|
|
{'id': 62677, 'data_set_name': '可以使用:anl69_roa_expected_report_dt', 'description': '不可使用,仅供参考:Expected Earnings Report Date'}
|
|
{'id': 60950, 'data_set_name': '可以使用:anl14_low_eps_fp1', 'description': '不可使用,仅供参考:The lowest estimation of earnings per share - upcoming quarter'}
|
|
{'id': 140173, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_tw_ebitdaev', 'description': '不可使用,仅供参考:Time Weighted EBITDA/EV. It is defined as the time-weighted EBITDA/Enterprise Value for FY1 and FY2.'}
|
|
{'id': 62607, 'data_set_name': '可以使用:anl69_eps_best_eps_numest', 'description': '不可使用,仅供参考:Earnings Per Share # Ests'}
|
|
{'id': 140784, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_2_fundamental_entry_dt', 'description': '不可使用,仅供参考:Date when the fundamental record for this period is created'}
|
|
{'id': 62599, 'data_set_name': '可以使用:anl69_eps_best_eps_gaap', 'description': '不可使用,仅供参考:Earnings per Share GAAP'}
|
|
{'id': 61988, 'data_set_name': '可以使用:quarterly_capital_spending_per_share', 'description': '不可使用,仅供参考:Capital spending divided by average shares for the quarter.'}
|
|
{'id': 62033, 'data_set_name': '可以使用:quarterly_dividend_per_share', 'description': '不可使用,仅供参考:Dividend paid per share for the most recent quarter.'}
|
|
{'id': 62606, 'data_set_name': '可以使用:anl69_eps_best_eps_lo', 'description': '不可使用,仅供参考:Earnings Per Share Low'}
|
|
{'id': 62216, 'data_set_name': '可以使用:reporting_to_pricing_currency_exrate', 'description': '不可使用,仅供参考:Exchange rate between reporting currency and pricing currency.'}
|
|
{'id': 62119, 'data_set_name': '可以使用:quarterly_operating_margin_percent', 'description': '不可使用,仅供参考:Operating income divided by revenue for the quarter, expressed as a percentage.'}
|
|
{'id': 373187, 'data_set_name': '可以使用:exchange', 'description': '不可使用,仅供参考:Exchange grouping'}
|
|
{'id': 140170, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_psdwf', 'description': '不可使用,仅供参考:Leading 12 Month Sales Yield. It is defined as the FY1 estimate of Sales value per share divided by its trading price.'}
|
|
{'id': 138982, 'data_set_name': '可以使用:other_interest_liabilities', 'description': '不可使用,仅供参考:Other interest-bearing liabilities reported for the annual period.'}
|
|
{'id': 62675, 'data_set_name': '可以使用:anl69_roa_best_fiscal_period_dt', 'description': '不可使用,仅供参考:Fiscal Period Date'}
|
|
{'id': 62617, 'data_set_name': '可以使用:anl69_epss_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 62678, 'data_set_name': '可以使用:anl69_roa_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 62201, 'data_set_name': '可以使用:quarterly_total_debt_to_equity_ratio', 'description': '不可使用,仅供参考:Total debt divided by equity for the most recent quarter.'}
|
|
{'id': 140753, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_sh_cap_and_apic', 'description': '不可使用,仅供参考:Share Capital & APIC'}
|
|
{'id': 140879, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_fundamental_entry_dt', 'description': '不可使用,仅供参考:Date when the fundamental record for this period is created'}
|
|
{'id': 62708, 'data_set_name': '可以使用:anl69_roes_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 137517, 'data_set_name': '可以使用:earnings_from_associates', 'description': '不可使用,仅供参考:[Quarterly] Research & Development'}
|
|
{'id': 60475, 'data_set_name': '可以使用:anl10_grmpast_det_excflag_6317', 'description': '不可使用,仅供参考:Exclusion flag for gross margin estimates'}
|
|
{'id': 137354, 'data_set_name': '可以使用:quarterly_earnings_before_tax_5', 'description': '不可使用,仅供参考:Earnings before taxes for the most recent quarter.'}
|
|
{'id': 373480, 'data_set_name': '可以使用:sta2_top3000_fact2_c10', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 60806, 'data_set_name': '可以使用:anl14_high_eps_fy2', 'description': '不可使用,仅供参考:The Highest Estimation of Earnings Per Share - upcoming 2 years'}
|
|
{'id': 62576, 'data_set_name': '可以使用:anl69_dpss_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 140498, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_future_min_oper_lease_oblig', 'description': '不可使用,仅供参考:Total of the Future Minimum Operating Lease Commitments'}
|
|
{'id': 137356, 'data_set_name': '可以使用:quarterly_ebit_value', 'description': '不可使用,仅供参考:Earnings before interest and taxes for the most recent quarter.'}
|
|
{'id': 140412, 'data_set_name': '可以使用:fnd72_is_q_eqy_fund_crncy', 'description': '不可使用,仅供参考:Currency in which the fundamental data is reported'}
|
|
{'id': 62272, 'data_set_name': '可以使用:anl44_2_eps_lastactccy', 'description': '不可使用,仅供参考:eps lastactccy'}
|
|
{'id': 62168, 'data_set_name': '可以使用:quarterly_revenue_per_share_2', 'description': '不可使用,仅供参考:Revenue per share for the most recent quarter.'}
|
|
{'id': 136572, 'data_set_name': '可以使用:fnd17_1alldelay1_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 62141, 'data_set_name': '可以使用:quarterly_quick_ratio_prior', 'description': '不可使用,仅供参考:Quick ratio for the same quarter last year.'}
|
|
{'id': 62014, 'data_set_name': '可以使用:quarterly_cost_of_goods_sold_3', 'description': '不可使用,仅供参考:Total cost of goods sold for the most recent quarter.'}
|
|
{'id': 137507, 'data_set_name': '可以使用:depreciation_and_amortization_expense', 'description': '不可使用,仅供参考:[Quarterly] Deferred Tax - Local'}
|
|
{'id': 138987, 'data_set_name': '可以使用:other_long_term_obligations_6', 'description': '不可使用,仅供参考:Other obligations due beyond one year not classified elsewhere.'}
|
|
{'id': 62359, 'data_set_name': '可以使用:forecast_currency_roa', 'description': '不可使用,仅供参考:Currency in which the ROA forecast is denominated.'}
|
|
{'id': 61254, 'data_set_name': '可以使用:anl14_median_eps_fp5', 'description': '不可使用,仅供参考:Median of estimations of earnings per share - upcoming 5 quarters'}
|
|
{'id': 140906, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_is_sh_for_diluted_eps', 'description': '不可使用,仅供参考:Weighted average number of shares used to calculate Diluted EPS'}
|
|
{'id': 62088, 'data_set_name': '可以使用:quarterly_long_term_debt_to_equity', 'description': '不可使用,仅供参考:Ratio of long-term debt to shareholder equity for the quarter.'}
|
|
{'id': 62550, 'data_set_name': '可以使用:anl69_dps_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings per Share Curr Year'}
|
|
{'id': 139000, 'data_set_name': '可以使用:other_unusual_income_expense_2', 'description': '不可使用,仅供参考:is applicable only if Net Income/Starting Line [ONET] is income after gains/losses from unusual activities. Because the operating section of the cash flow pursues changes in cash flow from operating activities, any unusual gain/loss included in net income computation needs to be reversed.'}
|
|
{'id': 140478, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_lt_capital_lease_obligations', 'description': '不可使用,仅供参考:Noncurrent amount payable by a lessee under capital leases'}
|
|
{'id': 62158, 'data_set_name': '可以使用:quarterly_return_on_equity_percent', 'description': '不可使用,仅供参考:Annualized net income divided by average equity for the quarter, as a percentage.'}
|
|
{'id': 139152, 'data_set_name': '可以使用:valuation_market_adjustment_amount', 'description': '不可使用,仅供参考:Amount of market adjustment made to valuation.'}
|
|
{'id': 62600, 'data_set_name': '可以使用:anl69_eps_best_eps_gaap_4wk_chg', 'description': '不可使用,仅供参考:Earnings Per Share GAAP 4 Wk Chg'}
|
|
{'id': 140144, 'data_set_name': '可以使用:fnd31_eqcdspricediv', 'description': '不可使用,仅供参考:CDS Divergence. It measures the historical linkage between equity price to CDS spread.'}
|
|
{'id': 140925, 'data_set_name': '可以使用:fnd86_exchange', 'description': '不可使用,仅供参考:Stock exchange'}
|
|
{'id': 140120, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_divgp', 'description': '不可使用,仅供参考:Shareholder Payout to Gross Profit. It is defined as total dividends paid divided by (revenue - cost of goods sold).'}
|
|
{'id': 62730, 'data_set_name': '可以使用:anl69_sales_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 373431, 'data_set_name': '可以使用:resampled_pca_factor_14', 'description': '不可使用,仅供参考:Fourteenth principal component factor derived from robust resampling of returns for top 2000 securities.'}
|
|
{'id': 140837, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_fundamental_entry_dt', 'description': '不可使用,仅供参考:Date when the fundamental record for this period is created'}
|
|
{'id': 62154, 'data_set_name': '可以使用:quarterly_return_on_assets_percent', 'description': '不可使用,仅供参考:Annualized net income divided by average assets for the quarter, as a percentage.'}
|
|
{'id': 136530, 'data_set_name': '可以使用:annual_debt_to_total_capital', 'description': '不可使用,仅供参考:Ratio of total debt to total capital for the most recent fiscal year.'}
|
|
{'id': 140507, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_other_asset_def_chng_other', 'description': '不可使用,仅供参考:Other Assets/Def Chg'}
|
|
{'id': 140760, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_fundamental_entry_dt', 'description': '不可使用,仅供参考:Date when the fundamental record for this period is created'}
|
|
{'id': 62620, 'data_set_name': '可以使用:anl69_epss_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 62754, 'data_set_name': '可以使用:anl69_saless_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 140162, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_mpg', 'description': '不可使用,仅供参考:TTM Gross Profit Margin. It is defined as the TTM (Sales-COGS)/Sales.'}
|
|
{'id': 60316, 'data_set_name': '可以使用:anl10_bpspast_det_estage_6399', 'description': '不可使用,仅供参考:Age of book value per share estimates in days'}
|
|
{'id': 61998, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_alt_2', 'description': '不可使用,仅供参考:Alternate calculation of cash flow per share for the quarter.'}
|
|
{'id': 62148, 'data_set_name': '可以使用:quarterly_reinvestment_rate', 'description': '不可使用,仅供参考:Percentage of earnings reinvested in the company for the quarter.'}
|
|
{'id': 60436, 'data_set_name': '可以使用:anl10_fcfpast_det_indicator_6377', 'description': '不可使用,仅供参考:Indicator for fiscal periods in ASCII values (54=fq1, 55=fq2, 49=fy1, 50=fy2) for free cash flow estimates'}
|
|
{'id': 62354, 'data_set_name': '可以使用:forecast_currency_book_value_per_share', 'description': '不可使用,仅供参考:Currency in which the book value per share forecast is denominated.'}
|
|
{'id': 137374, 'data_set_name': '可以使用:quarterly_total_shareholder_equity_3', 'description': '不可使用,仅供参考:Total shareholder equity reported for the most recent quarter.'}
|
|
{'id': 140818, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_other_cur_asset_less_prepay', 'description': '不可使用,仅供参考:Other assets which are not account and notes receivable, inventory, derivative assets, deferred tax assets, prepaid expenses, assets for held for sales, income taxes receivable, and assets of discontinued operations'}
|
|
{'id': 60402, 'data_set_name': '可以使用:anl10_fcffq1_consensus_6421', 'description': '不可使用,仅供参考:Consensus estimate value for free cash flow Q1'}
|
|
{'id': 137518, 'data_set_name': '可以使用:earnings_from_residual_operations', 'description': '不可使用,仅供参考:[Quarterly] Restructuring Charge'}
|
|
{'id': 136457, 'data_set_name': '可以使用:total_shareholding_value_2', 'description': '不可使用,仅供参考:Value of shares held by the director at the end of the period (alternate).'}
|
|
{'id': 373382, 'data_set_name': '可以使用:industry_grouping_level20_top3000_2', 'description': '不可使用,仅供参考:Industry classification group at level 20 for the top 3000 instruments.'}
|
|
{'id': 62161, 'data_set_name': '可以使用:quarterly_return_on_investment_percent', 'description': '不可使用,仅供参考:Annualized net income divided by average investment for the quarter.'}
|
|
{'id': 140767, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_2_bs_accts_rec_excl_notes_rec', 'description': '不可使用,仅供参考:Accounts receivable with maturities of less than 1 year directly relating to operating activities'}
|
|
{'id': 60376, 'data_set_name': '可以使用:anl10_entfy1_consensus_6473', 'description': '不可使用,仅供参考:Consensus estimate value for earnings net taxes FY1'}
|
|
{'id': 137353, 'data_set_name': '可以使用:quarterly_earnings_before_tax_4', 'description': '不可使用,仅供参考:Earnings before taxes for the most recent quarter.'}
|
|
{'id': 140136, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_y5speq4rqsr', 'description': '不可使用,仅供参考:R Sqr of 5-yr TTM EPS Trend Line. It is defined as the slope coefficient between monthly dates and the corresponding trailing 12-month earnings per share before extra items in the prior 20 quarters.'}
|
|
{'id': 373501, 'data_set_name': '可以使用:sta2_top500_fact2_c2', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 136585, 'data_set_name': '可以使用:fnd17_3_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 140905, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_is_sga_other_op_depr_op_maint', 'description': '不可使用,仅供参考:Includes selling & administrative expenses and other operating expenses after cost of goods sold'}
|
|
{'id': 62230, 'data_set_name': '可以使用:usd_to_reporting_currency_exrate', 'description': '不可使用,仅供参考:Exchange rate between USD and the reporting currency.'}
|
|
{'id': 140515, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_pure_retained_earnings', 'description': '不可使用,仅供参考:Accumulated earnings, earned surplus, or unappropriated profit that has been retained by the company'}
|
|
{'id': 61977, 'data_set_name': '可以使用:quarterly_accumulated_depreciation_2', 'description': '不可使用,仅供参考:Total depreciation accumulated for the quarter.'}
|
|
{'id': 62200, 'data_set_name': '可以使用:quarterly_total_debt_to_equity_prior_year', 'description': '不可使用,仅供参考:Total debt divided by shareholder equity for the same quarter last year.'}
|
|
{'id': 62207, 'data_set_name': '可以使用:quarterly_total_revenue', 'description': '不可使用,仅供参考:Total sales for the most recent quarter.'}
|
|
{'id': 62603, 'data_set_name': '可以使用:anl69_eps_best_eps_gaap_numest', 'description': '不可使用,仅供参考:Earnings Per Share GAAP # Ests'}
|
|
{'id': 60362, 'data_set_name': '可以使用:anl10_dpspast_det_anntime_6225', 'description': '不可使用,仅供参考:Announce time for dividends per share estimates'}
|
|
{'id': 140491, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_capital_reserve', 'description': '不可使用,仅供参考:Includes Accumulative Comprehensive Income Reserve, Merger Reserve, as Well as All Other Reserves and Equities Not Included in Retained Earnings'}
|
|
{'id': 62192, 'data_set_name': '可以使用:quarterly_total_debt_3', 'description': '不可使用,仅供参考:Sum of all debt obligations for the most recent quarter.'}
|
|
{'id': 61404, 'data_set_name': '可以使用:anl14_numofests_eps_fp5', 'description': '不可使用,仅供参考:Number of Estimations of Earnings Per Share - upcoming 5 quarters'}
|
|
{'id': 136398, 'data_set_name': '可以使用:fnd1_board_characteristics_noquals', 'description': '不可使用,仅供参考:Total number of Educational qualifications (undergraduate and above) for the individual at a selected AnnualReportDate'}
|
|
{'id': 62571, 'data_set_name': '可以使用:anl69_dpss_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings per Share Curr Year'}
|
|
{'id': 62640, 'data_set_name': '可以使用:anl69_ndebt_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Curr Year'}
|
|
{'id': 62000, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_non_annualized_alt', 'description': '不可使用,仅供参考:Alternate calculation of cash flow per share for the quarter, not annualized.'}
|
|
{'id': 138999, 'data_set_name': '可以使用:other_unusual_income_expense', 'description': '不可使用,仅供参考:Other unusual income or expense items not classified elsewhere.'}
|
|
{'id': 62572, 'data_set_name': '可以使用:anl69_dpss_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 140591, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_incr_cap_stock', 'description': '不可使用,仅供参考:Increase in Capital Stocks'}
|
|
{'id': 60371, 'data_set_name': '可以使用:anl10_ebspast_det_estflag_6211', 'description': '不可使用,仅供参考:Estimate flag for earnings before others'}
|
|
{'id': 137381, 'data_set_name': '可以使用:reporting_currency_code_ras3', 'description': '不可使用,仅供参考:Currency code for financial reporting in this module.'}
|
|
{'id': 62584, 'data_set_name': '可以使用:anl69_ebit_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings per Share Next Year'}
|
|
{'id': 61971, 'data_set_name': '可以使用:free_cash_flow_quarterly', 'description': '不可使用,仅供参考:Free cash flow for the most recent quarter.'}
|
|
{'id': 140166, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_pbwt', 'description': '不可使用,仅供参考:Time Weighted Book Yield. It is defined as the time-weighted average of book value per share estimates in fiscal year 1 and fiscal year 2 divided by close price.'}
|
|
{'id': 140928, 'data_set_name': '可以使用:fnd86_price_momentum_score', 'description': '不可使用,仅供参考:Price momentum score'}
|
|
{'id': 62598, 'data_set_name': '可以使用:anl69_eps_best_eps_4wk_chg', 'description': '不可使用,仅供参考:Earnings per Share 4 Wk Chg'}
|
|
{'id': 62446, 'data_set_name': '可以使用:anl69_best_eps_gaap_4wk_dn', 'description': '不可使用,仅供参考:Earnings Per Share GAAP 4 Wk Down'}
|
|
{'id': 60722, 'data_set_name': '可以使用:social_totalcorr_subsector_position', 'description': '不可使用,仅供参考:Company’s position within subsector peer group for social score weighted by total correlation to financial returns.'}
|
|
{'id': 140413, 'data_set_name': '可以使用:fnd72_is_q_fiscal_year_period', 'description': '不可使用,仅供参考:This field, used for the History Wizard, will return the Fiscal year and period that coincides with the period end date'}
|
|
{'id': 62038, 'data_set_name': '可以使用:quarterly_earnings_before_tax_3', 'description': '不可使用,仅供参考:Pretax income for the most recent quarter.'}
|
|
{'id': 60730, 'data_set_name': '可以使用:anl14_actvalue_epsrep_fp0', 'description': '不可使用,仅供参考:Reported Earnings Per Share - recent last quarter'}
|
|
{'id': 140160, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_earningstorpedo', 'description': '不可使用,仅供参考:Earnings Torpedo. It is defined as Next 4 Quarter EPS Estimate + TTM Real Earnings Surprise/TTM EPS where, TTM Earnings Surprise = Actual EPS - Est EPS, summed over the last 4 quarters.'}
|
|
{'id': 136609, 'data_set_name': '可以使用:fnd17_9_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 140842, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_latest_period_end_dt_full_record', 'description': '不可使用,仅供参考:This field displays the latest available period end date from full financial records'}
|
|
{'id': 62641, 'data_set_name': '可以使用:anl69_ndebt_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 140177, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_yoychgroeart', 'description': '不可使用,仅供参考:Yearly Change in ROE - Arithmetic Difference. It is defined as the yearly arithmetic change in the ratio of trailing-twelve-month earnings before extraordinary items divided by current total book equity.'}
|
|
{'id': 61407, 'data_set_name': '可以使用:anl14_numofests_eps_fy3', 'description': '不可使用,仅供参考:Num of estimations of Earnings Per Share - upcoming 3 years'}
|
|
{'id': 62211, 'data_set_name': '可以使用:quarterly_working_capital_per_share_to_price', 'description': '不可使用,仅供参考:Working capital per share divided by current price for the quarter.'}
|
|
{'id': 60711, 'data_set_name': '可以使用:social_score_positive_correlation', 'description': '不可使用,仅供参考:Social score weighted by metrics most positively correlated to financial returns.'}
|
|
{'id': 137307, 'data_set_name': '可以使用:interim_debt_to_capital_ratio', 'description': '不可使用,仅供参考:Ratio of total debt to total capital for the most recent interim period.'}
|
|
{'id': 140286, 'data_set_name': '可以使用:fnd6_newqus_epspiq', 'description': '不可使用,仅供参考:Earnings Per Share (Basic) - Including Extraordinary Items'}
|
|
{'id': 61552, 'data_set_name': '可以使用:anl14_stddev_eps_fp3', 'description': '不可使用,仅供参考:Standard deviation of estimations of earnings per share - upcoming 3 quarters'}
|
|
{'id': 60955, 'data_set_name': '可以使用:anl14_low_eps_fy1', 'description': '不可使用,仅供参考:The lowest estimation of earnings per share - upcoming year'}
|
|
{'id': 62609, 'data_set_name': '可以使用:anl69_eps_best_fiscal_period_dt', 'description': '不可使用,仅供参考:Fiscal Period Date'}
|
|
{'id': 60801, 'data_set_name': '可以使用:anl14_high_eps_fp2', 'description': '不可使用,仅供参考:The highest estimation of Earnings Per Share - upcoming 2 quarters'}
|
|
{'id': 140926, 'data_set_name': '可以使用:fnd86_fundamental_score', 'description': '不可使用,仅供参考:Fundamental score'}
|
|
{'id': 136619, 'data_set_name': '可以使用:fnd17_adebteps', 'description': '不可使用,仅供参考:Debt Service to EPS - most recent fiscal year'}
|
|
{'id': 136400, 'data_set_name': '可以使用:fnd1_board_characteristics_timeinco', 'description': '不可使用,仅供参考:Time in Company for the individual at a selected AnnualReportDate'}
|
|
{'id': 140399, 'data_set_name': '可以使用:fnd72_bs_a_eqy_fund_crncy', 'description': '不可使用,仅供参考:Currency in which the fundamental data is reported'}
|
|
{'id': 62280, 'data_set_name': '可以使用:anl44_2_epsr_value', 'description': '不可使用,仅供参考:epsr value'}
|
|
{'id': 61403, 'data_set_name': '可以使用:anl14_numofests_eps_fp4', 'description': '不可使用,仅供参考:Number of estimations of earnings per share - upcoming 4 quarters'}
|
|
{'id': 140580, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_cash_from_inv_act', 'description': '不可使用,仅供参考:Cash From Investing Activities'}
|
|
{'id': 62554, 'data_set_name': '可以使用:anl69_dps_expected_report_dt', 'description': '不可使用,仅供参考:Expected Earnings Report Date'}
|
|
{'id': 140732, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_acct_note_rcv', 'description': '不可使用,仅供参考:This field includes trade receivables directly related with operating activities'}
|
|
{'id': 60809, 'data_set_name': '可以使用:anl14_high_eps_fy5', 'description': '不可使用,仅供参考:The highest estimation of earnings per share - upcoming 5 years'}
|
|
{'id': 140807, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_future_min_oper_lease_oblig', 'description': '不可使用,仅供参考:Total of the Future Minimum Operating Lease Commitments'}
|
|
{'id': 137055, 'data_set_name': '可以使用:fnd17_epschngyri', 'description': '不可使用,仅供参考:EPS Change % - year to date'}
|
|
{'id': 62212, 'data_set_name': '可以使用:quarterly_working_capital_per_share_to_price_2', 'description': '不可使用,仅供参考:Ratio of working capital per share to current price for the quarter.'}
|
|
{'id': 373427, 'data_set_name': '可以使用:resampled_pca_factor_10', 'description': '不可使用,仅供参考:Tenth principal component factor derived from robust resampling of returns for top 2000 securities.'}
|
|
{'id': 62155, 'data_set_name': '可以使用:quarterly_return_on_assets_percent_2', 'description': '不可使用,仅供参考:Annualized net income divided by average assets for the quarter, as a percentage.'}
|
|
{'id': 62553, 'data_set_name': '可以使用:anl69_dps_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
|
|
{'id': 140427, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_cur_asset_report', 'description': '不可使用,仅供参考:Current Assets Reported'}
|
|
{'id': 140588, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_def_of_fund', 'description': '不可使用,仅供参考:No longer supported'}
|
|
{'id': 61551, 'data_set_name': '可以使用:anl14_stddev_eps_fp2', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Earnings Per Share - Upcoming 2 Quarters'}
|
|
{'id': 60432, 'data_set_name': '可以使用:anl10_fcfpast_det_estage_6380', 'description': '不可使用,仅供参考:Age of free cash flow estimates in days'}
|
|
{'id': 62631, 'data_set_name': '可以使用:anl69_epss_best_eps_numest', 'description': '不可使用,仅供参考:Earnings Per Share # Ests'}
|
|
{'id': 62727, 'data_set_name': '可以使用:anl69_sales_best_cur_fiscal_semi_year_period', 'description': '不可使用,仅供参考:Current Fiscal Semi-Year Period'}
|
|
{'id': 62744, 'data_set_name': '可以使用:anl69_saless_best_eeps_cur_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Curr Year'}
|
|
{'id': 140113, 'data_set_name': '可以使用:fnd31_coreepsp', 'description': '不可使用,仅供参考:TTM Core Earnings-to-Price. It is defined as the trailing 12-month earnings per share from operations for a stock deflated by its trading price. This item excludes cumulative effect of accounting change, discounted operations, extraordinary items, and special items.'}
|
|
{'id': 60487, 'data_set_name': '可以使用:anl10_roapast_det_indicator_6332', 'description': '不可使用,仅供参考:Indicator for fiscal periods in ASCII values (54=fq1, 55=fq2, 49=fy1, 50=fy2) for return on assets estimates'}
|
|
{'id': 62226, 'data_set_name': '可以使用:ttm_return_on_average_equity', 'description': '不可使用,仅供参考:Net income divided by average equity for the trailing twelve months.'}
|
|
{'id': 62676, 'data_set_name': '可以使用:anl69_roa_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
|
|
{'id': 62197, 'data_set_name': '可以使用:quarterly_total_debt_to_capital_2', 'description': '不可使用,仅供参考:Total debt divided by total capital for the quarter.'}
|
|
{'id': 61101, 'data_set_name': '可以使用:anl14_mean_eps_fp2', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Per Share - upcoming 2 quarters'}
|
|
{'id': 140423, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_amt_of_tsy_stock', 'description': '不可使用,仅供参考:Amount of Treasury Shares'}
|
|
{'id': 61826, 'data_set_name': '可以使用:anl15_ind_hist_eps_gro', 'description': '不可使用,仅供参考:The weighted annual EPS growth rate over the past 5 years aggregated within GICS industry grouping.'}
|
|
{'id': 136549, 'data_set_name': '可以使用:book_value_per_share_quarterly', 'description': '不可使用,仅供参考:Book value per share for the most recent quarter.'}
|
|
{'id': 61102, 'data_set_name': '可以使用:anl14_mean_eps_fp3', 'description': '不可使用,仅供参考:Mean of estimations of Earnings Per Share - upcoming 3 quarters'}
|
|
{'id': 62512, 'data_set_name': '可以使用:anl69_cps_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 61565, 'data_set_name': '可以使用:anl14_stddev_epsrep_fy1', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Reported Earnings Per Share - upcoming year'}
|
|
{'id': 373528, 'data_set_name': '可以使用:top2000_factor1_group20_score', 'description': '不可使用,仅供参考:First factor score for top 2000 securities, grouped into 20 clusters.'}
|
|
{'id': 140117, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_apg', 'description': '不可使用,仅供参考:TTM Gross Profit to Assets. It is defined as the TTM (Sales - COGS)/Total Assets.'}
|
|
{'id': 139003, 'data_set_name': '可以使用:preferred_stock_dividends', 'description': '不可使用,仅供参考:[Quarterly] Total Plan Service Cost'}
|
|
{'id': 62743, 'data_set_name': '可以使用:anl69_saless_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:Current Fiscal Year Period Date'}
|
|
{'id': 61561, 'data_set_name': '可以使用:anl14_stddev_epsrep_fp2', 'description': '不可使用,仅供参考:Standard Deviation of Estimations of Reported Earnings Per Share - Upcoming 2 Quarters'}
|
|
{'id': 136388, 'data_set_name': '可以使用:estimated_value_exercisable_options_ltip', 'description': '不可使用,仅供参考:Estimated value of exercisable options awarded in the period for LTIP compensation.'}
|
|
{'id': 140798, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_amt_of_tsy_stock', 'description': '不可使用,仅供参考:Amount of Treasury Shares'}
|
|
{'id': 61116, 'data_set_name': '可以使用:anl14_mean_epsrep_fy2', 'description': '不可使用,仅供参考:Mean of Estimations of Reported Earnings Per Share - Upcoming 2 Years'}
|
|
{'id': 373516, 'data_set_name': '可以使用:top1500_pca_factor1_grouping2', 'description': '不可使用,仅供参考:First principal component grouping for top 1500 securities with 2 clusters.'}
|
|
{'id': 139014, 'data_set_name': '可以使用:quarterly_total_liabilities_equity', 'description': '不可使用,仅供参考:Total liabilities and equity for the quarter.'}
|
|
{'id': 62741, 'data_set_name': '可以使用:anl69_saless_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period D'}
|
|
{'id': 61969, 'data_set_name': '可以使用:eps_excl_extra_items_quarterly', 'description': '不可使用,仅供参考:Earnings per share for the most recent quarter, excluding extraordinary items.'}
|
|
{'id': 140549, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_cash_from_oper', 'description': '不可使用,仅供参考:Total amount of cash a company generates from its operation'}
|
|
{'id': 136387, 'data_set_name': '可以使用:estimated_value_exercisable_options', 'description': '不可使用,仅供参考:Estimated value of exercisable options awarded in the period.'}
|
|
{'id': 137359, 'data_set_name': '可以使用:quarterly_eps_excl_extraordinary_2', 'description': '不可使用,仅供参考:Earnings per share for the most recent quarter, excluding extraordinary items.'}
|
|
{'id': 137310, 'data_set_name': '可以使用:long_term_debt_quarterly_2', 'description': '不可使用,仅供参考:Total long-term debt for the most recent quarter.'}
|
|
{'id': 60369, 'data_set_name': '可以使用:anl10_ebspast_det_anntime_6209', 'description': '不可使用,仅供参考:Announce time for earnings before others estimates'}
|
|
{'id': 140511, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_other_lt_liabilities', 'description': '不可使用,仅供参考:Other LT Liabilities'}
|
|
{'id': 136576, 'data_set_name': '可以使用:fnd17_2alldelay1_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
|
|
{'id': 140617, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_adjusted_eps_as_reported', 'description': '不可使用,仅供参考:Earnings per share from continuing operations before the effects of one-time gains and losses as disclosed by the company'}
|
|
{'id': 62530, 'data_set_name': '可以使用:anl69_cpss_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 140285, 'data_set_name': '可以使用:fnd6_newqus_epsfxq', 'description': '不可使用,仅供参考:Earnings Per Share (Diluted) - Excluding Extraordinary items'}
|
|
{'id': 62199, 'data_set_name': '可以使用:quarterly_total_debt_to_equity_2', 'description': '不可使用,仅供参考:Total debt divided by shareholder equity for the quarter.'}
|
|
{'id': 62586, 'data_set_name': '可以使用:anl69_ebit_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
|
|
{'id': 62162, 'data_set_name': '可以使用:quarterly_return_on_investment_percent_2', 'description': '不可使用,仅供参考:Annualized net income divided by average investment for the quarter, as a percentage.'}
|
|
{'id': 140715, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_sga_other_op_depr_op_maint', 'description': '不可使用,仅供参考:Includes selling & administrative expenses and other operating expenses after cost of goods sold'}
|
|
{'id': 137528, 'data_set_name': '可以使用:equity_total_reported', 'description': '不可使用,仅供参考:Total equity as reported in the financial statements.'}
|
|
{'id': 60483, 'data_set_name': '可以使用:anl10_roapast_det_estage_6330', 'description': '不可使用,仅供参考:Age of return on assets estimates in days'}
|
|
{'id': 140774, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_2_bs_future_min_oper_lease_oblig', 'description': '不可使用,仅供参考:Total of the Future Minimum Operating Lease Commitments'}
|
|
{'id': 140744, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_mkt_sec_other_st_invest', 'description': '不可使用,仅供参考:Marketable Securities & Other ST Investments'}
|
|
{'id': 62049, 'data_set_name': '可以使用:quarterly_eps_incl_extraordinary', 'description': '不可使用,仅供参考:Earnings per share for the quarter, including extraordinary items.'}
|
|
{'id': 60434, 'data_set_name': '可以使用:anl10_fcfpast_det_estvalue_6385', 'description': '不可使用,仅供参考:Estimate value for free cash flow'}
|
|
{'id': 62086, 'data_set_name': '可以使用:quarterly_long_term_debt_to_assets_ratio', 'description': '不可使用,仅供参考:Long-term debt divided by total assets for the most recent quarter.'}
|
|
{'id': 62057, 'data_set_name': '可以使用:quarterly_free_cash_flow_per_share_alt', 'description': '不可使用,仅供参考:Alternative calculation of free cash flow per share for the quarter.'}
|
|
{'id': 62709, 'data_set_name': '可以使用:anl69_roes_best_fiscal_period_dt', 'description': '不可使用,仅供参考:Fiscal Period Date'}
|
|
{'id': 62557, 'data_set_name': '可以使用:anl69_dps_most_recent_period_end_dt', 'description': '不可使用,仅供参考:Most Recent Period End Date'}
|
|
{'id': 140688, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_basic_eps_cont_ops', 'description': '不可使用,仅供参考:Tax Effects on Abnormal Items'}
|
|
{'id': 62115, 'data_set_name': '可以使用:quarterly_non_annualized_cash_flow_per_share_alt', 'description': '不可使用,仅供参考:Alternative calculation of cash flow per share for the quarter, not annualized.'}
|
|
{'id': 137417, 'data_set_name': '可以使用:usd_to_reporting_fx_rate', 'description': '不可使用,仅供参考:Exchange rate used to convert USD to the reporting currency.'}
|
|
{'id': 62081, 'data_set_name': '可以使用:quarterly_long_term_debt_per_share', 'description': '不可使用,仅供参考:Long-term debt divided by shares outstanding for the quarter.'}
|
|
{'id': 62682, 'data_set_name': '可以使用:anl69_roe_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period Date'}
|
|
{'id': 138994, 'data_set_name': '可以使用:other_non_current_investments', 'description': '不可使用,仅供参考:Other non-current investments held by the company.'}
|
|
{'id': 62166, 'data_set_name': '可以使用:quarterly_revenue_per_employee_3', 'description': '不可使用,仅供参考:Annualized revenue divided by average number of employees for the quarter.'}
|
|
{'id': 140579, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_cash_from_fnc_act', 'description': '不可使用,仅供参考:Cash from Financing Activities'}
|
|
{'id': 60544, 'data_set_name': '可以使用:anl11_company_name', 'description': '不可使用,仅供参考:Company name'}
|
|
{'id': 373387, 'data_set_name': '可以使用:industry_grouping_level50_top2000', 'description': '不可使用,仅供参考:Industry classification group at level 50 for the top 2000 instruments.'}
|
|
{'id': 140469, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_total_capital_leases', 'description': '不可使用,仅供参考:Total of short- and long-term amounts payable by a lessee under capital leases'}
|
|
{'id': 140712, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_over_underfund_pension_exp', 'description': '不可使用,仅供参考:The funded status of the pension plan'}
|
|
{'id': 373638, 'data_set_name': '可以使用:pv72_ibeseps2_relation', 'description': '不可使用,仅供参考:relation'}
|
|
{'id': 137349, 'data_set_name': '可以使用:quarterly_common_equity_4', 'description': '不可使用,仅供参考:Common equity value reported for the most recent quarter.'}
|
|
{'id': 140284, 'data_set_name': '可以使用:fnd6_newqus_epsfiq', 'description': '不可使用,仅供参考:Earnings Per Share (Diluted) - Including Extraordinary Items'}
|
|
{'id': 140541, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_lt_capital_lease_obligations', 'description': '不可使用,仅供参考:Noncurrent amount payable by a lessee under capital leases'}
|
|
{'id': 136397, 'data_set_name': '可以使用:fnd1_board_characteristics_avgtimeothco', 'description': '不可使用,仅供参考:The Average Time that a Director sits on the Board of Quoted Companies'}
|
|
{'id': 137382, 'data_set_name': '可以使用:reporting_currency_code_ras4', 'description': '不可使用,仅供参考:Currency code for financial reporting in this module.'}
|
|
{'id': 61419, 'data_set_name': '可以使用:anl14_numofests_epsrep_fy5', 'description': '不可使用,仅供参考:Number of estimations of reported earnings per share - upcoming 5 years'}
|
|
{'id': 62209, 'data_set_name': '可以使用:quarterly_total_shareholder_equity', 'description': '不可使用,仅供参考:Total shareholder equity for the most recent quarter.'}
|
|
{'id': 62097, 'data_set_name': '可以使用:quarterly_net_income_2', 'description': '不可使用,仅供参考:Net income after taxes for the most recent quarter.'}
|
|
{'id': 140477, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_latest_period_end_dt_full_record', 'description': '不可使用,仅供参考:This field displays the latest available period end date from full financial records'}
|
|
{'id': 62357, 'data_set_name': '可以使用:forecast_currency_fcfps', 'description': '不可使用,仅供参考:Currency in which the FCFPS forecast is denominated.'}
|
|
{'id': 137485, 'data_set_name': '可以使用:common_shares_outstanding_quarter_2', 'description': '不可使用,仅供参考:Number of common shares outstanding at quarter end.'}
|
|
{'id': 60368, 'data_set_name': '可以使用:anl10_ebspast_det_analyst_6215', 'description': '不可使用,仅供参考:Analyst ID for earnings before others estimates'}
|
|
{'id': 62580, 'data_set_name': '可以使用:anl69_ebit_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:Current Fiscal Quarter Period Date'}
|
|
{'id': 137514, 'data_set_name': '可以使用:dividends_withheld_settled', 'description': '不可使用,仅供参考:Dividends withheld and settled during the period.'}
|
|
{'id': 140799, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_capital_reserve', 'description': '不可使用,仅供参考:Includes accumulative comprehensive income reserve, merger reserve, as well as all other reserves and equities not included in Retained Earnings'}
|
|
{'id': 62133, 'data_set_name': '可以使用:quarterly_price_to_cash_flow_per_share_2', 'description': '不可使用,仅供参考:Ratio of price to cash flow per share for the quarter.'}
|
|
{'id': 140870, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_q_fundamental_entry_dt', 'description': '不可使用,仅供参考:Date when the fundamental record for this period is created'}
|
|
{'id': 60804, 'data_set_name': '可以使用:anl14_high_eps_fp5', 'description': '不可使用,仅供参考:The highest estimation of Earnings Per Share - upcoming 5 quarters'}
|
|
{'id': 60442, 'data_set_name': '可以使用:anl10_grmfq1_consensus_6261', 'description': '不可使用,仅供参考:Consensus estimate value for gross margin Q1'}
|
|
{'id': 60818, 'data_set_name': '可以使用:anl14_high_epsrep_fy4', 'description': '不可使用,仅供参考:The Highest estimation of Reported Earnings Per Share - upcoming 4 years'}
|
|
{'id': 137367, 'data_set_name': '可以使用:quarterly_tangible_book_value_4', 'description': '不可使用,仅供参考:Tangible book value for the most recent quarter, calculated as book value minus goodwill and intangibles.'}
|
|
{'id': 62116, 'data_set_name': '可以使用:quarterly_non_annualized_fcf_per_share', 'description': '不可使用,仅供参考:Free cash flow per share for the quarter, not annualized.'}
|
|
{'id': 138997, 'data_set_name': '可以使用:other_operating_cash_flows', 'description': '不可使用,仅供参考:Other operating cash flows reported in interim financials.'}
|
|
{'id': 62573, 'data_set_name': '可以使用:anl69_dpss_best_fiscal_period_dt', 'description': '不可使用,仅供参考:Fiscal Period Date'}
|
|
{'id': 60355, 'data_set_name': '可以使用:anl10_cpspast_det_excflag_6356', 'description': '不可使用,仅供参考:Exclusion flag for cash per share estimates'}
|
|
{'id': 373681, 'data_set_name': '可以使用:topdiv3000', 'description': '不可使用,仅供参考:20140630'}
|
|
{'id': 140813, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_mkt_sec_other_st_invest', 'description': '不可使用,仅供参考:Marketable Securities & Other ST Investments'}
|
|
{'id': 62612, 'data_set_name': '可以使用:anl69_eps_expected_report_time', 'description': '不可使用,仅供参考:Expected Earnings Report Time'}
|
|
{'id': 62361, 'data_set_name': '可以使用:forecast_currency_sales', 'description': '不可使用,仅供参考:Currency in which the sales forecast is denominated.'}
|
|
{'id': 62278, 'data_set_name': '可以使用:anl44_2_epsr_lastactvalue', 'description': '不可使用,仅供参考:epsr lastactvalue'}
|
|
{'id': 61111, 'data_set_name': '可以使用:anl14_mean_epsrep_fp2', 'description': '不可使用,仅供参考:Mean of estimations of reported earnings per share - upcoming 2 quarters'}
|
|
{'id': 373511, 'data_set_name': '可以使用:sta2_top500_fact4_c2', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62551, 'data_set_name': '可以使用:anl69_dps_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 62643, 'data_set_name': '可以使用:anl69_ndebt_best_fperiod_override', 'description': '不可使用,仅供参考:Fiscal Period Override'}
|
|
{'id': 373502, 'data_set_name': '可以使用:sta2_top500_fact2_c20', 'description': '不可使用,仅供参考:statistical industry classification'}
|
|
{'id': 62392, 'data_set_name': '可以使用:anl45_net_market_exposure', 'description': '不可使用,仅供参考:Difference in fractional total value between long and short ideas'}
|
|
{'id': 61412, 'data_set_name': '可以使用:anl14_numofests_epsrep_fp3', 'description': '不可使用,仅供参考:Num of Estimations of Reported Earnings Per Share - upcoming 3 quarters'}
|
|
{'id': 140159, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_divgp', 'description': '不可使用,仅供参考:Shareholder Payout to Gross Profit. It is defined as total dividends paid divided by (revenue - cost of goods sold).'}
|
|
{'id': 60720, 'data_set_name': '可以使用:social_totalcorr_sector_position', 'description': '不可使用,仅供参考:Company’s position within sector peer group for social score weighted by total correlation to financial returns.'}
|
|
{'id': 62353, 'data_set_name': '可以使用:epsr_currency_code', 'description': '不可使用,仅供参考:Currency code in which the reported EPS forecast is denominated.'}
|
|
{'id': 62674, 'data_set_name': '可以使用:anl69_roa_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:Est Earnings Per Share Next Year'}
|
|
{'id': 140619, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_basic_eps_cont_ops', 'description': '不可使用,仅供参考:Tax Effects on Abnormal Items'}
|
|
{'id': 373378, 'data_set_name': '可以使用:industry_grouping_level10_top2000', 'description': '不可使用,仅供参考:Industry classification group at level 10 for the top 2000 instruments.'}
|
|
{'id': 137346, 'data_set_name': '可以使用:quarterly_cash_per_share_4', 'description': '不可使用,仅供参考:Cash and short-term investments per share for the most recent quarter.'}
|
|
{'id': 62156, 'data_set_name': '可以使用:quarterly_return_on_average_assets', 'description': '不可使用,仅供参考:Annualized net income divided by average assets for the quarter.'}
|
|
{'id': 62167, 'data_set_name': '可以使用:quarterly_revenue_per_share', 'description': '不可使用,仅供参考:Total revenue divided by average shares for the quarter.'}
|
|
========================= 数据字段结束 =======================================
|
|
|
|
以上数据字段和操作符, 按照Description说明组合, 但是每一个 alpha 组合的使用的数据字段和操作符不要过于集中, 在符合语法的情况下, 多尝试不同的组合
|
|
|
|
你再检查一下, 如果你使用了
|
|
Operator abs does not support event inputs
|
|
Operator ts_mean does not support event inputs
|
|
Operator ts_scale does not support event inputs
|
|
Operator add does not support event inputs
|
|
Operator sign does not support event inputs
|
|
Operator greater does not support event inputs
|
|
Operator ts_av_diff does not support event inputs
|
|
Operator ts_quantile does not support event inputs
|
|
Operator ts_arg_min does not support event inputs
|
|
Operator divide does not support event inputs
|
|
Operator ts_corr does not support event inputs
|
|
Operator ts_decay_linear does not support event inputs
|
|
Operator ts_sum does not support event inputs
|
|
Operator ts_delay does not support event inputs
|
|
Operator ts_arg_max does not support event inputs
|
|
Operator ts_std_dev does not support event inputs
|
|
Operator ts_regression does not support event inputs
|
|
Operator ts_backfill does not support event inputs
|
|
Operator signed_power does not support event inputs
|
|
Operator ts_product does not support event inputs
|
|
Operator ts_zscore does not support event inputs
|
|
Operator group_rank does not support event inputs
|
|
Operator subtract does not support event inputs
|
|
Operator ts_delta does not support event inputs
|
|
Operator ts_rank does not support event inputs
|
|
Operator ts_count_nans does not support event inputs
|
|
Operator ts_covariance does not support event inputs
|
|
Operator multiply does not support event inputs
|
|
Operator if_else does not support event inputs
|
|
Operator group_neutralize does not support event inputs
|
|
Operator group_zscore does not support event inputs
|
|
Operator winsorize does not support event inputs
|
|
注意, 以上操作符不能使用事件类型的数据集, 以上操作符禁止使用事件类型的数据集!! |