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.
AlphaGenerator/manual_prompt/2026/01/31/manual_prompt_2026013121444...

816 lines
105 KiB

委买委卖深度斜率收敛因子
假设
从市场微观结构和行为金融逻辑来看,个股买卖盘各档位的委托深度斜率反映了不同价位上多空资金的委托单堆积密度,买盘斜率代表买方在档位价差上的量能释放效率,卖盘斜率代表卖方的量能压制效率,二者的分歧度体现了市场多空的短期博弈失衡状态;而当前成交价与买卖盘量价加权的均衡价格存在自然的均值回归倾向,当多空深度斜率分歧度逐步收窄时,多空博弈的失衡状态开始缓解,价格向均衡价格修正的动力会显著增强,这种由委托盘结构收敛带来的价格修正行为,能为个股带来持续的超额收益,且该规律在中短周期的量价波动中具有稳定的预测性。
实施方案
首先获取 A 股个股逐笔五档委买委卖盘的高频数据,分别计算买 1-5 档委买量对档位相对价差的一阶深度斜率、卖 1-5 档委卖量对档位相对价差的一阶深度斜率,取卖盘斜率绝对值后计算多空斜率的分歧度;再通过各档位委买委卖量为权重,计算买卖盘的量价加权均衡价格,得出当前成交价相对均衡价格的偏离率;接着对斜率分歧度做 5 分钟滚动衰减计算,将其与价格偏离率进行交叉乘积运算,最后对结果进行截面 Z-score 标准化和申万一级行业中性化处理,得到最终因子值,因子值越高代表价格收敛修正的动力越强。
*=========================================================================================*
输出格式:
输出必须是且仅是纯文本。
每一行是一个完整、独立、语法正确的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': 61129, 'data_set_name': '可以使用:anl14_mean_ndebt_fy3', 'description': '不可使用,仅供参考:Mean of Estimations of Net Debt - upcoming 3 years'}
{'id': 61087, 'data_set_name': '可以使用:anl14_mean_ebit_fy3', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Before Interest & Taxes - Upcoming 3 Years'}
{'id': 139568, 'data_set_name': '可以使用:fnd28_levliqa_value_08246a', 'description': '不可使用,仅供参考:value of annual field: Cash Dividend Coverage Ratio'}
{'id': 60889, 'data_set_name': '可以使用:anl14_high_roe_fy3', 'description': '不可使用,仅供参考:The Highest Estimation of Returns on Equity - upcoming 3 years'}
{'id': 139274, 'data_set_name': '可以使用:fnd28_bsasseta_value_02652a', 'description': '不可使用,仅供参考:value of annual field: Other Assets'}
{'id': 139319, 'data_set_name': '可以使用:fnd28_cfq_value_04701q', 'description': '不可使用,仅供参考:value of quarterly field: Reduction In Long Term Debt'}
{'id': 140029, 'data_set_name': '可以使用:fnd28_value_18381a', 'description': '不可使用,仅供参考:value of annual field: Property, Plant & Equipment under Capitalized Leases'}
{'id': 140153, 'data_set_name': '可以使用:fnd31_ohlsonscore', 'description': "不可使用,仅供参考:Ohlson Bankruptcy Score. It is a model assessing a company's probability of bankruptcy by considering firm size, capital structure, financial performance, and liquidity. It is derived from Ohlson (1980)."}
{'id': 60840, 'data_set_name': '可以使用:anl14_high_ntp_fy4', 'description': '不可使用,仅供参考:The highest estimation of net profit - upcoming 4 years'}
{'id': 138946, 'data_set_name': '可以使用:long_term_other_current_liabilities_2', 'description': '不可使用,仅供参考:Long-term other current liabilities reported in interim financials.'}
{'id': 136551, 'data_set_name': '可以使用:cash_and_equivalents_quarterly_2', 'description': '不可使用,仅供参考:Cash and short-term investments for the most recent quarter.'}
{'id': 373403, 'data_set_name': '可以使用:pca_industry_grouping_method2_2', 'description': '不可使用,仅供参考:Industry grouping using second method and 2 clusters for top 3000 equities.'}
{'id': 62338, 'data_set_name': '可以使用:anl44_2_sales_lastactvalue', 'description': '不可使用,仅供参考:sales lastactvalue'}
{'id': 139423, 'data_set_name': '可以使用:fnd28_fsa1_value_04860a', 'description': '不可使用,仅供参考:value of annual field: Net Cash Flow - Operating Activities'}
{'id': 139871, 'data_set_name': '可以使用:fnd28_value_01503q', 'description': '不可使用,仅供参考:value of quarterly field: Equity In Earnings'}
{'id': 61074, 'data_set_name': '可以使用:anl14_mean_div_fp5', 'description': '不可使用,仅供参考:Mean of Estimations of Dividend - upcoming 5 quarters'}
{'id': 136431, 'data_set_name': '可以使用:intrinsic_value_unexercisable_options_ltip', 'description': '不可使用,仅供参考:Intrinsic value of unexercisable options awarded in the period for LTIP compensation.'}
{'id': 139865, 'data_set_name': '可以使用:fnd28_stpera_value_09721a', 'description': '不可使用,仅供参考:value of annual field: Market Capitalization/Common Equity - 5 Yr Average Growth Rates Annual Statistics'}
{'id': 139987, 'data_set_name': '可以使用:fnd28_value_18208a', 'description': '不可使用,仅供参考:value of annual field: Earnings per Share Continuing Operations'}
{'id': 373328, 'data_set_name': '可以使用:pv173_rawratiosmt5yzspread', 'description': '不可使用,仅供参考:It is defined as the region relative 5-year mid z-spreadIn the bond z-spread curve.'}
{'id': 62354, 'data_set_name': '可以使用:forecast_currency_book_value_per_share', 'description': '不可使用,仅供参考:Currency in which the book value per share forecast is denominated.'}
{'id': 60586, 'data_set_name': '可以使用:anl11_e_ttcrg_industryperc', 'description': '不可使用,仅供参考:Industry Percentile on E Hybrid Score with 100% being the best'}
{'id': 60394, 'data_set_name': '可以使用:anl10_entpast_det_estvalue_6307', 'description': '不可使用,仅供参考:Estimate value for earnings net taxes'}
{'id': 139785, 'data_set_name': '可以使用:fnd28_ratesq_value_08287q', 'description': '不可使用,仅供参考:value of quarterly field: Total Assets / Common Equity Ratio'}
{'id': 139211, 'data_set_name': '可以使用:fnd28_bdea_value_03263a', 'description': '不可使用,仅供参考:value of annual field: Deferred Taxes'}
{'id': 139747, 'data_set_name': '可以使用:fnd28_pftlta_value_08336a', 'description': '不可使用,仅供参考:value of annual field: Selling, General & Administrative Expenses / Sales'}
{'id': 139577, 'data_set_name': '可以使用:fnd28_levliqa_value_15121a', 'description': '不可使用,仅供参考:value of annual field: Total Capital % Total Assets'}
{'id': 139191, 'data_set_name': '可以使用:fnd28_astut_value_08416a', 'description': '不可使用,仅供参考:value of annual field: Capital Expenditure % Total Assets'}
{'id': 373208, 'data_set_name': '可以使用:japan_bid_ask_gap', 'description': '不可使用,仅供参考:Difference between bid and ask prices for Japanese securities.'}
{'id': 137392, 'data_set_name': '可以使用:revenue_per_share_annual', 'description': '不可使用,仅供参考:Total revenue divided by average diluted shares outstanding for the most recent fiscal year.'}
{'id': 139409, 'data_set_name': '可以使用:fnd28_fsa1_value_03101a', 'description': '不可使用,仅供参考:value of annual field: Current Liabilities - Total'}
{'id': 139654, 'data_set_name': '可以使用:fnd28_nddq1_value_04830q', 'description': '不可使用,仅供参考:value of quarterly field: Decrease/Increase In Other Assets/Liabilities'}
{'id': 373518, 'data_set_name': '可以使用:top1500_pca_factor1_grouping5', 'description': '不可使用,仅供参考:First principal component grouping for top 1500 securities with 5 clusters.'}
{'id': 140018, 'data_set_name': '可以使用:fnd28_value_18310q', 'description': '不可使用,仅供参考:value of quarterly field: Trailing Twelve Months Net Cash Flow Operating Activities'}
{'id': 373651, 'data_set_name': '可以使用:pv72_ibesrec2_score', 'description': '不可使用,仅供参考:pv_score'}
{'id': 139491, 'data_set_name': '可以使用:fnd28_growthratesa_value_08650a', 'description': '不可使用,仅供参考:value of annual field: Operating Income - 5 Yr Annual Growth'}
{'id': 62046, 'data_set_name': '可以使用:quarterly_effective_tax_rate_dup', 'description': '不可使用,仅供参考:Effective tax rate for the most recent quarter (duplicate field).'}
{'id': 61176, 'data_set_name': '可以使用:anl14_mean_revenue_fy3', 'description': '不可使用,仅供参考:Mean of estimations of Revenue - upcoming 3 years'}
{'id': 62018, 'data_set_name': '可以使用:quarterly_current_liabilities', 'description': '不可使用,仅供参考:Sum of all current liabilities for the most recent quarter.'}
{'id': 60841, 'data_set_name': '可以使用:anl14_high_ntp_fy5', 'description': '不可使用,仅供参考:The Highest Estimation of Net Profit - Upcoming 5 Years'}
{'id': 139740, 'data_set_name': '可以使用:fnd28_pftlta_value_08320a', 'description': '不可使用,仅供参考:value of annual field: Operating Profit Margin - 5 Yr Avg'}
{'id': 139511, 'data_set_name': '可以使用:fnd28_ishta_value_01401a', 'description': '不可使用,仅供参考:value of annual field: Pre-tax Income'}
{'id': 61175, 'data_set_name': '可以使用:anl14_mean_revenue_fy2', 'description': '不可使用,仅供参考:Mean of estimations of revenue - upcoming 2 years'}
{'id': 139697, 'data_set_name': '可以使用:fnd28_newq_value_08231q', 'description': '不可使用,仅供参考:value of quarterly field: Total Debt % Common Equity'}
{'id': 61171, 'data_set_name': '可以使用:anl14_mean_revenue_fp3', 'description': '不可使用,仅供参考:Mean of estimations of revenue - upcoming 3 quarters'}
{'id': 60761, 'data_set_name': '可以使用:anl14_high_capex_fy5', 'description': '不可使用,仅供参考:The Highest Estimation of Capital Expenditures - upcoming 5 years'}
{'id': 139832, 'data_set_name': '可以使用:fnd28_statisticsa_value_07230a', 'description': '不可使用,仅供参考:value of annual field: Total Assets (U.S.$)'}
{'id': 373540, 'data_set_name': '可以使用:top2000_factor3_group50_score', 'description': '不可使用,仅供参考:Third factor score for top 2000 securities, grouped into 50 clusters.'}
{'id': 139906, 'data_set_name': '可以使用:fnd28_value_05575q', 'description': '不可使用,仅供参考:value of quarterly field: Stock Split/Dividend Ratio - Fiscal Weekly Time Series'}
{'id': 139234, 'data_set_name': '可以使用:fnd28_bdeq_value_03251q', 'description': '不可使用,仅供参考:value of quarterly field: Long Term Debt'}
{'id': 137308, 'data_set_name': '可以使用:last_closing_price', 'description': '不可使用,仅供参考:The most recent closing or last bid price of the security.'}
{'id': 139186, 'data_set_name': '可以使用:fnd28_astut_value_08136a', 'description': '不可使用,仅供参考:value of annual field: Inventory Turnover'}
{'id': 136377, 'data_set_name': '可以使用:cash_incentive_plan_value', 'description': '不可使用,仅供参考:Value of any cash-based incentive plan held by the executive.'}
{'id': 62360, 'data_set_name': '可以使用:forecast_currency_roe', 'description': '不可使用,仅供参考:Currency in which the ROE forecast is denominated.'}
{'id': 60795, 'data_set_name': '可以使用:anl14_high_ebitda_fy1', 'description': '不可使用,仅供参考:The Highest Estimation of Earnings Before Interest, Taxes, Depreciation & Amortization - upcoming year'}
{'id': 373379, 'data_set_name': '可以使用:industry_grouping_level10_top3000_2', 'description': '不可使用,仅供参考:Industry classification group at level 10 for the top 3000 instruments.'}
{'id': 137468, 'data_set_name': '可以使用:annual_reserves_capital', 'description': '不可使用,仅供参考:Restricted Cash – Current not available for use immediately and due within a year'}
{'id': 62020, 'data_set_name': '可以使用:quarterly_current_liabilities_3', 'description': '不可使用,仅供参考:Sum of all current liabilities for the most recent quarter.'}
{'id': 138987, 'data_set_name': '可以使用:other_long_term_obligations_6', 'description': '不可使用,仅供参考:Other obligations due beyond one year not classified elsewhere.'}
{'id': 60764, 'data_set_name': '可以使用:anl14_high_cfps_fp3', 'description': '不可使用,仅供参考:The highest estimation of cash flow per share - upcoming 3 quarters'}
{'id': 136447, 'data_set_name': '可以使用:share_award_quantity', 'description': '不可使用,仅供参考:Number of shares awarded in a given incentive plan.'}
{'id': 137376, 'data_set_name': '可以使用:rep_to_pricing_fx_rate_emi1', 'description': '不可使用,仅供参考:Exchange rate used to convert reporting currency to pricing currency for this module.'}
{'id': 140009, 'data_set_name': '可以使用:fnd28_value_18286q', 'description': '不可使用,仅供参考:value of quarterly field: Derivative Liabilities Non-Current'}
{'id': 138929, 'data_set_name': '可以使用:long_term_current_liabilities_4', 'description': '不可使用,仅供参考:Long-term current liabilities reported in interim financials.'}
{'id': 373303, 'data_set_name': '可以使用:pv173_ranksmt5yzspreadchg60dsbst', 'description': '不可使用,仅供参考:It is defined as the 60-day change of 5-year mid z-spreadIn the bond z-spread curve'}
{'id': 139691, 'data_set_name': '可以使用:fnd28_newq_value_05486q', 'description': '不可使用,仅供参考:value of quarterly field: Tangible Book Value per Share'}
{'id': 61079, 'data_set_name': '可以使用:anl14_mean_div_fy5', 'description': '不可使用,仅供参考:Mean of estimations of dividend - upcoming 5 years'}
{'id': 139142, 'data_set_name': '可以使用:unrealized_other_gain_balancesheet', 'description': '不可使用,仅供参考:[Quarterly] Right-of-Use Assets - Operating Lease, Gross - Supplemental'}
{'id': 139463, 'data_set_name': '可以使用:fnd28_fsq1_value_04551q', 'description': '不可使用,仅供参考:value of quarterly field: Cash Dividends Paid - Total'}
{'id': 139424, 'data_set_name': '可以使用:fnd28_fsa1_value_04870a', 'description': '不可使用,仅供参考:value of annual field: Net Cash Flow Investing'}
{'id': 61056, 'data_set_name': '可以使用:anl14_mean_capex_fp5', 'description': '不可使用,仅供参考:Mean of estimations of capital expenditures - upcoming 5 quarters'}
{'id': 139757, 'data_set_name': '可以使用:fnd28_pftlta_value_08361a', 'description': '不可使用,仅供参考:value of annual field: Operating Income Return on Total Capital'}
{'id': 138936, 'data_set_name': '可以使用:long_term_liabilities_total_2', 'description': '不可使用,仅供参考:Total long-term liabilities as of the reporting date.'}
{'id': 139755, 'data_set_name': '可以使用:fnd28_pftlta_value_08356a', 'description': '不可使用,仅供参考:value of annual field: Interest Rate - Estimated Average'}
{'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': 139312, 'data_set_name': '可以使用:fnd28_cfq_value_04351q', 'description': '不可使用,仅供参考:value of quarterly field: Disposal of Fixed Assets'}
{'id': 139264, 'data_set_name': '可以使用:fnd28_bsasseta_value_02201a', 'description': '不可使用,仅供参考:value of annual field: Current Assets Total'}
{'id': 139349, 'data_set_name': '可以使用:fnd28_cfsourceusea_value_04440a', 'description': '不可使用,仅供参考:value of annual field: Decrease in Investments'}
{'id': 373439, 'data_set_name': '可以使用:resampled_pca_factor_9', 'description': '不可使用,仅供参考:Ninth principal component factor derived from robust resampling of returns for top 2000 securities.'}
{'id': 373333, 'data_set_name': '可以使用:pv173_rawratiosmt5yzspreadindrel', 'description': '不可使用,仅供参考:It is defined as theIndustry relative 5-year mid z-spreadIn the bond z-spread curve.'}
{'id': 139253, 'data_set_name': '可以使用:fnd28_bsasseta_value_02001a', 'description': '不可使用,仅供参考:Value of annual field: Cash & Short-Term Investments'}
{'id': 139323, 'data_set_name': '可以使用:fnd28_cfq_value_04796q', 'description': '不可使用,仅供参考:value of quarterly field: Other Sources - Investing'}
{'id': 139227, 'data_set_name': '可以使用:fnd28_bdeq_value_03040q', 'description': '不可使用,仅供参考:value of quarterly field: Accounts Payable'}
{'id': 139794, 'data_set_name': '可以使用:fnd28_ratesq_value_08371q', 'description': '不可使用,仅供参考:value of quarterly field: Return on Equity - per Share'}
{'id': 61989, 'data_set_name': '可以使用:quarterly_capital_spending_per_share_2', 'description': '不可使用,仅供参考:Capital spending per share for the most recent quarter.'}
{'id': 136430, 'data_set_name': '可以使用:intrinsic_value_unexercisable_options', 'description': '不可使用,仅供参考:Intrinsic value of unexercisable options awarded in the period.'}
{'id': 139221, 'data_set_name': '可以使用:fnd28_bdea_value_03499a', 'description': '不可使用,仅供参考:value of annual field: Treasury Stock'}
{'id': 373519, 'data_set_name': '可以使用:top1500_pca_factor1_grouping50', 'description': '不可使用,仅供参考:First principal component grouping for top 1500 securities with 50 clusters.'}
{'id': 139450, 'data_set_name': '可以使用:fnd28_fsq1_value_03040q', 'description': '不可使用,仅供参考:value of quarterly field: Accounts Payable'}
{'id': 60868, 'data_set_name': '可以使用:anl14_high_ptprep_fy5', 'description': '不可使用,仅供参考:The highest estimation of Reported Pretax Profit - upcoming 5 years'}
{'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': 61994, 'data_set_name': '可以使用:quarterly_cash_flow_per_share', 'description': '不可使用,仅供参考:Cash flow divided by average shares for the most recent quarter.'}
{'id': 139351, 'data_set_name': '可以使用:fnd28_cfsourceusea_value_04447a', 'description': '不可使用,仅供参考:value of annual field: Other Uses - Financing'}
{'id': 137551, 'data_set_name': '可以使用:fixed_production_assets', 'description': '不可使用,仅供参考:Value of fixed assets used in production.'}
{'id': 139564, 'data_set_name': '可以使用:fnd28_levliqa_value_08226a', 'description': '不可使用,仅供参考:value of annual field: Long Term Debt % Common Equity'}
{'id': 138940, 'data_set_name': '可以使用:long_term_loans_liabilities', 'description': '不可使用,仅供参考:Long-term loans and liabilities reported for the annual period.'}
{'id': 61103, 'data_set_name': '可以使用:anl14_mean_eps_fp4', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Per Share - Upcoming 4 Quarters'}
{'id': 140820, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_other_lt_liabilities', 'description': '不可使用,仅供参考:Other LT Liabilities'}
{'id': 60829, 'data_set_name': '可以使用:anl14_high_ndebt_fy3', 'description': '不可使用,仅供参考:The Highest Estimation of Net Debt - upcoming 3 years'}
{'id': 61168, 'data_set_name': '可以使用:anl14_mean_ptprep_fy5', 'description': '不可使用,仅供参考:Mean of estimations of reported pretax profit - upcoming 5 years'}
{'id': 139791, 'data_set_name': '可以使用:fnd28_ratesq_value_08326q', 'description': '不可使用,仅供参考:value of quarterly field: Return on Assets'}
{'id': 139962, 'data_set_name': '可以使用:fnd28_value_09411', 'description': '不可使用,仅供参考:value of field: Dividend Yield - 5 Yr Avg High'}
{'id': 139466, 'data_set_name': '可以使用:fnd28_fsq1_value_04851q', 'description': '不可使用,仅供参考:value of quarterly field: Increase/Decrease in Cash & Short Term Investments'}
{'id': 139220, 'data_set_name': '可以使用:fnd28_bdea_value_03498a', 'description': '不可使用,仅供参考:value of annual field: Unrealized Gain/Loss On Marketable Securities'}
{'id': 139516, 'data_set_name': '可以使用:fnd28_ishta_value_01706a', 'description': '不可使用,仅供参考:value of annual field: Net Income after Preferred Dividends (Basic EPS)'}
{'id': 139860, 'data_set_name': '可以使用:fnd28_stpera_value_09416a', 'description': '不可使用,仅供参考:value of annual field: Dividend Yield - 5 Yr Avg Low'}
{'id': 139332, 'data_set_name': '可以使用:fnd28_cfq_value_04840q', 'description': '不可使用,仅供参考:value of quarterly field: Effect of Exchange Rate on Cash'}
{'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': 139343, 'data_set_name': '可以使用:fnd28_cfsourceusea_value_04251a', 'description': '不可使用,仅供参考:value of annual field: Net Proceeds from Sale/Issuance of Common & Preferred'}
{'id': 137494, 'data_set_name': '可以使用:current_maturities_short_term', 'description': '不可使用,仅供参考:Current maturities of short-term debt obligations.'}
{'id': 139892, 'data_set_name': '可以使用:fnd28_value_05191q', 'description': '不可使用,仅供参考:value of quarterly field: Common Shares Used to Calculate EPS'}
{'id': 139613, 'data_set_name': '可以使用:fnd28_nddq1_value_03263q', 'description': '不可使用,仅供参考:value of quarterly field: Deferred Taxes'}
{'id': 62356, 'data_set_name': '可以使用:forecast_currency_dps', 'description': '不可使用,仅供参考:Currency in which the DPS forecast is denominated.'}
{'id': 139205, 'data_set_name': '可以使用:fnd28_bdea_value_03249a', 'description': '不可使用,仅供参考:value of annual field: Capitalized Lease Obligations'}
{'id': 62216, 'data_set_name': '可以使用:reporting_to_pricing_currency_exrate', 'description': '不可使用,仅供参考:Exchange rate between reporting currency and pricing currency.'}
{'id': 139384, 'data_set_name': '可以使用:fnd28_fsa1_value_01250a', 'description': '不可使用,仅供参考:value of annual field: Operating Income'}
{'id': 139088, 'data_set_name': '可以使用:short_term_net_cash_balance', 'description': '不可使用,仅供参考:Net Cash – Beginning Balance represents the beginning balance of cash and cash equivalents, as\r\ndefined by a company.'}
{'id': 139788, 'data_set_name': '可以使用:fnd28_ratesq_value_08311q', 'description': '不可使用,仅供参考:value of quarterly field: Cash Flow/Sales'}
{'id': 139830, 'data_set_name': '可以使用:fnd28_statisticsa_value_05508a', 'description': '不可使用,仅供参考:value of annual field: Sales per Share'}
{'id': 139058, 'data_set_name': '可以使用:short_term_bank_investment_total', 'description': '不可使用,仅供参考:Total short-term bank investments at period end.'}
{'id': 60780, 'data_set_name': '可以使用:anl14_high_ebit_fp1', 'description': '不可使用,仅供参考:The highest estimation of earnings before interest & taxes - upcoming quarter'}
{'id': 60597, 'data_set_name': '可以使用:anl11_emp3reg_industryrnk', 'description': '不可使用,仅供参考:Industry Rank on the third EMP score with 1 as highest'}
{'id': 62134, 'data_set_name': '可以使用:quarterly_price_to_sales_ratio', 'description': '不可使用,仅供参考:Price divided by sales per share for the quarter.'}
{'id': 139379, 'data_set_name': '可以使用:fnd28_fsa1_value_01051a', 'description': '不可使用,仅供参考:value of annual field: Cost Of Goods Sold (Excl Depreciation)'}
{'id': 62167, 'data_set_name': '可以使用:quarterly_revenue_per_share', 'description': '不可使用,仅供参考:Total revenue divided by average shares for the quarter.'}
{'id': 140875, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_earn_for_common', 'description': '不可使用,仅供参考:Net Income Available To Common Shareholders'}
{'id': 139526, 'data_set_name': '可以使用:fnd28_ishtq_value_01254q', 'description': '不可使用,仅供参考:value of quarterly field: Extraordinary Charge - Pretax'}
{'id': 373525, 'data_set_name': '可以使用:top1500_pca_factor3_grouping2', 'description': '不可使用,仅供参考:Third principal component grouping for top 1500 securities with 2 clusters.'}
{'id': 60724, 'data_set_name': '可以使用:anl14_actvalue_capex_fp0', 'description': '不可使用,仅供参考:Capital Expenditures - Recent Last Quarter'}
{'id': 137515, 'data_set_name': '可以使用:earnings_before_income_tax', 'description': '不可使用,仅供参考:Earnings before deduction of income tax expense.'}
{'id': 60830, 'data_set_name': '可以使用:anl14_high_ndebt_fy4', 'description': '不可使用,仅供参考:The Highest Estimation of Net Debt - Upcoming 4 Years'}
{'id': 140612, 'data_set_name': '可以使用:fnd72_pit_or_is_a_eff_int_rate', 'description': '不可使用,仅供参考:Percentage of total interest incurred over the average of total debt during the period'}
{'id': 61663, 'data_set_name': '可以使用:anl15_gr_12_m_tr_mean', 'description': '不可使用,仅供参考:The weighted average of 12-month trailing EPS aggregated within GICS group grouping.'}
{'id': 139527, 'data_set_name': '可以使用:fnd28_ishtq_value_01262q', 'description': '不可使用,仅供参考:value of quarterly field: Other Income/Expense Net'}
{'id': 139981, 'data_set_name': '可以使用:fnd28_value_18189a', 'description': '不可使用,仅供参考:value of annual field: Deferred Foreign Income Tax'}
{'id': 139202, 'data_set_name': '可以使用:fnd28_bdea_value_03069a', 'description': '不可使用,仅供参考:value of annual field: Other Accrued Expenses'}
{'id': 138992, 'data_set_name': '可以使用:other_net_equity_total', 'description': '不可使用,仅供参考:Total of other net equity items for the annual period.'}
{'id': 139053, 'data_set_name': '可以使用:shares_outstanding_total', 'description': '不可使用,仅供参考:Total number of shares currently issued and outstanding for the company.'}
{'id': 137038, 'data_set_name': '可以使用:fnd17_chpctpricewtd', 'description': '不可使用,仅供参考:Week to Date price change in percentage'}
{'id': 139557, 'data_set_name': '可以使用:fnd28_levliqa_value_08121a', 'description': '不可使用,仅供参考:value of annual field: Receivables % Total Current Assets'}
{'id': 60727, 'data_set_name': '可以使用:anl14_actvalue_ebit_fp0', 'description': '不可使用,仅供参考:Earnings Before Interest & Taxes - recent last quarter'}
{'id': 136740, 'data_set_name': '可以使用:fnd17_alldelay1_chpctpriceqtd', 'description': '不可使用,仅供参考:Quarter to Date price change in percentage'}
{'id': 62230, 'data_set_name': '可以使用:usd_to_reporting_currency_exrate', 'description': '不可使用,仅供参考:Exchange rate between USD and the reporting currency.'}
{'id': 138961, 'data_set_name': '可以使用:net_income_current_period', 'description': '不可使用,仅供参考:Net income for the current reporting period.'}
{'id': 373532, 'data_set_name': '可以使用:top2000_factor2_group10_score', 'description': '不可使用,仅供参考:Second factor score for top 2000 securities, grouped into 10 clusters.'}
{'id': 139666, 'data_set_name': '可以使用:fnd28_nddq2_value_18184q', 'description': '不可使用,仅供参考:value of quarterly field: Deferred Taxes-Debit'}
{'id': 60776, 'data_set_name': '可以使用:anl14_high_div_fy2', 'description': '不可使用,仅供参考:The Highest Estimation of Dividend - Upcoming 2 Years'}
{'id': 139559, 'data_set_name': '可以使用:fnd28_levliqa_value_08131a', 'description': '不可使用,仅供参考:value of annual field: Accounts Receivables Days'}
{'id': 140039, 'data_set_name': '可以使用:fnd28_value_18469q', 'description': '不可使用,仅供参考:value of quarterly field: Earnings per Share Fiscal Period Basic Revised'}
{'id': 139845, 'data_set_name': '可以使用:fnd28_stpera_value_08805a', 'description': '不可使用,仅供参考:value of annual field: Total Investment Return - 5 Yr Annual Return'}
{'id': 138942, 'data_set_name': '可以使用:long_term_loans_total_debt', 'description': '不可使用,仅供参考:Total long-term loans and debt reported for the interim period.'}
{'id': 140608, 'data_set_name': '可以使用:fnd72_pit_or_is_a_earn_for_common', 'description': '不可使用,仅供参考:Net Income Available To Common Shareholders'}
{'id': 139052, 'data_set_name': '可以使用:shareholders_other_equity_2', 'description': '不可使用,仅供参考:Other equity attributable to shareholders.'}
{'id': 137345, 'data_set_name': '可以使用:quarterly_cash_and_equivalents_3', 'description': '不可使用,仅供参考:Cash and short-term investments for the most recent quarter.'}
{'id': 136606, 'data_set_name': '可以使用:fnd17_8_usdtorepexrate', 'description': '不可使用,仅供参考:Reporting Currency to USD exchange rate'}
{'id': 139525, 'data_set_name': '可以使用:fnd28_ishtq_value_01251q', 'description': '不可使用,仅供参考:value of quarterly field: Interest Expense on Debt'}
{'id': 61059, 'data_set_name': '可以使用:anl14_mean_capex_fy3', 'description': '不可使用,仅供参考:Mean of Estimations of Capital Expenditures - upcoming 3 years'}
{'id': 61113, 'data_set_name': '可以使用:anl14_mean_epsrep_fp4', 'description': '不可使用,仅供参考:Mean of Estimations of Reported Earnings Per Share - Upcoming 4 Quarters'}
{'id': 60742, 'data_set_name': '可以使用:anl14_high_bvps_fp1', 'description': '不可使用,仅供参考:The Highest Estimation of Book Value Per Share - Upcoming Quarter'}
{'id': 373615, 'data_set_name': '可以使用:pv37_volume_global3h', 'description': '不可使用,仅供参考:Global Trading Volume 3H'}
{'id': 139486, 'data_set_name': '可以使用:fnd28_growthratesa_value_08631a', 'description': '不可使用,仅供参考:value of annual field: Net Sales/Revenues Growth'}
{'id': 139158, 'data_set_name': '可以使用:value_investment_assets_total', 'description': '不可使用,仅供参考:Total value of investment assets held.'}
{'id': 61063, 'data_set_name': '可以使用:anl14_mean_cfps_fp2', 'description': '不可使用,仅供参考:Mean of estimations of cash flow per share - upcoming 2 quarters'}
{'id': 139133, 'data_set_name': '可以使用:total_liabilities_long_term', 'description': '不可使用,仅供参考:Total long-term liabilities outstanding.'}
{'id': 139408, 'data_set_name': '可以使用:fnd28_fsa1_value_03063a', 'description': '不可使用,仅供参考:value of annual field: Income Taxes Payable'}
{'id': 138925, 'data_set_name': '可以使用:long_term_collateral_debt', 'description': '不可使用,仅供参考:Long-term collateralized debt reported for the annual period.'}
{'id': 61992, 'data_set_name': '可以使用:quarterly_cash_and_equivalents', 'description': '不可使用,仅供参考:Cash and short-term investments for the most recent quarter.'}
{'id': 137488, 'data_set_name': '可以使用:cumulative_short_term_creditors_since_q1', 'description': '不可使用,仅供参考:Cumulative short-term creditors value since the first quarter.'}
{'id': 137537, 'data_set_name': '可以使用:finance_lease_debt_total', 'description': '不可使用,仅供参考:Total finance lease debt outstanding.'}
{'id': 140935, 'data_set_name': '可以使用:srp_earnings_score', 'description': '不可使用,仅供参考:Earnings score'}
{'id': 139518, 'data_set_name': '可以使用:fnd28_ishtq_value_01051q', 'description': '不可使用,仅供参考:value of quarterly field: Cost Of Goods Sold (Excl Depreciation)'}
{'id': 139579, 'data_set_name': '可以使用:fnd28_nddq1_value_01051q', 'description': '不可使用,仅供参考:value of quarterly field: Cost Of Goods Sold (Excl Depreciation)'}
{'id': 60734, 'data_set_name': '可以使用:anl14_actvalue_opp_fp0', 'description': '不可使用,仅供参考:Operating profit - recent last quarter'}
{'id': 60781, 'data_set_name': '可以使用:anl14_high_ebit_fp2', 'description': '不可使用,仅供参考:The Highest Estimation of Earnings Before Interest & Taxes - upcoming 2 quarters'}
{'id': 373436, 'data_set_name': '可以使用:resampled_pca_factor_6', 'description': '不可使用,仅供参考:Sixth principal component factor derived from robust resampling of returns for top 2000 securities.'}
{'id': 60596, 'data_set_name': '可以使用:anl11_emp3reg_industryperc', 'description': '不可使用,仅供参考:Industry Percentile on EMP3 100% being the best'}
{'id': 139536, 'data_set_name': '可以使用:fnd28_ishtq_value_18155q', 'description': '不可使用,仅供参考:value of quarterly field: Operating Income before Depreciation/Amortization (Operating EBITDA)'}
{'id': 60662, 'data_set_name': '可以使用:anl11_gposcorreg_industryrnk', 'description': '不可使用,仅供参考:Industry Rank on G Max Correlation Score with 1 being the highest rank'}
{'id': 139718, 'data_set_name': '可以使用:fnd28_newq_value_08601q', 'description': '不可使用,仅供参考:value of quarterly field: Earnings per Share Growth'}
{'id': 60874, 'data_set_name': '可以使用:anl14_high_revenue_fy1', 'description': '不可使用,仅供参考:The Highest Estimation of Revenue - upcoming year'}
{'id': 62324, 'data_set_name': '可以使用:anl44_2_pretaxprofit_rep_value', 'description': '不可使用,仅供参考:pretaxprofit rep value'}
{'id': 139035, 'data_set_name': '可以使用:senior_long_term_liabilities', 'description': '不可使用,仅供参考:Senior long-term liabilities outstanding at period end.'}
{'id': 139958, 'data_set_name': '可以使用:fnd28_value_09304q', 'description': '不可使用,仅供参考:value of quarterly field: Price/Book Value Ratio - Close'}
{'id': 61674, 'data_set_name': '可以使用:anl15_gr_18_m_mean', 'description': '不可使用,仅供参考:The weighted average of 18-month forward EPS estimation aggregated within GICS group grouping.'}
{'id': 139076, 'data_set_name': '可以使用:short_term_interest_notes', 'description': '不可使用,仅供参考:Short-term interest-bearing notes outstanding.'}
{'id': 62362, 'data_set_name': '可以使用:forecast_currency_tangible_book_value_per_share', 'description': '不可使用,仅供参考:Currency in which the tangible book value per share forecast is denominated.'}
{'id': 138943, 'data_set_name': '可以使用:long_term_minority_interest', 'description': '不可使用,仅供参考:Long-term minority interest in consolidated subsidiaries.'}
{'id': 139295, 'data_set_name': '可以使用:fnd28_bsassetq_value_18390q', 'description': '不可使用,仅供参考:value of quarterly field: Construction Work in Progress'}
{'id': 139887, 'data_set_name': '可以使用:fnd28_value_05092', 'description': '不可使用,仅供参考:value of field: Market Price 52 Week Low'}
{'id': 140548, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_cash_from_inv_act', 'description': '不可使用,仅供参考:Cash From Investing Activities'}
{'id': 373610, 'data_set_name': '可以使用:pv37_volume_global', 'description': '不可使用,仅供参考:Global Trading Volume'}
{'id': 138949, 'data_set_name': '可以使用:long_term_tax_payable_2', 'description': '不可使用,仅供参考:Long-term tax liabilities due beyond one year.'}
{'id': 140022, 'data_set_name': '可以使用:fnd28_value_18318q', 'description': '不可使用,仅供参考:value of quarterly field: Trailing Twelve Months Cash Dividends Paid'}
{'id': 139159, 'data_set_name': '可以使用:value_investment_expenditures', 'description': '不可使用,仅供参考:Total value of investment expenditures made during the period.'}
{'id': 139953, 'data_set_name': '可以使用:fnd28_value_09104q', 'description': '不可使用,仅供参考:value of quarterly field: Price/Earnings Ratio Close'}
{'id': 373412, 'data_set_name': '可以使用:pca_industry_grouping_method4_10', 'description': '不可使用,仅供参考:Industry grouping using fourth method and 10 clusters for top 3000 equities.'}
{'id': 139664, 'data_set_name': '可以使用:fnd28_nddq2_value_18165q', 'description': '不可使用,仅供参考:value of quarterly field: Deferred Tax Asset - Current'}
{'id': 136585, 'data_set_name': '可以使用:fnd17_3_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
{'id': 138935, 'data_set_name': '可以使用:long_term_debt_value', 'description': '不可使用,仅供参考:Total amount of long-term debt obligations for the period.'}
{'id': 373524, 'data_set_name': '可以使用:top1500_pca_factor2_grouping50', 'description': '不可使用,仅供参考:Second principal component grouping for top 1500 securities with 50 clusters.'}
{'id': 373354, 'data_set_name': '可以使用:pv173_zscoreseqbddivrgsprd5y120dsbst', 'description': '不可使用,仅供参考:It is defined as the difference of market equity return and estimated equity return based on 120-day linear regression of equity return on 5-year mid z-spread percentage change and MSCI ACWIIndex return'}
{'id': 373279, 'data_set_name': '可以使用:pv132_px_high', 'description': '不可使用,仅供参考:High Price'}
{'id': 139437, 'data_set_name': '可以使用:fnd28_fsq1_value_01451q', 'description': '不可使用,仅供参考:value of quarterly field: Income Taxes'}
{'id': 140102, 'data_set_name': '可以使用:fnd28_wsannualstats_value_08636', 'description': '不可使用,仅供参考:value of field: Net Income Growth'}
{'id': 139488, 'data_set_name': '可以使用:fnd28_growthratesa_value_08636a', 'description': '不可使用,仅供参考:value of annual field: Net Income Growth'}
{'id': 139918, 'data_set_name': '可以使用:fnd28_value_08140', 'description': '不可使用,仅供参考:value of field: Inventory Turnover - 5 Yr Avg'}
{'id': 61995, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_2', 'description': '不可使用,仅供参考:Cash flow per share for the most recent quarter.'}
{'id': 60817, 'data_set_name': '可以使用:anl14_high_epsrep_fy3', 'description': '不可使用,仅供参考:The Highest Estimation of Reported Earnings Per Share - upcoming 3 years'}
{'id': 60365, 'data_set_name': '可以使用:anl10_dpspast_det_estvalue_6217', 'description': '不可使用,仅供参考:Estimate value for dividends per share'}
{'id': 140817, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_other_cur_asset', 'description': '不可使用,仅供参考:Other Current Assets'}
{'id': 139925, 'data_set_name': '可以使用:fnd28_value_08241', 'description': '不可使用,仅供参考:value of field: Common Equity % Total Assets'}
{'id': 140017, 'data_set_name': '可以使用:fnd28_value_18309q', 'description': '不可使用,仅供参考:value of quarterly field: Trailing Twelve Months EBITDA'}
{'id': 139304, 'data_set_name': '可以使用:fnd28_cfq_value_04148q', 'description': '不可使用,仅供参考:value of quarterly field: Interest Paid (Cash Flow)'}
{'id': 62095, 'data_set_name': '可以使用:quarterly_long_term_debt_to_total_capital_2', 'description': '不可使用,仅供参考:Long-term debt divided by total capital for the quarter.'}
{'id': 139328, 'data_set_name': '可以使用:fnd28_cfq_value_04828q', 'description': '不可使用,仅供参考:value of quarterly field: Increase/Decrease In Income Tax Payable'}
{'id': 60744, 'data_set_name': '可以使用:anl14_high_bvps_fp3', 'description': '不可使用,仅供参考:The Highest Estimation of Book Value Per Share - upcoming 3 quarters'}
{'id': 139195, 'data_set_name': '可以使用:fnd28_bdea_value_03040a', 'description': '不可使用,仅供参考:value of annual field: Accounts Payable'}
{'id': 140359, 'data_set_name': '可以使用:fnd6_us_ciotherq', 'description': '不可使用,仅供参考:Comp Inc - Other Adj'}
{'id': 139765, 'data_set_name': '可以使用:fnd28_pftlta_value_08381a', 'description': '不可使用,仅供参考:value of annual field: Cash Earnings Return on Equity'}
{'id': 139535, 'data_set_name': '可以使用:fnd28_ishtq_value_18150q', 'description': '不可使用,仅供参考:value of quarterly field: Income From Continuing Operations'}
{'id': 140067, 'data_set_name': '可以使用:fnd28_value_19542', 'description': '不可使用,仅供参考:value of field: Product Segment 5 - Operating Income'}
{'id': 139532, 'data_set_name': '可以使用:fnd28_ishtq_value_01651q', 'description': '不可使用,仅供参考:value of quarterly field: Net Income - Bottom Line'}
{'id': 61183, 'data_set_name': '可以使用:anl14_mean_roe_fp1', 'description': '不可使用,仅供参考:Mean of estimations of returns on equity - upcoming quarter'}
{'id': 139964, 'data_set_name': '可以使用:fnd28_value_09602', 'description': '不可使用,仅供参考:value of field: Price/Cash Flow - Current'}
{'id': 139184, 'data_set_name': '可以使用:fnd28_a_value_08381', 'description': '不可使用,仅供参考:value of field: Cash Earnings Return on Equity'}
{'id': 140747, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_1_bs_other_cur_asset', 'description': '不可使用,仅供参考:Other Current Assets'}
{'id': 140083, 'data_set_name': '可以使用:fnd28_wcfsq1_value_04860q', 'description': '不可使用,仅供参考:value of quarterly field: Net Cash Flow - Operating Activities'}
{'id': 373542, 'data_set_name': '可以使用:top2000_factor4_group10_score', 'description': '不可使用,仅供参考:Fourth factor score for top 2000 securities, grouped into 10 clusters.'}
{'id': 60843, 'data_set_name': '可以使用:anl14_high_ntprep_fp2', 'description': '不可使用,仅供参考:The Highest Estimation of Reported Net Profit - Upcoming 2 Quarters'}
{'id': 373567, 'data_set_name': '可以使用:pv37_high_13', 'description': '不可使用,仅供参考:High price'}
{'id': 137512, 'data_set_name': '可以使用:dividend_per_share_declared', 'description': '不可使用,仅供参考:Dividend per share declared for the period.'}
{'id': 140119, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_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': 139587, 'data_set_name': '可以使用:fnd28_nddq1_value_01501q', 'description': '不可使用,仅供参考:value of quarterly field: Minority Interest'}
{'id': 373579, 'data_set_name': '可以使用:pv37_intv_mean', 'description': '不可使用,仅供参考:Intraday Volume Mean'}
{'id': 139859, 'data_set_name': '可以使用:fnd28_stpera_value_09411a', 'description': '不可使用,仅供参考:value of annual field: Dividend Yield - 5 Yr Avg High'}
{'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': 139542, 'data_set_name': '可以使用:fnd28_ishtspmnt_value_01201a', 'description': '不可使用,仅供参考:value of annual field: Research and Development Expense'}
{'id': 139531, 'data_set_name': '可以使用:fnd28_ishtq_value_01551q', 'description': '不可使用,仅供参考:value of quarterly field: Net Income before Extraordinary Items/Preferred Dividends'}
{'id': 60729, 'data_set_name': '可以使用:anl14_actvalue_eps_fp0', 'description': '不可使用,仅供参考:Earnings per share - recent last quarter'}
{'id': 62313, 'data_set_name': '可以使用:anl44_2_operatingprofit_lastactvalue', 'description': '不可使用,仅供参考:operatingprofit lastactvalue'}
{'id': 61152, 'data_set_name': '可以使用:anl14_mean_opp_fp1', 'description': '不可使用,仅供参考:Mean of Estimations of Operating Profit - upcoming quarter'}
{'id': 139622, 'data_set_name': '可以使用:fnd28_nddq1_value_03499q', 'description': '不可使用,仅供参考:value of quarterly field: Treasury Stock'}
{'id': 60570, 'data_set_name': '可以使用:anl11_e1reg_industryrnk', 'description': '不可使用,仅供参考:Industry Rank on E1 1 being the highest rank'}
{'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': 60812, 'data_set_name': '可以使用:anl14_high_epsrep_fp3', 'description': '不可使用,仅供参考:The Highest Estimation of Reported Earnings Per Share - upcoming 3 quarters'}
{'id': 139313, 'data_set_name': '可以使用:fnd28_cfq_value_04401q', 'description': '不可使用,仅供参考:value of quarterly field: Long Term Borrowings'}
{'id': 62082, 'data_set_name': '可以使用:quarterly_long_term_debt_per_share_2', 'description': '不可使用,仅供参考:Long-term debt per share for the most recent quarter.'}
{'id': 60885, 'data_set_name': '可以使用:anl14_high_roe_fp3', 'description': '不可使用,仅供参考:The highest estimation of returns on equity - upcoming 3 quarters'}
{'id': 60745, 'data_set_name': '可以使用:anl14_high_bvps_fp4', 'description': '不可使用,仅供参考:The highest estimation of book value per share - upcoming 4 quarters'}
{'id': 139346, 'data_set_name': '可以使用:fnd28_cfsourceusea_value_04351a', 'description': '不可使用,仅供参考:value of annual field: Disposal of Fixed Assets'}
{'id': 137471, 'data_set_name': '可以使用:annual_short_term_notes_current', 'description': '不可使用,仅供参考:Annual short-term notes currently outstanding.'}
{'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': 139641, 'data_set_name': '可以使用:fnd28_nddq1_value_04551q', 'description': '不可使用,仅供参考:value of quarterly field: Cash Dividends Paid - Total'}
{'id': 373364, 'data_set_name': '可以使用:pv173_zscoresmt5yzspreadzscore60dsbst', 'description': '不可使用,仅供参考:It is defined as the 60-day z-score of 5-year mid z-spreadIn the bond z-spread curve'}
{'id': 140550, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_cash_paid_for_tax', 'description': '不可使用,仅供参考:Cash Paid for Taxes'}
{'id': 60882, 'data_set_name': '可以使用:anl14_high_roa_fy4', 'description': '不可使用,仅供参考:The highest estimation of Returns on Assets - upcoming 4 years'}
{'id': 60798, 'data_set_name': '可以使用:anl14_high_ebitda_fy4', 'description': '不可使用,仅供参考:The highest estimation of Earnings Before Interest, Taxes, Depreciation & Amortization - upcoming 4 years'}
{'id': 61114, 'data_set_name': '可以使用:anl14_mean_epsrep_fp5', 'description': '不可使用,仅供参考:Mean of estimations of Reported Earnings Per Share - upcoming 5 quarters'}
{'id': 139548, 'data_set_name': '可以使用:fnd28_ishtspmnt_value_18150a', 'description': '不可使用,仅供参考:value of annual field: Income From Continuing Operations'}
{'id': 139588, 'data_set_name': '可以使用:fnd28_nddq1_value_01505q', 'description': '不可使用,仅供参考:value of quarterly field: Discontinued Operations'}
{'id': 139890, 'data_set_name': '可以使用:fnd28_value_05145', 'description': '不可使用,仅供参考:value of field: Dividends per Share - Last 12 Months'}
{'id': 139185, 'data_set_name': '可以使用:fnd28_a_value_08631', 'description': '不可使用,仅供参考:value of field: Net Sales/Revenues Growth'}
{'id': 139329, 'data_set_name': '可以使用:fnd28_cfq_value_04829q', 'description': '不可使用,仅供参考:value of quarterly field: Increase/Decrease In Other Accruals'}
{'id': 137470, 'data_set_name': '可以使用:annual_short_term_creditors', 'description': '不可使用,仅供参考:Annual amount of short-term creditors at the reporting date.'}
{'id': 61689, 'data_set_name': '可以使用:anl15_gr_cal_fy1_mean', 'description': '不可使用,仅供参考:The weighted average of EPS estimation for the calendarized 1 fiscal year aggregated within GICS group grouping.'}
{'id': 139940, 'data_set_name': '可以使用:fnd28_value_08621', 'description': '不可使用,仅供参考:value of field: Total Assets Growth (year ago)'}
{'id': 140547, 'data_set_name': '可以使用:fnd72_pit_or_cf_a_cf_cash_from_fnc_act', 'description': '不可使用,仅供参考:Cash from Financing Activities'}
{'id': 139801, 'data_set_name': '可以使用:fnd28_ratesq_value_08606q', 'description': '不可使用,仅供参考:value of quarterly field: Book Value per Share Growth (year ago)'}
{'id': 61117, 'data_set_name': '可以使用:anl14_mean_epsrep_fy3', 'description': '不可使用,仅供参考:Mean of Estimations of Reported Earnings Per Share - upcoming 3 years'}
{'id': 139593, 'data_set_name': '可以使用:fnd28_nddq1_value_02003q', 'description': '不可使用,仅供参考:value of quarterly field: Cash'}
{'id': 139235, 'data_set_name': '可以使用:fnd28_bdeq_value_03255q', 'description': '不可使用,仅供参考:value of quarterly field: Total Debt'}
{'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': 140511, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_other_lt_liabilities', 'description': '不可使用,仅供参考:Other LT Liabilities'}
{'id': 373200, 'data_set_name': '可以使用:ticker', 'description': '不可使用,仅供参考:Ticker'}
{'id': 137427, 'data_set_name': '可以使用:accounts_payable_current_2', 'description': '不可使用,仅供参考:[Quarterly] Construction in Progress - Gross'}
{'id': 373539, 'data_set_name': '可以使用:top2000_factor3_group2_score', 'description': '不可使用,仅供参考:Third factor score for top 2000 securities, grouped into 2 clusters.'}
{'id': 139296, 'data_set_name': '可以使用:fnd28_cfq_value_03151q', 'description': '不可使用,仅供参考:value of quarterly field: Working Capital'}
{'id': 139198, 'data_set_name': '可以使用:fnd28_bdea_value_03061a', 'description': '不可使用,仅供参考:value of annual field: Dividends Payable'}
{'id': 138883, 'data_set_name': '可以使用:fully_paid_share_capital', 'description': '不可使用,仅供参考:Total value of fully paid share capital issued by the company.'}
{'id': 60788, 'data_set_name': '可以使用:anl14_high_ebit_fy4', 'description': '不可使用,仅供参考:The Highest Estimation of Earnings Before Interest & Taxes - upcoming 4 years'}
{'id': 139062, 'data_set_name': '可以使用:short_term_cash_market_securities', 'description': '不可使用,仅供参考:Short-term cash and marketable securities held.'}
{'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': 60693, 'data_set_name': '可以使用:anl11_region_industrycount', 'description': '不可使用,仅供参考:Region Industry Count'}
{'id': 139272, 'data_set_name': '可以使用:fnd28_bsasseta_value_02648a', 'description': '不可使用,仅供参考:value of annual field: Tangible Other Assets'}
{'id': 139419, 'data_set_name': '可以使用:fnd28_fsa1_value_04551a', 'description': '不可使用,仅供参考:value of annual field: Cash Dividends Paid - Total'}
{'id': 140008, 'data_set_name': '可以使用:fnd28_value_18275a', 'description': '不可使用,仅供参考:value of annual field: Impairment of Financial Fixed Assets'}
{'id': 139239, 'data_set_name': '可以使用:fnd28_bdeq_value_03426q', 'description': '不可使用,仅供参考:value of quarterly field: Minority Interest'}
{'id': 60518, 'data_set_name': '可以使用:anl11_cit1reg_industryperc', 'description': '不可使用,仅供参考:Industry Percentile on CIT1 100% being the best'}
{'id': 139089, 'data_set_name': '可以使用:short_term_net_cash_change', 'description': '不可使用,仅供参考:Net Change in Cash'}
{'id': 139519, 'data_set_name': '可以使用:fnd28_ishtq_value_01100q', 'description': '不可使用,仅供参考:value of quarterly field: Gross Income'}
{'id': 139616, 'data_set_name': '可以使用:fnd28_nddq1_value_03451q', 'description': '不可使用,仅供参考:value of quarterly field: Preferred Stock'}
{'id': 140846, 'data_set_name': '可以使用:fnd72_s_pit_or_cf_q_cf_act_cash_paid_for_int_debt', 'description': '不可使用,仅供参考:Cash Paid for Interest'}
{'id': 139212, 'data_set_name': '可以使用:fnd28_bdea_value_03273a', 'description': '不可使用,仅供参考:value of annual field: Other Liabilities'}
{'id': 62036, 'data_set_name': '可以使用:quarterly_earnings_before_tax', 'description': '不可使用,仅供参考:Pretax income for the most recent quarter.'}
{'id': 140168, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_pcwt', 'description': '不可使用,仅供参考:Time Weighted Cash Yield. It is defined as the time-weighted average of cash flows per share estimates in fiscal year 1 and fiscal year 2 divided by close price.'}
{'id': 137017, 'data_set_name': '可以使用:fnd17_ataxrate', 'description': '不可使用,仅供参考:Tax rate - most recent fiscal year'}
{'id': 140596, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_net_cash_paid_for_aquis', 'description': '不可使用,仅供参考:Net Cash Paid for Acquisitions'}
{'id': 139500, 'data_set_name': '可以使用:fnd28_ishta_value_01148a', 'description': '不可使用,仅供参考:value of annual field: Depreciation'}
{'id': 61189, 'data_set_name': '可以使用:anl14_mean_roe_fy3', 'description': '不可使用,仅供参考:Mean of Estimations of Returns on Equity - upcoming 3 years'}
{'id': 140167, 'data_set_name': '可以使用:fnd31_qsg5additionalfactor3_monthly_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': 373580, 'data_set_name': '可以使用:pv37_ivwp_mean', 'description': '不可使用,仅供参考:Intraday VWAP Mean'}
{'id': 373358, 'data_set_name': '可以使用:pv173_zscoresmt5yzspreadchgstd20d', 'description': '不可使用,仅供参考:It is defined as the 20-day standard deviation of changeIn 5-year mid z-spreadIn the bond z-spread curve.'}
{'id': 139217, 'data_set_name': '可以使用:fnd28_bdea_value_03493a', 'description': '不可使用,仅供参考:value of annual field: Other Appropriated Reserves'}
{'id': 140135, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_twepsstdrev', 'description': '不可使用,仅供参考:Time Weighted Earnings Revision Dispersion. It is defined as the 6-month average of the time-weighted sum of the FY1 and FY2 earnings estimate revisions adjusted by the standard deviations of earnings estimates.'}
{'id': 139213, 'data_set_name': '可以使用:fnd28_bdea_value_03351a', 'description': '不可使用,仅供参考:value of annual field: Total Liabilities'}
{'id': 136576, 'data_set_name': '可以使用:fnd17_2alldelay1_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
{'id': 140050, 'data_set_name': '可以使用:fnd28_value_19505', 'description': '不可使用,仅供参考:value of field: Product Segment 1 - Depreciation'}
{'id': 60763, 'data_set_name': '可以使用:anl14_high_cfps_fp2', 'description': '不可使用,仅供参考:The Highest Estimation of Cash Flow Per Share - upcoming 2 quarters'}
{'id': 139960, 'data_set_name': '可以使用:fnd28_value_09402', 'description': '不可使用,仅供参考:value of field: Dividend Yield - Current'}
{'id': 62002, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_nonannualized_prior', 'description': '不可使用,仅供参考:Cash flow per share for the quarter, not annualized, for the same quarter last year.'}
{'id': 139454, 'data_set_name': '可以使用:fnd28_fsq1_value_03245q', 'description': '不可使用,仅供参考:value of quarterly field: Long Term Debt Excluding Capitalized Leases'}
{'id': 62001, 'data_set_name': '可以使用:quarterly_cash_flow_per_share_nonannualized', 'description': '不可使用,仅供参考:Cash flow per share for the quarter, not annualized.'}
{'id': 136388, 'data_set_name': '可以使用:estimated_value_exercisable_options_ltip', 'description': '不可使用,仅供参考:Estimated value of exercisable options awarded in the period for LTIP compensation.'}
{'id': 139889, 'data_set_name': '可以使用:fnd28_value_05116q', 'description': '不可使用,仅供参考:value of quarterly field: Dividends per Share (Interim)'}
{'id': 139675, 'data_set_name': '可以使用:fnd28_newq_value_01262q', 'description': '不可使用,仅供参考:value of quarterly field: Other Income/Expense Net'}
{'id': 139421, 'data_set_name': '可以使用:fnd28_fsa1_value_04751a', 'description': '不可使用,仅供参考:value of annual field: Common/Preferred Redeemed, Retired, Converted, Etc.'}
{'id': 139301, 'data_set_name': '可以使用:fnd28_cfq_value_04051q', 'description': '不可使用,仅供参考:value of quarterly field: Depreciation, Depletion & Amortization'}
{'id': 139763, 'data_set_name': '可以使用:fnd28_pftlta_value_08376a', 'description': '不可使用,仅供参考:value of annual field: Return on Invested Capital'}
{'id': 373515, 'data_set_name': '可以使用:top1500_pca_factor1_grouping10', 'description': '不可使用,仅供参考:First principal component grouping for top 1500 securities with 10 clusters.'}
{'id': 139676, 'data_set_name': '可以使用:fnd28_newq_value_01601q', 'description': '不可使用,仅供参考:value of quarterly field: Extraordinary Items & Gain/Loss Sale of Assets Supplementary Income Statement Fields'}
{'id': 140132, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_rev6fy2', 'description': "不可使用,仅供参考:Averaged Last 6-M EPS Revisions for FY2. It is defined as the average of prior 6-month monthly changes in a stock's consensus analysts' earnings forecasts for fiscal year 2, scaled by previous month-end trading price."}
{'id': 60702, 'data_set_name': '可以使用:social_pillar_score', 'description': '不可使用,仅供参考:Aggregated score representing company performance on social factors.'}
{'id': 61096, 'data_set_name': '可以使用:anl14_mean_ebitda_fy2', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Before Interest, Taxes, Depreciation & Amortization - upcoming 2 years'}
{'id': 373571, 'data_set_name': '可以使用:pv37_high_global1h', 'description': '不可使用,仅供参考:Global Highest Price 1H'}
{'id': 60821, 'data_set_name': '可以使用:anl14_high_nav_fy2', 'description': '不可使用,仅供参考:The Highest Estimation of Net Asset Value - Upcoming 2 Years'}
{'id': 137421, 'data_set_name': '可以使用:fnd22_a5_value', 'description': '不可使用,仅供参考:Value of the field'}
{'id': 139828, 'data_set_name': '可以使用:fnd28_statisticsa_value_05506a', 'description': '不可使用,仅供参考:value of annual field: Working Capital per Share'}
{'id': 139320, 'data_set_name': '可以使用:fnd28_cfq_value_04751q', 'description': '不可使用,仅供参考:value of quarterly field: Common/Preferred Redeemed, Retired, Converted, Etc.'}
{'id': 139377, 'data_set_name': '可以使用:fnd28_chas_value_05508', 'description': '不可使用,仅供参考:value of field: Sales per Share'}
{'id': 60592, 'data_set_name': '可以使用:anl11_emp2reg_industryperc', 'description': '不可使用,仅供参考:Industry Percentile on EMP2 100% being the best'}
{'id': 140590, 'data_set_name': '可以使用:fnd72_pit_or_cf_q_cf_form_of_statement', 'description': '不可使用,仅供参考:No longer supported'}
{'id': 137407, 'data_set_name': '可以使用:ttm_ebitda_value', 'description': '不可使用,仅供参考:Earnings before interest, taxes, depreciation, and amortization for the trailing twelve months.'}
{'id': 139348, 'data_set_name': '可以使用:fnd28_cfsourceusea_value_04401a', 'description': '不可使用,仅供参考:value of annual field: Long Term Borrowings'}
{'id': 139102, 'data_set_name': '可以使用:short_term_payables_other', 'description': '不可使用,仅供参考:[Quarterly] Total Plan Obligations'}
{'id': 61642, 'data_set_name': '可以使用:rtk_ptg_high', 'description': '不可使用,仅供参考:The highest of Price Target -'}
{'id': 137503, 'data_set_name': '可以使用:deferred_income_noncurrent', 'description': '不可使用,仅供参考:Deferred income classified as non-current.'}
{'id': 60859, 'data_set_name': '可以使用:anl14_high_ptp_fy1', 'description': '不可使用,仅供参考:The Highest Estimation of Pretax Profit - Upcoming Year'}
{'id': 140929, 'data_set_name': '可以使用:fnd86_relative_valuation_score', 'description': '不可使用,仅供参考:Relative valuation score'}
{'id': 137396, 'data_set_name': '可以使用:shareholders_equity_quarterly', 'description': "不可使用,仅供参考:Total shareholders' equity for the most recent quarter."}
{'id': 140698, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_fair_value_plan_assets', 'description': '不可使用,仅供参考:Fair market value of the pension plan assets at the end of the period'}
{'id': 140616, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_act_ret_loss_pension_plan_ast', 'description': '不可使用,仅供参考:The actual gain or loss on pension plan assets'}
{'id': 140937, 'data_set_name': '可以使用:srp_insider_trading_score', 'description': '不可使用,仅供参考:Insider trading score'}
{'id': 373389, 'data_set_name': '可以使用:industry_grouping_level5_top1500', 'description': '不可使用,仅供参考:Industry classification at level 5 for the top 1500 instruments.'}
{'id': 139730, 'data_set_name': '可以使用:fnd28_newq_value_18198q', 'description': '不可使用,仅供参考:value of quarterly field: Earnings before Interest, Taxes, Depreciation & Amortization (EBITDA)'}
{'id': 139545, 'data_set_name': '可以使用:fnd28_ishtspmnt_value_01651a', 'description': '不可使用,仅供参考:value of annual field: Net Income - Bottom Line'}
{'id': 136389, 'data_set_name': '可以使用:estimated_value_options_awarded_2', 'description': '不可使用,仅供参考:Estimated value of options awarded to the director during the period.'}
{'id': 140634, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_fair_value_plan_assets', 'description': '不可使用,仅供参考:Fair market value of the pension plan assets at the end of the period'}
{'id': 62333, 'data_set_name': '可以使用:anl44_2_roe_lastactvalue', 'description': '不可使用,仅供参考:roe lastactvalue'}
{'id': 60858, 'data_set_name': '可以使用:anl14_high_ptp_fp3', 'description': '不可使用,仅供参考:The Highest Estimation of Pretax Profit - upcoming 3 quarters'}
{'id': 373375, 'data_set_name': '可以使用:pv173_zscorestwist120dlast', 'description': '不可使用,仅供参考:It is defined as the average factor loading of the third principal component for the z-spread between 6 months and 40 years'}
{'id': 62136, 'data_set_name': '可以使用:quarterly_price_to_sales_ratio_3', 'description': '不可使用,仅供参考:Price divided by sales per share for the quarter.'}
{'id': 137452, 'data_set_name': '可以使用:accumulated_other_comprehensive_assets', 'description': '不可使用,仅供参考:Accumulated other comprehensive assets at period end.'}
{'id': 139163, 'data_set_name': '可以使用:voting_common_shares_total', 'description': '不可使用,仅供参考:Total number of voting common shares outstanding.'}
{'id': 139841, 'data_set_name': '可以使用:fnd28_statisticsq_value_07230q', 'description': '不可使用,仅供参考:value of quarterly field: Total Assets (U.S.$)'}
{'id': 139387, 'data_set_name': '可以使用:fnd28_fsa1_value_01451a', 'description': '不可使用,仅供参考:value of annual field: Income Taxes'}
{'id': 139247, 'data_set_name': '可以使用:fnd28_bdeq_value_03506q', 'description': '不可使用,仅供参考:value of quarterly field: Fully Diluted Equity'}
{'id': 140070, 'data_set_name': '可以使用:fnd28_value_19545', 'description': '不可使用,仅供参考:value of field: Product Segment 5 - Depreciation'}
{'id': 139254, 'data_set_name': '可以使用:fnd28_bsasseta_value_02003a', 'description': '不可使用,仅供参考:value of annual field: Cash'}
{'id': 139222, 'data_set_name': '可以使用:fnd28_bdea_value_03501a', 'description': '不可使用,仅供参考:value of annual field: Common Equity'}
{'id': 139978, 'data_set_name': '可以使用:fnd28_value_18186a', 'description': '不可使用,仅供参考:value of annual field: Current Domestic Income Tax'}
{'id': 140632, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_expected_return_plan_assets', 'description': '不可使用,仅供参考:The estimated expected long-term rate of return on pension plan assets expressed as a percent'}
{'id': 136610, 'data_set_name': '可以使用:fnd17_9_usdtorepexrate', 'description': '不可使用,仅供参考:Reporting Currency to USD exchange rate'}
{'id': 136548, 'data_set_name': '可以使用:book_value_per_share_annual', 'description': '不可使用,仅供参考:Book value per share for the most recent fiscal year.'}
{'id': 140064, 'data_set_name': '可以使用:fnd28_value_19534', 'description': '不可使用,仅供参考:value of field: Product Segment 4 - Capital Expenditures'}
{'id': 139814, 'data_set_name': '可以使用:fnd28_statisticsa_value_05228a', 'description': '不可使用,仅供参考:value of annual field: Discontinued Operations per Share'}
{'id': 139528, 'data_set_name': '可以使用:fnd28_ishtq_value_01401q', 'description': '不可使用,仅供参考:value of quarterly field: Pre-tax Income'}
{'id': 61043, 'data_set_name': '可以使用:anl14_mean_bvps_fp2', 'description': '不可使用,仅供参考:Mean of Estimations of Book Value Per Share - upcoming 2 quarters'}
{'id': 139200, 'data_set_name': '可以使用:fnd28_bdea_value_03063a', 'description': '不可使用,仅供参考:value of annual field: Income Taxes Payable'}
{'id': 373537, 'data_set_name': '可以使用:top2000_factor3_group10_score', 'description': '不可使用,仅供参考:Third factor score for top 2000 securities, grouped into 10 clusters.'}
{'id': 140080, 'data_set_name': '可以使用:fnd28_wcbshtassetq_value_02999q', 'description': '不可使用,仅供参考:value of quarterly field: Total Assets'}
{'id': 137389, 'data_set_name': '可以使用:reporting_to_pricing_fx_rate_2', 'description': '不可使用,仅供参考:Exchange rate from reporting currency to pricing currency.'}
{'id': 139766, 'data_set_name': '可以使用:fnd28_pftlta_value_08385a', 'description': '不可使用,仅供参考:value of annual field: Cash Earnings Return On Equity - 5 Yr Avg'}
{'id': 373387, 'data_set_name': '可以使用:industry_grouping_level50_top2000', 'description': '不可使用,仅供参考:Industry classification group at level 50 for the top 2000 instruments.'}
{'id': 139777, 'data_set_name': '可以使用:fnd28_ratesq_value_08111q', 'description': '不可使用,仅供参考:value of quarterly field: Cash & Equivalents % Total Current Assets Company Specific Accounting Practices'}
{'id': 139746, 'data_set_name': '可以使用:fnd28_pftlta_value_08335a', 'description': '不可使用,仅供参考:value of annual field: Cost Of Goods Sold/Sales - 5 Yr Avg'}
{'id': 373207, 'data_set_name': '可以使用:group_order_slippage', 'description': '不可使用,仅供参考:Slippage experienced when executing grouped orders.'}
{'id': 137350, 'data_set_name': '可以使用:quarterly_common_equity_value', 'description': '不可使用,仅供参考:Common equity value reported for the most recent quarter.'}
{'id': 60864, 'data_set_name': '可以使用:anl14_high_ptprep_fy1', 'description': '不可使用,仅供参考:The highest estimation of reported pretax profit - upcoming year'}
{'id': 373405, 'data_set_name': '可以使用:pca_industry_grouping_method2_5', 'description': '不可使用,仅供参考:Industry grouping using second method and 5 clusters for top 3000 equities.'}
{'id': 140446, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_other_cur_liab', 'description': '不可使用,仅供参考:Includes customer deposits, short-term deferred income tax liabilities, refunds due customers, and other current liabilities'}
{'id': 139916, 'data_set_name': '可以使用:fnd28_value_08125', 'description': '不可使用,仅供参考:value of field: Receivables % Total Current Assets - 5 Yr Avg'}
{'id': 139844, 'data_set_name': '可以使用:fnd28_stpera_value_08803a', 'description': '不可使用,仅供参考:Value of annual field: Total Investment Return - 3 Yr Annual Return 5 Year Averages'}
{'id': 62307, 'data_set_name': '可以使用:anl44_2_netprofit_rep_lastactvalue', 'description': '不可使用,仅供参考:netprofit rep lastactvalue'}
{'id': 61100, 'data_set_name': '可以使用:anl14_mean_eps_fp1', 'description': '不可使用,仅供参考:Mean of estimations of earnings per share - upcoming quarter'}
{'id': 138989, 'data_set_name': '可以使用:other_net_cash_inflows', 'description': '不可使用,仅供参考:other non cash items.'}
{'id': 139954, 'data_set_name': '可以使用:fnd28_value_09106', 'description': '不可使用,仅供参考:value of field: Price/Earnings Ratio - Avg High-Low'}
{'id': 61988, 'data_set_name': '可以使用:quarterly_capital_spending_per_share', 'description': '不可使用,仅供参考:Capital spending divided by average shares for the quarter.'}
{'id': 373652, 'data_set_name': '可以使用:pv72_ibesrec2_score_float', 'description': '不可使用,仅供参考:pv_score'}
{'id': 62177, 'data_set_name': '可以使用:quarterly_tangible_book_value_2', 'description': '不可使用,仅供参考:Tangible book value for the most recent quarter.'}
{'id': 62235, 'data_set_name': '可以使用:anl44_2_bps_value', 'description': '不可使用,仅供参考:bps value'}
{'id': 139192, 'data_set_name': '可以使用:fnd28_astut_value_08421a', 'description': '不可使用,仅供参考:value of annual field: Capital Expenditure % Sales'}
{'id': 61119, 'data_set_name': '可以使用:anl14_mean_epsrep_fy5', 'description': '不可使用,仅供参考:Mean of Estimations of Reported Earnings Per Share - upcoming 5 years'}
{'id': 62223, 'data_set_name': '可以使用:ttm_price_to_free_cash_flow_per_share', 'description': '不可使用,仅供参考:Price divided by free cash flow per share for trailing twelve months.'}
{'id': 137356, 'data_set_name': '可以使用:quarterly_ebit_value', 'description': '不可使用,仅供参考:Earnings before interest and taxes for the most recent quarter.'}
{'id': 139874, 'data_set_name': '可以使用:fnd28_value_04052q', 'description': '不可使用,仅供参考:value of quarterly field: Dividends'}
{'id': 137115, 'data_set_name': '可以使用:fnd17_priceavg200day', 'description': '不可使用,仅供参考:Average price of the last 200 days'}
{'id': 60879, 'data_set_name': '可以使用:anl14_high_roa_fy1', 'description': '不可使用,仅供参考:The Highest Estimation of Returns on Assets - upcoming year'}
{'id': 137365, 'data_set_name': '可以使用:quarterly_revenue_per_share_nonannualized_2', 'description': '不可使用,仅供参考:Revenue per share for the most recent quarter (not annualized).'}
{'id': 373544, 'data_set_name': '可以使用:top2000_factor4_group2_score', 'description': '不可使用,仅供参考:Fourth factor score for top 2000 securities, grouped into 2 clusters.'}
{'id': 139929, 'data_set_name': '可以使用:fnd28_value_08287', 'description': '不可使用,仅供参考:value of field: Total Assets / Common Equity Ratio'}
{'id': 373520, 'data_set_name': '可以使用:top1500_pca_factor2_grouping10', 'description': '不可使用,仅供参考:Second principal component grouping for top 1500 securities with 10 clusters.'}
{'id': 62412, 'data_set_name': '可以使用:anl45_stock_ret_per_relative', 'description': '不可使用,仅供参考:Average daily return % had all investments been in the relative index'}
{'id': 61095, 'data_set_name': '可以使用:anl14_mean_ebitda_fy1', 'description': '不可使用,仅供参考:Mean of estimations of earnings before interest, taxes, depreciation & amortization - upcoming year'}
{'id': 139902, 'data_set_name': '可以使用:fnd28_value_05450', 'description': '不可使用,仅供参考:value of field: Common/Ordinary Shareholders'}
{'id': 139629, 'data_set_name': '可以使用:fnd28_nddq1_value_04053q', 'description': '不可使用,仅供参考:value of quarterly field: Asset Disposal'}
{'id': 139314, 'data_set_name': '可以使用:fnd28_cfq_value_04440q', 'description': '不可使用,仅供参考:value of quarterly field: Decrease in Investments'}
{'id': 139322, 'data_set_name': '可以使用:fnd28_cfq_value_04795q', 'description': '不可使用,仅供参考:value of quarterly field: Other Uses - Investing'}
{'id': 62299, 'data_set_name': '可以使用:anl44_2_netdebt_prevalue', 'description': '不可使用,仅供参考:netdebt prevalue'}
{'id': 60844, 'data_set_name': '可以使用:anl14_high_ntprep_fp3', 'description': '不可使用,仅供参考:The highest estimation of reported net profit - upcoming 3 quarters'}
{'id': 60856, 'data_set_name': '可以使用:anl14_high_ptp_fp1', 'description': '不可使用,仅供参考:The Highest Estimation of Pretax Profit - upcoming quarter'}
{'id': 62084, 'data_set_name': '可以使用:quarterly_long_term_debt_to_assets', 'description': '不可使用,仅供参考:Ratio of long-term debt to total assets for the quarter.'}
{'id': 138990, 'data_set_name': '可以使用:other_net_earnings_total', 'description': '不可使用,仅供参考:Total net earnings from other sources.'}
{'id': 373414, 'data_set_name': '可以使用:pca_industry_grouping_method4_20', 'description': '不可使用,仅供参考:Industry grouping using fourth method and 20 clusters for top 3000 equities.'}
{'id': 140085, 'data_set_name': '可以使用:fnd28_wcnddq1_value_01706q', 'description': '不可使用,仅供参考:value of quarterly field: Net Income after Preferred Dividends (Basic EPS)'}
{'id': 139451, 'data_set_name': '可以使用:fnd28_fsq1_value_03051q', 'description': '不可使用,仅供参考:value of quarterly field: Short Term Debt & Current Portion of Long Term Debt'}
{'id': 136993, 'data_set_name': '可以使用:fnd17_aprice2bk', 'description': '不可使用,仅供参考:Price to Book - most recent fiscal year'}
{'id': 139178, 'data_set_name': '可以使用:fnd28_a_value_08301', 'description': '不可使用,仅供参考:value of field: Return on Equity Total (%)'}
{'id': 136443, 'data_set_name': '可以使用:option_strike_price_ltip', 'description': '不可使用,仅供参考:Price at which options can be exercised for LTIP compensation.'}
{'id': 139727, 'data_set_name': '可以使用:fnd28_newq_value_08801q', 'description': '不可使用,仅供参考:value of quarterly field: Total Investment Return year ago Growth Rates'}
{'id': 140046, 'data_set_name': '可以使用:fnd28_value_19501', 'description': '不可使用,仅供参考:value of field: Product Segment 1 - Sales'}
{'id': 140800, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_capital_stock', 'description': '不可使用,仅供参考:Capital Stock: When a company issues shares with par value for cash, a part of the proceeds are recorded as capital stock'}
{'id': 60372, 'data_set_name': '可以使用:anl10_ebspast_det_estvalue_6216', 'description': '不可使用,仅供参考:Estimate value for earnings before others'}
{'id': 139446, 'data_set_name': '可以使用:fnd28_fsq1_value_02256q', 'description': '不可使用,仅供参考:value of quarterly field: Investments In Associated Companies'}
{'id': 373350, 'data_set_name': '可以使用:pv173_zscoresatlas_unit_name', 'description': '不可使用,仅供参考:Atlas unit name'}
{'id': 140084, 'data_set_name': '可以使用:fnd28_wcishtq_value_01706q', 'description': '不可使用,仅供参考:value of quarterly field: Net Income after Preferred Dividends (Basic EPS)'}
{'id': 373435, 'data_set_name': '可以使用:resampled_pca_factor_5', 'description': '不可使用,仅供参考:Fifth principal component factor derived from robust resampling of returns for top 2000 securities.'}
{'id': 139066, 'data_set_name': '可以使用:short_term_creditors', 'description': '不可使用,仅供参考:Amount of short-term creditors at the reporting date.'}
{'id': 140893, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_is_foreign_crncy_trans_adj', 'description': '不可使用,仅供参考:Foreign Currency Translation Adjustment'}
{'id': 139649, 'data_set_name': '可以使用:fnd28_nddq1_value_04825q', 'description': '不可使用,仅供参考:value of quarterly field: Decrease/Increase In Receivables'}
{'id': 61055, 'data_set_name': '可以使用:anl14_mean_capex_fp4', 'description': '不可使用,仅供参考:Mean of estimations of Capital Expenditures - upcoming 4 quarters'}
{'id': 139293, 'data_set_name': '可以使用:fnd28_bsassetq_value_18165q', 'description': '不可使用,仅供参考:value of quarterly field: Deferred Tax Asset - Current'}
{'id': 61069, 'data_set_name': '可以使用:anl14_mean_cfps_fy4', 'description': '不可使用,仅供参考:Mean of Estimations of Cash Flow Per Share - upcoming 4 years'}
{'id': 139968, 'data_set_name': '可以使用:fnd28_value_09904', 'description': '不可使用,仅供参考:value of field: Price/Sales per Share Ratio'}
{'id': 139850, 'data_set_name': '可以使用:fnd28_stpera_value_09126a', 'description': '不可使用,仅供参考:value of annual field: Price/Earnings Ratio - 5 Yr Avg High-Low'}
{'id': 139886, 'data_set_name': '可以使用:fnd28_value_05091', 'description': '不可使用,仅供参考:value of field: Market Price 52 Week High'}
{'id': 61047, 'data_set_name': '可以使用:anl14_mean_bvps_fy1', 'description': '不可使用,仅供参考:Mean of Estimations of Book Value Per Share - upcoming year'}
{'id': 136390, 'data_set_name': '可以使用:estimated_value_options_held', 'description': '不可使用,仅供参考:Estimated value of options held by the director at period end.'}
{'id': 139333, 'data_set_name': '可以使用:fnd28_cfq_value_04851q', 'description': '不可使用,仅供参考:value of quarterly field: Increase/Decrease in Cash & Short Term Investments'}
{'id': 373607, 'data_set_name': '可以使用:pv37_volume_13', 'description': '不可使用,仅供参考:Trading volume'}
{'id': 61132, 'data_set_name': '可以使用:anl14_mean_ntp_fp1', 'description': '不可使用,仅供参考:Mean of Estimations of Net Profit - upcoming quarter'}
{'id': 373639, 'data_set_name': '可以使用:pv72_ibeseps2_score', 'description': '不可使用,仅供参考:pv_score'}
{'id': 373645, 'data_set_name': '可以使用:pv72_ibesptg2_score', 'description': '不可使用,仅供参考:pv_score'}
{'id': 136588, 'data_set_name': '可以使用:fnd17_3alldelay1_usdtorepexrate', 'description': '不可使用,仅供参考:Reporting Currency to USD exchange rate'}
{'id': 60848, 'data_set_name': '可以使用:anl14_high_ntprep_fy2', 'description': '不可使用,仅供参考:The highest estimation of reported net profit - upcoming 2 years'}
{'id': 60749, 'data_set_name': '可以使用:anl14_high_bvps_fy3', 'description': '不可使用,仅供参考:The highest estimation of Book Value Per Share - upcoming 3 years'}
{'id': 139839, 'data_set_name': '可以使用:fnd28_statisticsq_value_05486q', 'description': '不可使用,仅供参考:value of quarterly field: Tangible Book Value per Share'}
{'id': 140118, 'data_set_name': '可以使用:fnd31_devnorthamericaadditionalfactor4_apgghcy1', 'description': '不可使用,仅供参考:1-Year Change in Gross Profit to Assets. It is defined as the Year on Year Change in Gross Profit to Assets.'}
{'id': 373406, 'data_set_name': '可以使用:pca_industry_grouping_method2_50', 'description': '不可使用,仅供参考:Industry grouping using second method and 50 clusters for top 3000 equities.'}
{'id': 139540, 'data_set_name': '可以使用:fnd28_ishtspmnt_value_01084a', 'description': '不可使用,仅供参考:value of annual field: Staff Costs'}
{'id': 139440, 'data_set_name': '可以使用:fnd28_fsq1_value_01701q', 'description': '不可使用,仅供参考:value of quarterly field: Preferred Dividend Requirements'}
{'id': 140103, 'data_set_name': '可以使用:fnd28_wsannualstats_value_08651', 'description': '不可使用,仅供参考:value of field: Reinvestment Rate - per Share'}
{'id': 139370, 'data_set_name': '可以使用:fnd28_cfsourceusea_value_04840a', 'description': '不可使用,仅供参考:value of annual field: Effect of Exchange Rate on Cash'}
{'id': 137438, 'data_set_name': '可以使用:accounts_total_current_assets_2', 'description': '不可使用,仅供参考:Total current assets as reported in accounts.'}
{'id': 60807, 'data_set_name': '可以使用:anl14_high_eps_fy3', 'description': '不可使用,仅供参考:The highest estimation of Earnings Per Share - upcoming 3 years'}
{'id': 139318, 'data_set_name': '可以使用:fnd28_cfq_value_04601q', 'description': '不可使用,仅供参考:value of quarterly field: Capital Expenditures (Additions to Fixed Assets)'}
{'id': 62118, 'data_set_name': '可以使用:quarterly_non_annualized_revenue_per_share', 'description': '不可使用,仅供参考:Revenue per share for the quarter, not annualized.'}
{'id': 60850, 'data_set_name': '可以使用:anl14_high_ntprep_fy4', 'description': '不可使用,仅供参考:The highest estimation of Reported Net Profit - upcoming 4 years'}
{'id': 139555, 'data_set_name': '可以使用:fnd28_levliqa_value_08111a', 'description': '不可使用,仅供参考:Value of annual field: Cash & Equivalents % Total Current Assets Company-Specific Accounting Practices'}
{'id': 139456, 'data_set_name': '可以使用:fnd28_fsq1_value_03263q', 'description': '不可使用,仅供参考:value of quarterly field: Deferred Taxes'}
{'id': 60718, 'data_set_name': '可以使用:social_totalcorr_industry_position', 'description': '不可使用,仅供参考:Company’s position within industry peer group for social score weighted by total correlation to financial returns.'}
{'id': 137309, 'data_set_name': '可以使用:latest_closing_price', 'description': '不可使用,仅供参考:The most recent closing or last bid price of the security.'}
{'id': 138951, 'data_set_name': '可以使用:long_term_trade_debt', 'description': '不可使用,仅供参考:Long-term trade debt reported for the annual period.'}
{'id': 139805, 'data_set_name': '可以使用:fnd28_ratesq_value_08631q', 'description': '不可使用,仅供参考:value of quarterly field: Net Sales/Revenues Growth'}
{'id': 61147, 'data_set_name': '可以使用:anl14_mean_ntprep_fy1', 'description': '不可使用,仅供参考:Mean of Estimations of Reported Net Profit - upcoming year'}
{'id': 62059, 'data_set_name': '可以使用:quarterly_free_cash_flow_per_share_non_annualized', 'description': '不可使用,仅供参考:Free cash flow per share for the quarter, not annualized.'}
{'id': 60747, 'data_set_name': '可以使用:anl14_high_bvps_fy1', 'description': '不可使用,仅供参考:The highest estimation of Book Value Per Share - upcoming year'}
{'id': 139099, 'data_set_name': '可以使用:short_term_notes_payable', 'description': '不可使用,仅供参考:Short-term notes payable outstanding at period end.'}
{'id': 373573, 'data_set_name': '可以使用:pv37_high_global2h', 'description': '不可使用,仅供参考:Global Highest Price 2H'}
{'id': 139503, 'data_set_name': '可以使用:fnd28_ishta_value_01230a', 'description': '不可使用,仅供参考:value of annual field: Other Operating Expenses'}
{'id': 139671, 'data_set_name': '可以使用:fnd28_nddq2_value_18390q', 'description': '不可使用,仅供参考:value of quarterly field: Construction Work in Progress'}
{'id': 140098, 'data_set_name': '可以使用:fnd28_wsannualstats_value_08335', 'description': '不可使用,仅供参考:value of field: Cost Of Goods Sold/Sales - 5 Yr Avg'}
{'id': 139907, 'data_set_name': '可以使用:fnd28_value_07210q', 'description': '不可使用,仅供参考:value of quarterly field: Market Capitalization (U.S.$)'}
{'id': 139648, 'data_set_name': '可以使用:fnd28_nddq1_value_04821q', 'description': '不可使用,仅供参考:value of quarterly field: Increase/Decrease In Short Term Borrowings'}
{'id': 136426, 'data_set_name': '可以使用:intrinsic_value_exercisable_options', 'description': '不可使用,仅供参考:Actual value of exercisable options awarded during the period.'}
{'id': 139471, 'data_set_name': '可以使用:fnd28_growthratesa_value_08579a', 'description': '不可使用,仅供参考:value of annual field: Market Capitalization Growth (year ago) Profitability'}
{'id': 60730, 'data_set_name': '可以使用:anl14_actvalue_epsrep_fp0', 'description': '不可使用,仅供参考:Reported Earnings Per Share - recent last quarter'}
{'id': 139858, 'data_set_name': '可以使用:fnd28_stpera_value_09326a', 'description': '不可使用,仅供参考:value of annual field: Price/Book Value Ratio - 5 Yr Avg High-Low'}
{'id': 136450, 'data_set_name': '可以使用:share_award_value_3', 'description': '不可使用,仅供参考:Value of shares awarded in a given incentive plan.'}
{'id': 139627, 'data_set_name': '可以使用:fnd28_nddq1_value_04049q', 'description': '不可使用,仅供参考:value of quarterly field: Depreciation and Depletion'}
{'id': 139880, 'data_set_name': '可以使用:fnd28_value_04355q', 'description': '不可使用,仅供参考:value of quarterly field: Net Assets From Acquisitions'}
{'id': 61110, 'data_set_name': '可以使用:anl14_mean_epsrep_fp1', 'description': '不可使用,仅供参考:Mean of Estimations of Reported Earnings Per Share - upcoming quarter'}
{'id': 136570, 'data_set_name': '可以使用:fnd17_1_reptoprcexrate', 'description': '不可使用,仅供参考:Reporting Currency to base currency exchange rate'}
{'id': 140445, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_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 sale, income taxes receivable, and assets of discontinued operations'}
{'id': 139406, 'data_set_name': '可以使用:fnd28_fsa1_value_03054a', 'description': '不可使用,仅供参考:value of annual field: Accrued Payroll'}
{'id': 140074, 'data_set_name': '可以使用:fnd28_wcannuala_value_08251', 'description': '不可使用,仅供参考:value of field: Fixed Charge Coverage Ratio'}
{'id': 140523, 'data_set_name': '可以使用:fnd72_pit_or_bs_q_bs_sh_cap_and_apic', 'description': '不可使用,仅供参考:Share Capital & APIC'}
{'id': 61855, 'data_set_name': '可以使用:anl15_s_12_m_tr_mean', 'description': '不可使用,仅供参考:The weighted average of 12-month trailing EPS aggregated within GICS sector grouping.'}
{'id': 139552, 'data_set_name': '可以使用:fnd28_ishtspmnt_value_18227a', 'description': '不可使用,仅供参考:value of annual field: Restructuring Expense'}
{'id': 61182, 'data_set_name': '可以使用:anl14_mean_roa_fy4', 'description': '不可使用,仅供参考:Mean of Estimations of Returns on Assets - upcoming 4 years'}
{'id': 61092, 'data_set_name': '可以使用:anl14_mean_ebitda_fp3', 'description': '不可使用,仅供参考:Mean of Estimations of Earnings Before Interest, Taxes, Depreciation & Amortization - Upcoming 3 Quarters'}
{'id': 139891, 'data_set_name': '可以使用:fnd28_value_05190', 'description': '不可使用,仅供参考:value of field: Indicated Dividend Rate'}
{'id': 60608, 'data_set_name': '可以使用:anl11_empposcorreg_industryrnk', 'description': '不可使用,仅供参考:Industry Rank on EMP Max Correlation Score with 1 being the highest rank'}
{'id': 137425, 'data_set_name': '可以使用:fnd22_s2_value', 'description': '不可使用,仅供参考:Value of the field'}
{'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': 140813, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_q_bs_mkt_sec_other_st_invest', 'description': '不可使用,仅供参考:Marketable Securities & Other ST Investments'}
{'id': 373223, 'data_set_name': '可以使用:eqy_minvol_terminal_focus_overlap_count', 'description': '不可使用,仅供参考:Number of terminal sectors where both companies are focused in the minimum volatility equity grouping.'}
{'id': 139074, 'data_set_name': '可以使用:short_term_group_payables', 'description': '不可使用,仅供参考:Short-term payables to group companies.'}
{'id': 62323, 'data_set_name': '可以使用:anl44_2_pretaxprofit_rep_prevalue', 'description': '不可使用,仅供参考:pretaxprofit rep prevalue'}
{'id': 139792, 'data_set_name': '可以使用:fnd28_ratesq_value_08346q', 'description': '不可使用,仅供参考:value of quarterly field: Tax Rate'}
{'id': 139232, 'data_set_name': '可以使用:fnd28_bdeq_value_03101q', 'description': '不可使用,仅供参考:value of quarterly field: Current Liabilities - Total'}
========================= 数据字段结束 =======================================
以上数据字段和操作符, 按照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
注意, 以上操作符不能使用事件类型的数据集, 以上操作符禁止使用事件类型的数据集!!