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.
812 lines
116 KiB
812 lines
116 KiB
研发资本化激进程度因子
|
|
企业将研发支出过度资本化可短期美化利润,但该会计选择往往反映盈余管理动机,市场未能及时识别其不可持续性,导致股价高估。多空逻辑:做空研发资本化比例高且后续ROA下滑的企业,做多费用化处理、盈利稳健的企业。
|
|
核心指标为资本化研发支出占总研发支出比重,需行业与市值双中性化;使用过去三年均值平滑异常值;引入专利引用数或新申请量作为创新真实性的验证变量。
|
|
|
|
*=========================================================================================*
|
|
输出格式:
|
|
输出必须是且仅是纯文本。
|
|
每一行是一个完整、独立、语法正确的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': 9368, 'data_set_name': '可以使用:anl82_preq_profitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on value of Q pre-tax profit'}
|
|
{'id': 10052, 'data_set_name': '可以使用:mdl211_ebty_profitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on value of annual ebitda'}
|
|
{'id': 864, 'data_set_name': '可以使用:anl10_prrinnovation_score_fy1_2565', 'description': '不可使用,仅供参考:Innovation score for price return ratio FY1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 79308, 'data_set_name': '可以使用:bad_debt_expense', 'description': '不可使用,仅供参考:Expense recognized for uncollectible accounts receivable.'}
|
|
{'id': 9470, 'data_set_name': '可以使用:anl82_saly_profitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on value of annual sales'}
|
|
{'id': 320393, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 6207, 'data_set_name': '可以使用:anl44_netprofit_rep_best_fiscal_period_dt', 'description': '不可使用,仅供参考:netprofit rep best fiscal period dt'}
|
|
{'id': 9427, 'data_set_name': '可以使用:anl82_salq_profitability_profitability3', 'description': '不可使用,仅供参考:Profitability measure type 3 based on value of Q sales'}
|
|
{'id': 84073, 'data_set_name': '可以使用:quarterly_gross_profit_total_fast_d1', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Gross Profit'}
|
|
{'id': 320558, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Pretax Profit'}
|
|
{'id': 10292, 'data_set_name': '可以使用:mdl211_salq_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on delta of Q sales'}
|
|
{'id': 320579, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320333, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9333, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:Profitability measure type 3 based on delta of annual operating profit'}
|
|
{'id': 6850, 'data_set_name': '可以使用:anl49_backfill_netprofit', 'description': '不可使用,仅供参考:Profit after deduction of all expenses including taxes, minority interests and special charges against (or credits to) operations, but before deduction of preferred dividends paid and accumulated and before any extraordinary gains or losses.'}
|
|
{'id': 320380, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_p1_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Net Profit'}
|
|
{'id': 10340, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability5', 'description': '不可使用,仅供参考:profitability measure type 5 based on value of annual sales'}
|
|
{'id': 6300, 'data_set_name': '可以使用:anl44_pretaxprofit_rep_coveredby', 'description': '不可使用,仅供参考:Pretaxprofit rep D0 coveredby'}
|
|
{'id': 10293, 'data_set_name': '可以使用:mdl211_salq_profitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on value of Q sales'}
|
|
{'id': 320433, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_b_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320554, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 324463, 'data_set_name': '可以使用:pv87_qtr_matrix_interest_expense_estimate_mean', 'description': '不可使用,仅供参考:Mean of Interest Expense Estimate'}
|
|
{'id': 320546, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320424, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Net Profit'}
|
|
{'id': 10045, 'data_set_name': '可以使用:mdl211_ebty_profitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on value of annual ebitda'}
|
|
{'id': 320584, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Pretax Profit'}
|
|
{'id': 10335, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on value of annual sales'}
|
|
{'id': 5704, 'data_set_name': '可以使用:selling_general_admin_expense', 'description': '不可使用,仅供参考:Selling, General & Administrative Expense Value'}
|
|
{'id': 320454, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10219, 'data_set_name': '可以使用:mdl211_opry_profitability_profitability6', 'description': '不可使用,仅供参考:profitability measure type 6 based on value of annual operating profit'}
|
|
{'id': 324466, 'data_set_name': '可以使用:pv87_qtr_matrix_interest_expense_estimate_scale', 'description': '不可使用,仅供参考:Scale of Interest Expense Estimate'}
|
|
{'id': 10154, 'data_set_name': '可以使用:mdl211_nety_profitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on value of annual net income'}
|
|
{'id': 320408, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_all_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 6221, 'data_set_name': '可以使用:anl44_operatingprofit_best_fiscal_period_dt', 'description': '不可使用,仅供参考:operatingprofit best fiscal period dt'}
|
|
{'id': 6853, 'data_set_name': '可以使用:anl49_backfill_netprofitmarginindicator', 'description': '不可使用,仅供参考:Net profit margin indicator'}
|
|
{'id': 5655, 'data_set_name': '可以使用:net_profit_adjusted_min_guidance', 'description': '不可使用,仅供参考:The minimum guidance value for adjusted net profit on an annual basis.'}
|
|
{'id': 78998, 'data_set_name': '可以使用:fn_def_income_tax_expense_q', 'description': '不可使用,仅供参考:Income Tax Expense, Deferred'}
|
|
{'id': 10269, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of annual pre-tax profit'}
|
|
{'id': 10298, 'data_set_name': '可以使用:mdl211_salq_profitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on value of Q sales'}
|
|
{'id': 10147, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:profitability measure type 6 based on delta of annual net income'}
|
|
{'id': 87529, 'data_set_name': '可以使用:fnd90_game_prepaid_expense', 'description': '不可使用,仅供参考:Prepaid Expense to Sales'}
|
|
{'id': 320576, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 83677, 'data_set_name': '可以使用:fnd3_aacctadj_opeexpenses_fast_d1', 'description': '不可使用,仅供参考:Annual Accountance Adjustment Total Operating Expenses'}
|
|
{'id': 86156, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_expense_stock_based_comp', 'description': '不可使用,仅供参考:The expense for stock-based compensation'}
|
|
{'id': 320337, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 83508, 'data_set_name': '可以使用:fnd3_a_grossprofit', 'description': '不可使用,仅供参考:Annual Gross Profit'}
|
|
{'id': 9174, 'data_set_name': '可以使用:anl82_ebty_profitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on value of annual EBITDA'}
|
|
{'id': 10276, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on delta of annual pre-tax profit'}
|
|
{'id': 320434, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_b_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10037, 'data_set_name': '可以使用:mdl211_ebty_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on delta of annual ebitda'}
|
|
{'id': 10139, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on delta of annual net income'}
|
|
{'id': 320367, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Net Profit'}
|
|
{'id': 9402, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on delta of annual pre-tax profit'}
|
|
{'id': 9229, 'data_set_name': '可以使用:anl82_netq_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:Profitability measure type 10 based on delta of Q net income'}
|
|
{'id': 6936, 'data_set_name': '可以使用:anl49_netprofit', 'description': '不可使用,仅供参考:Profit after deduction of all expenses including taxes, minority interests and special charges against (or credits to) operations, but before deduction of preferred dividends paid and accumulated and before any extraordinary gains or losses.'}
|
|
{'id': 5824, 'data_set_name': '可以使用:anl44_2_operatingprofit_lastactvalue', 'description': '不可使用,仅供参考:operatingprofit lastactvalue'}
|
|
{'id': 6200, 'data_set_name': '可以使用:anl44_netprofit_prevalue', 'description': '不可使用,仅供参考:Netprofit d0 prevalue'}
|
|
{'id': 9336, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on delta of annual operating profit'}
|
|
{'id': 6291, 'data_set_name': '可以使用:anl44_pretaxprofit_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:pretaxprofit best cur fiscal year period'}
|
|
{'id': 320510, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_p1_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320445, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 84134, 'data_set_name': '可以使用:r_and_d_expense_balance', 'description': '不可使用,仅供参考:Amount spent on research and development activities.'}
|
|
{'id': 9397, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability12', 'description': '不可使用,仅供参考:Profitability measure type 12 based on delta of annual pre-tax profit'}
|
|
{'id': 6296, 'data_set_name': '可以使用:anl44_pretaxprofit_coveredby', 'description': '不可使用,仅供参考:Pretaxprofit d0 coveredby'}
|
|
{'id': 9328, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:Profitability measure type 1 based on delta of annual operating profit'}
|
|
{'id': 6262, 'data_set_name': '可以使用:anl44_orig_en_netprofit_prevalue', 'description': '不可使用,仅供参考:orig en netprofit prevalue'}
|
|
{'id': 9232, 'data_set_name': '可以使用:anl82_netq_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on delta of Q net income'}
|
|
{'id': 6420, 'data_set_name': '可以使用:anl44_second_en_operatingprofit_prevalue', 'description': '不可使用,仅供参考:operatingprofit prevalue'}
|
|
{'id': 320412, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_all_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Net Profit'}
|
|
{'id': 10009, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on value of Q ebitda'}
|
|
{'id': 9132, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability1', 'description': '不可使用,仅供参考:Profitability measure type 1 based on value of Q EBITDA'}
|
|
{'id': 80686, 'data_set_name': '可以使用:prepaid_expenses_value', 'description': '不可使用,仅供参考:[Quarterly] Funded Status - Domestic'}
|
|
{'id': 320449, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Operating Profit'}
|
|
{'id': 6749, 'data_set_name': '可以使用:anl49_alldividendstonetprofit', 'description': '不可使用,仅供参考:The sum of all cash dividends (common and preferred) declared for the calendar or fiscal year expressed as a percentage of the net income for the year'}
|
|
{'id': 10006, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on value of Q ebitda'}
|
|
{'id': 320474, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Operating Profit'}
|
|
{'id': 320522, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Pretax Profit'}
|
|
{'id': 9421, 'data_set_name': '可以使用:anl82_salq_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on delta of Q sales'}
|
|
{'id': 10013, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on value of Q ebitda'}
|
|
{'id': 10288, 'data_set_name': '可以使用:mdl211_salq_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:profitability measure type 5 based on delta of Q sales'}
|
|
{'id': 320482, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_p1_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9337, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:Profitability measure type 7 based on delta of annual operating profit'}
|
|
{'id': 9300, 'data_set_name': '可以使用:anl82_oprq_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on delta of Q operating profit'}
|
|
{'id': 9370, 'data_set_name': '可以使用:anl82_preq_profitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on value of Q pre-tax profit'}
|
|
{'id': 86172, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_oprb_expense_income', 'description': '不可使用,仅供参考:Net amount of other post-employment benefits cost that is recognized in the income statement'}
|
|
{'id': 6944, 'data_set_name': '可以使用:anl49_operatingexpenseratioindicator', 'description': '不可使用,仅供参考:Operating expense ratio indicator'}
|
|
{'id': 5818, 'data_set_name': '可以使用:anl44_2_netprofit_rep_prevalue', 'description': '不可使用,仅供参考:netprofit rep prevalue'}
|
|
{'id': 320352, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Net Profit'}
|
|
{'id': 320496, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 9271, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability12', 'description': '不可使用,仅供参考:Profitability measure type 12 based on delta of annual net income'}
|
|
{'id': 322101, 'data_set_name': '可以使用:pv87_interest_expense_actual', 'description': '不可使用,仅供参考:Interest Expense Actual'}
|
|
{'id': 10148, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of annual net income'}
|
|
{'id': 6423, 'data_set_name': '可以使用:anl44_second_en_pretaxprofit_lastactccy', 'description': '不可使用,仅供参考:pretaxprofit lastactccy'}
|
|
{'id': 10122, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on value of Q net income'}
|
|
{'id': 6201, 'data_set_name': '可以使用:anl44_netprofit_rep_best_crncy_iso', 'description': '不可使用,仅供参考:netprofit rep best crncy iso'}
|
|
{'id': 87545, 'data_set_name': '可以使用:fnd90_qes_gamef_grossprofit_asset', 'description': '不可使用,仅供参考:Gross Profit Over Asset'}
|
|
{'id': 320533, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_p1_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 10157, 'data_set_name': '可以使用:mdl211_nety_profitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on value of annual net income'}
|
|
{'id': 6298, 'data_set_name': '可以使用:anl44_pretaxprofit_most_recent_period_end_dt', 'description': '不可使用,仅供参考:pretaxprofit most recent period end dt'}
|
|
{'id': 6413, 'data_set_name': '可以使用:anl44_second_en_netprofit_rep_coveredby', 'description': '不可使用,仅供参考:netprofit rep coveredby'}
|
|
{'id': 9121, 'data_set_name': '可以使用:anl82_ebtq_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:Profitability measure type 10 based on delta of Q EBITDA'}
|
|
{'id': 10213, 'data_set_name': '可以使用:mdl211_opry_profitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on value of annual operating profit'}
|
|
{'id': 10220, 'data_set_name': '可以使用:mdl211_opry_profitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on value of annual operating profit'}
|
|
{'id': 10171, 'data_set_name': '可以使用:mdl211_oprq_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of Q operating profit'}
|
|
{'id': 86243, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_pension_expense_income', 'description': '不可使用,仅供参考:The net amount of pension cost that is recognized in the income statement'}
|
|
{'id': 320525, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9454, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on delta of annual sales'}
|
|
{'id': 10111, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on value of Q net income'}
|
|
{'id': 10109, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on delta of Q net income'}
|
|
{'id': 320430, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_b_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9458, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on delta of annual sales'}
|
|
{'id': 9129, 'data_set_name': '可以使用:anl82_ebtq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:Profitability measure type 7 based on delta of Q EBITDA'}
|
|
{'id': 10121, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on value of Q net income'}
|
|
{'id': 83828, 'data_set_name': '可以使用:fnd3_q_sgaexpense', 'description': '不可使用,仅供参考:Quarterly Selling, General & Administrative Expense'}
|
|
{'id': 10273, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:profitability measure type 6 based on delta of annual pre-tax profit'}
|
|
{'id': 320471, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Operating Profit'}
|
|
{'id': 9419, 'data_set_name': '可以使用:anl82_salq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:Profitability measure type 7 based on delta of Q sales'}
|
|
{'id': 10283, 'data_set_name': '可以使用:mdl211_salq_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on delta of Q sales'}
|
|
{'id': 5813, 'data_set_name': '可以使用:anl44_2_netprofit_lastactvalue', 'description': '不可使用,仅供参考:netprofit lastactvalue'}
|
|
{'id': 10176, 'data_set_name': '可以使用:mdl211_oprq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of Q operating profit'}
|
|
{'id': 6430, 'data_set_name': '可以使用:anl44_second_en_pretaxprofit_value', 'description': '不可使用,仅供参考:pretaxprofit value'}
|
|
{'id': 320382, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_all_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9431, 'data_set_name': '可以使用:anl82_salq_profitability_profitability7', 'description': '不可使用,仅供参考:Profitability measure type 7 based on value of Q sales'}
|
|
{'id': 320483, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Operating Profit'}
|
|
{'id': 320353, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_p1_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Net Profit'}
|
|
{'id': 9357, 'data_set_name': '可以使用:anl82_preq_deltaprofitability_profitability12', 'description': '不可使用,仅供参考:Profitability measure type 12 based on delta of Q pre-tax profit'}
|
|
{'id': 320550, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 352, 'data_set_name': '可以使用:anl10_ebtinnovation_score_fy2_1040', 'description': '不可使用,仅供参考:Innovation score for earnings before tax FY2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 5831, 'data_set_name': '可以使用:anl44_2_pretaxprofit_rep_coveredby', 'description': '不可使用,仅供参考:pretaxprofit rep coveredby'}
|
|
{'id': 10141, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on delta of annual net income'}
|
|
{'id': 85959, 'data_set_name': '可以使用:fnd72_pit_or_cr_q_cash_flow_to_int_expense', 'description': '不可使用,仅供参考:Measures the ratio of cash flow from operations to total interest incurred during the period'}
|
|
{'id': 322112, 'data_set_name': '可以使用:pv87_interest_expense_of_estimates_scale', 'description': '不可使用,仅供参考:Scale of Interest Expense - # of Estimates'}
|
|
{'id': 320573, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320524, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Pretax Profit'}
|
|
{'id': 5833, 'data_set_name': '可以使用:anl44_2_pretaxprofit_rep_lastactvalue', 'description': '不可使用,仅供参考:pretaxprofit rep lastactvalue'}
|
|
{'id': 10114, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on value of Q net income'}
|
|
{'id': 9361, 'data_set_name': '可以使用:anl82_preq_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on delta of Q pre-tax profit'}
|
|
{'id': 83223, 'data_set_name': '可以使用:fnd3_A_opeexpenseexitems', 'description': '不可使用,仅供参考:Annual Operating Expense Extraordinary Items'}
|
|
{'id': 6269, 'data_set_name': '可以使用:anl44_orig_en_operatingprofit_value', 'description': '不可使用,仅供参考:orig en operatingprofit value'}
|
|
{'id': 10188, 'data_set_name': '可以使用:mdl211_oprq_profitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on value of Q operating profit'}
|
|
{'id': 10234, 'data_set_name': '可以使用:mdl211_preq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of Q pre-tax profit'}
|
|
{'id': 320479, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_p1_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 79084, 'data_set_name': '可以使用:fn_prepaid_expense_a', 'description': '不可使用,仅供参考:Carrying amount for an unclassified balance sheet date of expenditures made in advance of when the economic benefit of the cost will be realized, and which will be expensed in future periods with the passage of time or when a triggering event occurs. For a classified balance sheet, represents the noncurrent portion of prepaid expenses (the current portion has a separate concept).'}
|
|
{'id': 9993, 'data_set_name': '可以使用:mdl211_ebtq_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on delta of Q ebitda'}
|
|
{'id': 10202, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on delta of annual operating profit'}
|
|
{'id': 10206, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:profitability measure type 5 based on delta of annual operating profit'}
|
|
{'id': 320417, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 5356, 'data_set_name': '可以使用:anl4_netprofita_mean', 'description': '不可使用,仅供参考:Adjusted net income - mean of estimations'}
|
|
{'id': 9296, 'data_set_name': '可以使用:anl82_oprq_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:Profitability measure type 1 based on delta of Q operating profit'}
|
|
{'id': 9461, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on delta of annual sales'}
|
|
{'id': 5640, 'data_set_name': '可以使用:min_stock_option_expense_guidance', 'description': '不可使用,仅供参考:Stock option expense - minimum guidance value'}
|
|
{'id': 320400, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Net Profit'}
|
|
{'id': 320349, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_p1_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320535, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_p1_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Pretax Profit'}
|
|
{'id': 9168, 'data_set_name': '可以使用:anl82_ebty_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on delta of annual EBITDA'}
|
|
{'id': 87594, 'data_set_name': '可以使用:fnd90_us_game_prepaid_expense', 'description': '不可使用,仅供参考:Prepaid Expense to Sales [ Descending] - [Quality.Aggressive Accounting]'}
|
|
{'id': 320459, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Operating Profit'}
|
|
{'id': 10101, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on delta of Q net income'}
|
|
{'id': 320577, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 88086, 'data_set_name': '可以使用:oth401_game_prepaid_expense', 'description': '不可使用,仅供参考:Prepaid Expense to Sales'}
|
|
{'id': 10035, 'data_set_name': '可以使用:mdl211_ebty_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of annual ebitda'}
|
|
{'id': 320543, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320358, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 83545, 'data_set_name': '可以使用:fnd3_a_opeexpenses_fast_d1', 'description': '不可使用,仅供参考:Annual Total Operating Expenses'}
|
|
{'id': 80650, 'data_set_name': '可以使用:operating_profit_3', 'description': '不可使用,仅供参考:Profit from core business operations before interest and taxes.'}
|
|
{'id': 5836, 'data_set_name': '可以使用:anl44_2_pretaxprofit_value', 'description': '不可使用,仅供参考:pretaxprofit value'}
|
|
{'id': 9170, 'data_set_name': '可以使用:anl82_ebty_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on delta of annual EBITDA'}
|
|
{'id': 9179, 'data_set_name': '可以使用:anl82_ebty_profitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on value of annual EBITDA'}
|
|
{'id': 10105, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on delta of Q net income'}
|
|
{'id': 320507, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Pretax Profit'}
|
|
{'id': 5359, 'data_set_name': '可以使用:anl4_netprofita_std', 'description': '不可使用,仅供参考:Adjusted net income - std of estimations'}
|
|
{'id': 83422, 'data_set_name': '可以使用:fnd3_Qacctadj_opeexpenseexitems', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Operating Expense Extraordinary Items'}
|
|
{'id': 10100, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on delta of Q net income'}
|
|
{'id': 322105, 'data_set_name': '可以使用:pv87_interest_expense_consensus_low', 'description': '不可使用,仅供参考:Interest Expense Consensus Low'}
|
|
{'id': 719, 'data_set_name': '可以使用:anl10_netinnovation_score_fq2_2539', 'description': '不可使用,仅供参考:Innovation score for net income Q2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 6199, 'data_set_name': '可以使用:anl44_netprofit_gaap_most_recent_period_end_dt', 'description': '不可使用,仅供参考:netprofit gaap most recent period end dt'}
|
|
{'id': 80850, 'data_set_name': '可以使用:total_rental_expense', 'description': '不可使用,仅供参考:Total rental expenses incurred during the period.'}
|
|
{'id': 10010, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability5', 'description': '不可使用,仅供参考:profitability measure type 5 based on value of Q ebitda'}
|
|
{'id': 320439, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_b_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Operating Profit'}
|
|
{'id': 320494, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9290, 'data_set_name': '可以使用:anl82_nety_profitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on value of annual net income'}
|
|
{'id': 9456, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on delta of annual sales'}
|
|
{'id': 9162, 'data_set_name': '可以使用:anl82_ebty_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on delta of annual EBITDA'}
|
|
{'id': 87006, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_is_expense_stock_based_comp', 'description': '不可使用,仅供参考:The expense for stock-based compensation'}
|
|
{'id': 322103, 'data_set_name': '可以使用:pv87_interest_expense_consensus_high', 'description': '不可使用,仅供参考:Interest Expense Consensus High'}
|
|
{'id': 10229, 'data_set_name': '可以使用:mdl211_preq_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of Q pre-tax profit'}
|
|
{'id': 10203, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of annual operating profit'}
|
|
{'id': 9133, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability10', 'description': '不可使用,仅供参考:Profitability measure type 10 based on value of Q EBITDA'}
|
|
{'id': 83780, 'data_set_name': '可以使用:fnd3_q_grossprofit', 'description': '不可使用,仅供参考:Quarterly Gross Profit'}
|
|
{'id': 9429, 'data_set_name': '可以使用:anl82_salq_profitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on value of Q sales'}
|
|
{'id': 10246, 'data_set_name': '可以使用:mdl211_preq_profitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on value of Q pre-tax profit'}
|
|
{'id': 320405, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_all_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10053, 'data_set_name': '可以使用:mdl211_ebty_profitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on value of annual ebitda'}
|
|
{'id': 6294, 'data_set_name': '可以使用:anl44_pretaxprofit_best_fiscal_period_dt', 'description': '不可使用,仅供参考:pretaxprofit best fiscal period dt'}
|
|
{'id': 10049, 'data_set_name': '可以使用:mdl211_ebty_profitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on value of annual ebitda'}
|
|
{'id': 9404, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on delta of annual pre-tax profit'}
|
|
{'id': 6484, 'data_set_name': '可以使用:forecast_currency_netprofit', 'description': '不可使用,仅供参考:Currency in which the net profit forecast is denominated.'}
|
|
{'id': 9399, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:Profitability measure type 3 based on delta of annual pre-tax profit'}
|
|
{'id': 83940, 'data_set_name': '可以使用:fnd3_qacctadj_opeexpenses', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Total Operating Expenses'}
|
|
{'id': 9400, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on delta of annual pre-tax profit'}
|
|
{'id': 83813, 'data_set_name': '可以使用:fnd3_q_opeexpenses_fast_d1', 'description': '不可使用,仅供参考:Quarterly Total Operating Expenses'}
|
|
{'id': 5812, 'data_set_name': '可以使用:anl44_2_netprofit_lastactccy', 'description': '不可使用,仅供参考:netprofit lastactccy'}
|
|
{'id': 10181, 'data_set_name': '可以使用:mdl211_oprq_profitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on value of Q operating profit'}
|
|
{'id': 320501, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 80679, 'data_set_name': '可以使用:other_unusual_income_expense', 'description': '不可使用,仅供参考:Other unusual income or expense items not classified elsewhere.'}
|
|
{'id': 9291, 'data_set_name': '可以使用:anl82_nety_profitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on value of annual net income'}
|
|
{'id': 320422, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9996, 'data_set_name': '可以使用:mdl211_ebtq_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on delta of Q ebitda'}
|
|
{'id': 320559, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Pretax Profit'}
|
|
{'id': 9335, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on delta of annual operating profit'}
|
|
{'id': 9233, 'data_set_name': '可以使用:anl82_netq_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:Profitability measure type 3 based on delta of Q net income'}
|
|
{'id': 5350, 'data_set_name': '可以使用:anl4_netprofit_median', 'description': '不可使用,仅供参考:Net profit - Median of estimations'}
|
|
{'id': 9122, 'data_set_name': '可以使用:anl82_ebtq_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on delta of Q EBITDA'}
|
|
{'id': 320464, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_p1_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Operating Profit'}
|
|
{'id': 83410, 'data_set_name': '可以使用:fnd3_Qacctadj_grossprofit', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Gross Profit'}
|
|
{'id': 83544, 'data_set_name': '可以使用:fnd3_a_opeexpenses', 'description': '不可使用,仅供参考:Annual Total Operating Expenses'}
|
|
{'id': 6422, 'data_set_name': '可以使用:anl44_second_en_pretaxprofit_coveredby', 'description': '不可使用,仅供参考:pretaxprofit coveredby'}
|
|
{'id': 320511, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_p1_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Pretax Profit'}
|
|
{'id': 10156, 'data_set_name': '可以使用:mdl211_nety_profitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on value of annual net income'}
|
|
{'id': 5817, 'data_set_name': '可以使用:anl44_2_netprofit_rep_lastactvalue', 'description': '不可使用,仅供参考:netprofit rep lastactvalue'}
|
|
{'id': 83941, 'data_set_name': '可以使用:fnd3_qacctadj_opeexpenses_fast_d1', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Total Operating Expenses'}
|
|
{'id': 10167, 'data_set_name': '可以使用:mdl211_oprq_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on delta of Q operating profit'}
|
|
{'id': 80546, 'data_set_name': '可以使用:gross_profit_total', 'description': '不可使用,仅供参考:Total gross profit for the period.'}
|
|
{'id': 10337, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on value of annual sales'}
|
|
{'id': 6214, 'data_set_name': '可以使用:anl44_netprofit_value', 'description': '不可使用,仅供参考:Netprofit d0 value'}
|
|
{'id': 10339, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on value of annual sales'}
|
|
{'id': 10103, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of Q net income'}
|
|
{'id': 320455, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_p1_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 5584, 'data_set_name': '可以使用:max_pretax_profit_guidance', 'description': '不可使用,仅供参考:The maximum guidance value for Pretax income on an annual basis.'}
|
|
{'id': 79346, 'data_set_name': '可以使用:depreciation_and_amortization_expense', 'description': '不可使用,仅供参考:[Quarterly] Deferred Tax - Local'}
|
|
{'id': 83915, 'data_set_name': '可以使用:fnd3_qacctadj_grossprofit_fast_d1', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Gross Profit'}
|
|
{'id': 320583, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320563, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_all_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9433, 'data_set_name': '可以使用:anl82_salq_profitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on value of Q sales'}
|
|
{'id': 152, 'data_set_name': '可以使用:anl10_dpsinnovation_score_fy1_1554', 'description': '不可使用,仅供参考:Innovation score for dividends per share FY1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 9416, 'data_set_name': '可以使用:anl82_salq_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on delta of Q sales'}
|
|
{'id': 5656, 'data_set_name': '可以使用:net_profit_adjusted_value', 'description': '不可使用,仅供参考:Adjusted net income- announced financial value'}
|
|
{'id': 9310, 'data_set_name': '可以使用:anl82_oprq_profitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on value of Q operating profit'}
|
|
{'id': 320526, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320557, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 6426, 'data_set_name': '可以使用:anl44_second_en_pretaxprofit_rep_coveredby', 'description': '不可使用,仅供参考:pretaxprofit rep coveredby'}
|
|
{'id': 9369, 'data_set_name': '可以使用:anl82_preq_profitability_profitability12', 'description': '不可使用,仅供参考:Profitability measure type 12 based on value of Q pre-tax profit'}
|
|
{'id': 5821, 'data_set_name': '可以使用:anl44_2_netprofit_value', 'description': '不可使用,仅供参考:netprofit value'}
|
|
{'id': 320334, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 84075, 'data_set_name': '可以使用:quarterly_income_tax_expense_fast_d1', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Income Tax Provision'}
|
|
{'id': 86164, 'data_set_name': '可以使用:fnd72_pit_or_is_a_is_int_expense', 'description': '不可使用,仅供参考:Interest Expense'}
|
|
{'id': 320421, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 83509, 'data_set_name': '可以使用:fnd3_a_grossprofit_fast_d1', 'description': '不可使用,仅供参考:Annual Gross Profit'}
|
|
{'id': 9304, 'data_set_name': '可以使用:anl82_oprq_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on delta of Q operating profit'}
|
|
{'id': 10267, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on delta of annual pre-tax profit'}
|
|
{'id': 80734, 'data_set_name': '可以使用:share_capital_expense', 'description': '不可使用,仅供参考:Expenses related to share capital issuance or management.'}
|
|
{'id': 78928, 'data_set_name': '可以使用:fn_allocated_share_based_compensation_expense_q', 'description': '不可使用,仅供参考:Represents the expense recognized during the period arising from equity-based compensation arrangements (for example, shares of stock, units, stock options, or other equity instruments) with employees, directors, and certain consultants qualifying for treatment as employees.'}
|
|
{'id': 320945, 'data_set_name': '可以使用:pv87_ann_matrix_interest_expense_estimate_std', 'description': '不可使用,仅供参考:Standard deviation of Interest Expense Estimate'}
|
|
{'id': 83130, 'data_set_name': '可以使用:annual_equity_compensation_expense_fast_d1', 'description': '不可使用,仅供参考:Expense from share-based compensation for the year.'}
|
|
{'id': 320521, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320488, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_p1_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Operating Profit'}
|
|
{'id': 10143, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of annual net income'}
|
|
{'id': 10179, 'data_set_name': '可以使用:mdl211_oprq_profitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on value of Q operating profit'}
|
|
{'id': 9351, 'data_set_name': '可以使用:anl82_opry_profitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on value of annual operating profit'}
|
|
{'id': 319323, 'data_set_name': '可以使用:pv64_dif_stal_fund_expense_ratio', 'description': '不可使用,仅供参考:The amount investors pay for expenses incurred in operating a mutual fund (after any waivers).'}
|
|
{'id': 80651, 'data_set_name': '可以使用:operating_profit_pre_tax', 'description': '不可使用,仅供参考:Profit from operations before deducting income taxes.'}
|
|
{'id': 87020, 'data_set_name': '可以使用:fnd72_s_pit_or_is_q_is_pension_expense_income', 'description': '不可使用,仅供参考:The net amount of pension cost that is recognized in the income statement'}
|
|
{'id': 10286, 'data_set_name': '可以使用:mdl211_salq_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on delta of Q sales'}
|
|
{'id': 10325, 'data_set_name': '可以使用:mdl211_saly_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on delta of annual sales'}
|
|
{'id': 320567, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Pretax Profit'}
|
|
{'id': 10168, 'data_set_name': '可以使用:mdl211_oprq_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on delta of Q operating profit'}
|
|
{'id': 83958, 'data_set_name': '可以使用:fnd3_qacctadj_sgaexpense', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Selling, General & Administrative Expense'}
|
|
{'id': 320423, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Net Profit'}
|
|
{'id': 6216, 'data_set_name': '可以使用:anl44_operatingprofit_best_cur_fiscal_qtr_period', 'description': '不可使用,仅供参考:operatingprofit best cur fiscal qtr period'}
|
|
{'id': 5811, 'data_set_name': '可以使用:anl44_2_netprofit_coveredby', 'description': '不可使用,仅供参考:netprofit coveredby'}
|
|
{'id': 10032, 'data_set_name': '可以使用:mdl211_ebty_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on delta of annual ebitda'}
|
|
{'id': 10239, 'data_set_name': '可以使用:mdl211_preq_profitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on value of Q pre-tax profit'}
|
|
{'id': 6266, 'data_set_name': '可以使用:anl44_orig_en_netprofit_value', 'description': '不可使用,仅供参考:orig en netprofit value'}
|
|
{'id': 320364, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Net Profit'}
|
|
{'id': 10108, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of Q net income'}
|
|
{'id': 320514, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10113, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability11', 'description': '不可使用,仅供参考:profitability measure type 11 based on value of Q net income'}
|
|
{'id': 320460, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Operating Profit'}
|
|
{'id': 86450, 'data_set_name': '可以使用:fnd72_s_pit_or_bs_a2_bs_curr_rental_expense', 'description': '不可使用,仅供参考:Operating lease expenses recognized in the income statement for the period'}
|
|
{'id': 5351, 'data_set_name': '可以使用:anl4_netprofit_number', 'description': '不可使用,仅供参考:Net profit - number of estimations'}
|
|
{'id': 6852, 'data_set_name': '可以使用:anl49_backfill_netprofitmargin', 'description': '不可使用,仅供参考:Net income before extraordinary gains or losses expressed as a percentage of sales or revenues.'}
|
|
{'id': 320582, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320338, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9450, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:Profitability measure type 1 based on delta of annual sales'}
|
|
{'id': 10146, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:profitability measure type 5 based on delta of annual net income'}
|
|
{'id': 320473, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Operating Profit'}
|
|
{'id': 5828, 'data_set_name': '可以使用:anl44_2_pretaxprofit_lastactccy', 'description': '不可使用,仅供参考:pretaxprofit lastactccy'}
|
|
{'id': 320339, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Net Profit'}
|
|
{'id': 5659, 'data_set_name': '可以使用:operating_profit_before_depr_amort', 'description': '不可使用,仅供参考:EBITDA value - Annual'}
|
|
{'id': 6297, 'data_set_name': '可以使用:anl44_pretaxprofit_latest_ann_dt_qtrly', 'description': '不可使用,仅供参考:pretaxprofit latest ann dt qtrly'}
|
|
{'id': 9377, 'data_set_name': '可以使用:anl82_preq_profitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on value of Q pre-tax profit'}
|
|
{'id': 10182, 'data_set_name': '可以使用:mdl211_oprq_profitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on value of Q operating profit'}
|
|
{'id': 10177, 'data_set_name': '可以使用:mdl211_oprq_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on delta of Q operating profit'}
|
|
{'id': 222, 'data_set_name': '可以使用:anl10_ebiinnovation_score_fq2_2599', 'description': '不可使用,仅供参考:Innovation score for earnings before interest Q2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 9457, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on delta of annual sales'}
|
|
{'id': 320493, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320387, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Net Profit'}
|
|
{'id': 320450, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Operating Profit'}
|
|
{'id': 10008, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on value of Q ebitda'}
|
|
{'id': 9274, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on delta of annual net income'}
|
|
{'id': 320556, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 86922, 'data_set_name': '可以使用:fnd72_s_pit_or_is_a2_is_oprb_expense_income', 'description': '不可使用,仅供参考:Net amount of other post-employment benefits cost that is recognized in the income statement'}
|
|
{'id': 10040, 'data_set_name': '可以使用:mdl211_ebty_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of annual ebitda'}
|
|
{'id': 9376, 'data_set_name': '可以使用:anl82_preq_profitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on value of Q pre-tax profit'}
|
|
{'id': 10054, 'data_set_name': '可以使用:mdl211_ebty_profitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on value of annual ebitda'}
|
|
{'id': 85151, 'data_set_name': '可以使用:interest_expense', 'description': '不可使用,仅供参考:Interest and Related Expense - Total'}
|
|
{'id': 5594, 'data_set_name': '可以使用:max_stock_option_expense_guidance', 'description': '不可使用,仅供参考:Stock option expense - Maximum guidance value for the annual period'}
|
|
{'id': 5832, 'data_set_name': '可以使用:anl44_2_pretaxprofit_rep_lastactccy', 'description': '不可使用,仅供参考:pretaxprofit rep lastactccy'}
|
|
{'id': 320527, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_p1_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 86924, 'data_set_name': '可以使用:fnd72_s_pit_or_is_a2_is_pension_expense_income', 'description': '不可使用,仅供参考:The net amount of pension cost that is recognized in the income statement'}
|
|
{'id': 5706, 'data_set_name': '可以使用:selling_general_admin_expense_max_guidance_qtr', 'description': '不可使用,仅供参考:Selling, General & Admin Expenses - Maximum guidance value'}
|
|
{'id': 9240, 'data_set_name': '可以使用:anl82_netq_profitability_profitability1', 'description': '不可使用,仅供参考:Profitability measure type 1 based on value of Q net income'}
|
|
{'id': 9318, 'data_set_name': '可以使用:anl82_oprq_profitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on value of Q operating profit'}
|
|
{'id': 5631, 'data_set_name': '可以使用:min_pretax_profit_guidance_2', 'description': '不可使用,仅供参考:The minimum guidance value for Pretax income on an annual basis.'}
|
|
{'id': 320520, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 9432, 'data_set_name': '可以使用:anl82_salq_profitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on value of Q sales'}
|
|
{'id': 79094, 'data_set_name': '可以使用:fn_profit_loss_a', 'description': '不可使用,仅供参考:The consolidated profit or loss for the period, net of income taxes, including the portion attributable to the noncontrolling interest.'}
|
|
{'id': 320518, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 79348, 'data_set_name': '可以使用:depreciation_expense_total', 'description': '不可使用,仅供参考:Total depreciation expense for the period.'}
|
|
{'id': 84058, 'data_set_name': '可以使用:quarterly_equity_compensation_expense', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Share Based Compensation'}
|
|
{'id': 5563, 'data_set_name': '可以使用:max_adjusted_net_profit_guidance', 'description': '不可使用,仅供参考:The maximum guidance value for adjusted net profit on an annual basis.'}
|
|
{'id': 10205, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on delta of annual operating profit'}
|
|
{'id': 9398, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on delta of annual pre-tax profit'}
|
|
{'id': 9139, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on value of Q EBITDA'}
|
|
{'id': 84137, 'data_set_name': '可以使用:r_and_d_expense_total_fast_d1', 'description': '不可使用,仅供参考:Quarterly Accountance Adjustment Research & Development Expense'}
|
|
{'id': 10007, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on value of Q ebitda'}
|
|
{'id': 320406, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_all_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320547, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_all_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Pretax Profit'}
|
|
{'id': 10326, 'data_set_name': '可以使用:mdl211_saly_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on delta of annual sales'}
|
|
{'id': 9124, 'data_set_name': '可以使用:anl82_ebtq_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on delta of Q EBITDA'}
|
|
{'id': 320484, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_p1_high', 'description': '不可使用,仅供参考:highest value of all analysts estimates of Operating Profit'}
|
|
{'id': 6213, 'data_set_name': '可以使用:anl44_netprofit_rep_value', 'description': '不可使用,仅供参考:Netprofit rep D0 value'}
|
|
{'id': 320500, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Pretax Profit'}
|
|
{'id': 320476, 'data_set_name': '可以使用:pv87_2_operatingprofit_qf_matrix_all_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Operating Profit'}
|
|
{'id': 6215, 'data_set_name': '可以使用:anl44_operatingprofit_best_crncy_iso', 'description': '不可使用,仅供参考:operatingprofit best crncy iso'}
|
|
{'id': 151, 'data_set_name': '可以使用:anl10_dpsinnovation_score_fq2_1557', 'description': '不可使用,仅供参考:Innovation score for dividends per share Q2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 79085, 'data_set_name': '可以使用:fn_prepaid_expense_q', 'description': '不可使用,仅供参考:Carrying amount for an unclassified balance sheet date of expenditures made in advance of when the economic benefit of the cost will be realized, and which will be expensed in future periods with the passage of time or when a triggering event occurs. For a classified balance sheet, represents the noncurrent portion of prepaid expenses (the current portion has a separate concept).'}
|
|
{'id': 793, 'data_set_name': '可以使用:anl10_preinnovation_score_fy2_1386', 'description': '不可使用,仅供参考:Innovation score for pre-tax or preliminary FY2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 320492, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10297, 'data_set_name': '可以使用:mdl211_salq_profitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on value of Q sales'}
|
|
{'id': 320341, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Net Profit'}
|
|
{'id': 79301, 'data_set_name': '可以使用:annual_income_tax_expense_2', 'description': '不可使用,仅供参考:Total income tax expense for the annual period.'}
|
|
{'id': 153, 'data_set_name': '可以使用:anl10_dpsinnovation_score_fy2_1544', 'description': '不可使用,仅供参考:Innovation score for dividends per share FY2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 10268, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on delta of annual pre-tax profit'}
|
|
{'id': 10140, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on delta of annual net income'}
|
|
{'id': 320414, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Net Profit'}
|
|
{'id': 83695, 'data_set_name': '可以使用:fnd3_aacctadj_sgaexpense_fast_d1', 'description': '不可使用,仅供参考:Annual Accountance Adjustment Selling, General & Administrative Expense'}
|
|
{'id': 10343, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on value of annual sales'}
|
|
{'id': 80544, 'data_set_name': '可以使用:gross_profit', 'description': '不可使用,仅供参考:Revenue minus cost of goods sold for the period.'}
|
|
{'id': 78927, 'data_set_name': '可以使用:fn_allocated_share_based_compensation_expense_a', 'description': '不可使用,仅供参考:Represents the expense recognized during the period arising from equity-based compensation arrangements (for example, shares of stock, unit, stock options or other equity instruments) with employees, directors and certain consultants qualifying for treatment as employees.'}
|
|
{'id': 83675, 'data_set_name': '可以使用:fnd3_aacctadj_opeexpenseexitems_fast_d1', 'description': '不可使用,仅供参考:Annual Accountance Adjustment Operating Expense Extraordinary Items'}
|
|
{'id': 83357, 'data_set_name': '可以使用:fnd3_Q_opeexpenseexitems', 'description': '不可使用,仅供参考:Quarterly Operating Expense Extraordinary Items'}
|
|
{'id': 9278, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on delta of annual net income'}
|
|
{'id': 85771, 'data_set_name': '可以使用:fnd72_pit_or_cr_a_cash_flow_to_int_expense', 'description': '不可使用,仅供参考:Measures the ratio of cash flow from operations to total interest incurred during the period'}
|
|
{'id': 9138, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on value of Q EBITDA'}
|
|
{'id': 320350, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_p1_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 6205, 'data_set_name': '可以使用:anl44_netprofit_rep_best_eeps_cur_yr', 'description': '不可使用,仅供参考:netprofit rep best eeps cur yr'}
|
|
{'id': 80579, 'data_set_name': '可以使用:liabilities_accrued_expenses', 'description': '不可使用,仅供参考:Accrued expenses classified as liabilities for the interim period.'}
|
|
{'id': 320463, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_p1_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Operating Profit'}
|
|
{'id': 10332, 'data_set_name': '可以使用:mdl211_saly_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on delta of annual sales'}
|
|
{'id': 420, 'data_set_name': '可以使用:anl10_epsinnovation_score_fy1', 'description': '不可使用,仅供参考:Innovation score for earnings per share FY1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 40, 'data_set_name': '可以使用:anl10_cpsinnovation_score_fy1', 'description': '不可使用,仅供参考:Innovation score for cash per share FY1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 6412, 'data_set_name': '可以使用:anl44_second_en_netprofit_broker', 'description': '不可使用,仅供参考:netprofit broker'}
|
|
{'id': 1015, 'data_set_name': '可以使用:anl10_salinnovation_score_fq2_1686', 'description': '不可使用,仅供参考:Innovation score for sales Q2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 9365, 'data_set_name': '可以使用:anl82_preq_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on delta of Q pre-tax profit'}
|
|
{'id': 320363, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Net Profit'}
|
|
{'id': 10099, 'data_set_name': '可以使用:mdl211_netq_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on delta of Q net income'}
|
|
{'id': 9348, 'data_set_name': '可以使用:anl82_opry_profitability_profitability6', 'description': '不可使用,仅供参考:Profitability measure type 6 based on value of annual operating profit'}
|
|
{'id': 320397, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_p1_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320939, 'data_set_name': '可以使用:pv87_ann_matrix_interest_expense_estimate_high', 'description': '不可使用,仅供参考:High of Interest Expense Estimate'}
|
|
{'id': 320343, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Net Profit'}
|
|
{'id': 86227, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_expense_stock_based_comp', 'description': '不可使用,仅供参考:The expense for stock-based compensation'}
|
|
{'id': 320420, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10333, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability1', 'description': '不可使用,仅供参考:profitability measure type 1 based on value of annual sales'}
|
|
{'id': 9279, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on delta of annual net income'}
|
|
{'id': 80853, 'data_set_name': '可以使用:total_tax_expense_2', 'description': '不可使用,仅供参考:Total tax expense recognized during the period.'}
|
|
{'id': 84135, 'data_set_name': '可以使用:r_and_d_expense_balance_fast_d1', 'description': '不可使用,仅供参考:Amount spent on research and development activities.'}
|
|
{'id': 80553, 'data_set_name': '可以使用:income_tax_expense_3', 'description': '不可使用,仅供参考:[Quarterly] Total Extraordinary Items'}
|
|
{'id': 9363, 'data_set_name': '可以使用:anl82_preq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:Profitability measure type 7 based on delta of Q pre-tax profit'}
|
|
{'id': 9165, 'data_set_name': '可以使用:anl82_ebty_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:Profitability Measure Type 3 Based on Delta of Annual EBITDA'}
|
|
{'id': 647, 'data_set_name': '可以使用:anl10_nerinnovation_score_fq2_1997', 'description': '不可使用,仅供参考:Innovation score for net earnings rate Q2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 10334, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on value of annual sales'}
|
|
{'id': 80710, 'data_set_name': '可以使用:rental_expense_2', 'description': '不可使用,仅供参考:Total rental expense incurred during the period.'}
|
|
{'id': 150, 'data_set_name': '可以使用:anl10_dpsinnovation_score_fq1_1568', 'description': '不可使用,仅供参考:Innovation score for dividends per share Q1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 5358, 'data_set_name': '可以使用:anl4_netprofita_number', 'description': '不可使用,仅供参考:Adjusted net income - number of estimations'}
|
|
{'id': 10162, 'data_set_name': '可以使用:mdl211_nety_profitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on value of annual net income'}
|
|
{'id': 9275, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on delta of annual net income'}
|
|
{'id': 84112, 'data_set_name': '可以使用:quarterly_r_and_d_expense_total', 'description': '不可使用,仅供参考:Fiscal period endate of Annual Accountance Adjustment Research & Development Expense'}
|
|
{'id': 320391, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_all_median', 'description': '不可使用,仅供参考:median value of all analysts estimates of Net Profit'}
|
|
{'id': 10215, 'data_set_name': '可以使用:mdl211_opry_profitability_profitability2', 'description': '不可使用,仅供参考:profitability measure type 2 based on value of annual operating profit'}
|
|
{'id': 10214, 'data_set_name': '可以使用:mdl211_opry_profitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on value of annual operating profit'}
|
|
{'id': 6220, 'data_set_name': '可以使用:anl44_operatingprofit_best_eeps_nxt_yr', 'description': '不可使用,仅供参考:operatingprofit best eeps nxt yr'}
|
|
{'id': 320444, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9319, 'data_set_name': '可以使用:anl82_oprq_profitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on value of Q operating profit'}
|
|
{'id': 320545, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320489, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320447, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Operating Profit'}
|
|
{'id': 320431, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_b_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9467, 'data_set_name': '可以使用:anl82_saly_profitability_profitability3', 'description': '不可使用,仅供参考:Profitability measure type 3 based on value of annual sales'}
|
|
{'id': 10012, 'data_set_name': '可以使用:mdl211_ebtq_profitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on value of Q ebitda'}
|
|
{'id': 320366, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Net Profit'}
|
|
{'id': 10212, 'data_set_name': '可以使用:mdl211_opry_profitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on value of annual operating profit'}
|
|
{'id': 6204, 'data_set_name': '可以使用:anl44_netprofit_rep_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:netprofit rep best cur fiscal year period'}
|
|
{'id': 79095, 'data_set_name': '可以使用:fn_profit_loss_q', 'description': '不可使用,仅供参考:The consolidated profit or loss for the period, net of income taxes, including the portion attributable to the noncontrolling interest.'}
|
|
{'id': 320502, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10119, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability6', 'description': '不可使用,仅供参考:profitability measure type 6 based on value of Q net income'}
|
|
{'id': 9346, 'data_set_name': '可以使用:anl82_opry_profitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on value of annual operating profit'}
|
|
{'id': 10275, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on delta of annual pre-tax profit'}
|
|
{'id': 6414, 'data_set_name': '可以使用:anl44_second_en_netprofit_rep_lastactccy', 'description': '不可使用,仅供参考:netprofit rep lastactccy'}
|
|
{'id': 80652, 'data_set_name': '可以使用:operating_profit_total_2', 'description': '不可使用,仅供参考:Total operating profit earned by the company during the period.'}
|
|
{'id': 10266, 'data_set_name': '可以使用:mdl211_prey_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:profitability measure type 10 based on delta of annual pre-tax profit'}
|
|
{'id': 10204, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on delta of annual operating profit'}
|
|
{'id': 10186, 'data_set_name': '可以使用:mdl211_oprq_profitability_profitability5', 'description': '不可使用,仅供参考:profitability measure type 5 based on value of Q operating profit'}
|
|
{'id': 10144, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on delta of annual net income'}
|
|
{'id': 320402, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_p1_mean', 'description': '不可使用,仅供参考:mean value of all analysts estimates of Net Profit'}
|
|
{'id': 6792, 'data_set_name': '可以使用:anl49_backfill_alldividendstonetprofitindicator', 'description': '不可使用,仅供参考:All dividends to net profit indicator'}
|
|
{'id': 9269, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:Profitability measure type 10 based on delta of annual net income'}
|
|
{'id': 5633, 'data_set_name': '可以使用:min_research_development_expense_guidance', 'description': '不可使用,仅供参考:Minimum guidance value for Research & Development Expense'}
|
|
{'id': 720, 'data_set_name': '可以使用:anl10_netinnovation_score_fy1_2515', 'description': '不可使用,仅供参考:Innovation score for net income FY1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 86233, 'data_set_name': '可以使用:fnd72_pit_or_is_q_is_int_expense', 'description': '不可使用,仅供参考:Interest Expense'}
|
|
{'id': 320555, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Pretax Profit'}
|
|
{'id': 320399, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_p1_dts', 'description': '不可使用,仅供参考:std value of all analysts estimates of Net Profit'}
|
|
{'id': 9286, 'data_set_name': '可以使用:anl82_nety_profitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on value of annual net income'}
|
|
{'id': 10208, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of annual operating profit'}
|
|
{'id': 10184, 'data_set_name': '可以使用:mdl211_oprq_profitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on value of Q operating profit'}
|
|
{'id': 9394, 'data_set_name': '可以使用:anl82_prey_deltaprofitability_profitability1', 'description': '不可使用,仅供参考:Profitability measure type 1 based on delta of annual pre-tax profit'}
|
|
{'id': 9332, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on delta of annual operating profit'}
|
|
{'id': 6270, 'data_set_name': '可以使用:anl44_orig_en_pretaxprofit_coveredby', 'description': '不可使用,仅供参考:orig en pretaxprofit coveredby'}
|
|
{'id': 9244, 'data_set_name': '可以使用:anl82_netq_profitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on value of Q net income'}
|
|
{'id': 6937, 'data_set_name': '可以使用:anl49_netprofitindicator', 'description': '不可使用,仅供参考:Net profit indicator'}
|
|
{'id': 320369, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9464, 'data_set_name': '可以使用:anl82_saly_profitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on value of annual sales'}
|
|
{'id': 320574, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_p1_chngratio_low', 'description': '不可使用,仅供参考:lowest value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 83129, 'data_set_name': '可以使用:annual_equity_compensation_expense', 'description': '不可使用,仅供参考:Expense from share-based compensation for the year.'}
|
|
{'id': 9314, 'data_set_name': '可以使用:anl82_oprq_profitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on value of Q operating profit'}
|
|
{'id': 322102, 'data_set_name': '可以使用:pv87_interest_expense_actual_scale', 'description': '不可使用,仅供参考:Scale of Interest Expense Actual'}
|
|
{'id': 320548, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_all_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Pretax Profit'}
|
|
{'id': 9460, 'data_set_name': '可以使用:anl82_saly_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on delta of annual sales'}
|
|
{'id': 320497, 'data_set_name': '可以使用:pv87_2_pretaxprofit_af_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Pretax Profit'}
|
|
{'id': 6225, 'data_set_name': '可以使用:anl44_operatingprofit_most_recent_period_end_dt', 'description': '不可使用,仅供参考:operatingprofit most recent period end dt'}
|
|
{'id': 83290, 'data_set_name': '可以使用:fnd3_Aacctadj_opeexpenses', 'description': '不可使用,仅供参考:Annual Accountance Adjustment Total Operating Expenses'}
|
|
{'id': 9142, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability8', 'description': '不可使用,仅供参考:Profitability measure type 8 based on value of Q EBITDA'}
|
|
{'id': 10228, 'data_set_name': '可以使用:mdl211_preq_deltaprofitability_profitability12', 'description': '不可使用,仅供参考:profitability measure type 12 based on delta of Q pre-tax profit'}
|
|
{'id': 5715, 'data_set_name': '可以使用:stock_option_expense_max_guidance_qtr', 'description': '不可使用,仅供参考:Stock option expense - maximum guidance value'}
|
|
{'id': 5630, 'data_set_name': '可以使用:min_pretax_profit_guidance', 'description': '不可使用,仅供参考:Minimum guidance value for Pretax income'}
|
|
{'id': 80578, 'data_set_name': '可以使用:lease_expense_total', 'description': '不可使用,仅供参考:Total lease expenses incurred during the period.'}
|
|
{'id': 9428, 'data_set_name': '可以使用:anl82_salq_profitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on value of Q sales'}
|
|
{'id': 6415, 'data_set_name': '可以使用:anl44_second_en_netprofit_rep_prevalue', 'description': '不可使用,仅供参考:netprofit rep prevalue'}
|
|
{'id': 320425, 'data_set_name': '可以使用:pv87_2_netprofit_rep_qf_matrix_p1_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Net Profit'}
|
|
{'id': 320536, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_p1_number', 'description': '不可使用,仅供参考:count number of estimates (once for one analyst) of Pretax Profit'}
|
|
{'id': 320441, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320365, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_low', 'description': '不可使用,仅供参考:lowest value of all analysts estimates of Net Profit'}
|
|
{'id': 320396, 'data_set_name': '可以使用:pv87_2_netprofit_rep_af_matrix_p1_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10302, 'data_set_name': '可以使用:mdl211_salq_profitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on value of Q sales'}
|
|
{'id': 718, 'data_set_name': '可以使用:anl10_netinnovation_score_fq1_2521', 'description': '不可使用,仅供参考:Innovation score for net income Q1 (innovate_increase - innovate_decrease)'}
|
|
{'id': 83138, 'data_set_name': '可以使用:annual_income_tax_expense_fast_d1', 'description': '不可使用,仅供参考:Total income tax expense for the year.'}
|
|
{'id': 9270, 'data_set_name': '可以使用:anl82_nety_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on delta of annual net income'}
|
|
{'id': 9329, 'data_set_name': '可以使用:anl82_opry_deltaprofitability_profitability10', 'description': '不可使用,仅供参考:Profitability measure type 10 based on delta of annual operating profit'}
|
|
{'id': 10344, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on value of annual sales'}
|
|
{'id': 6209, 'data_set_name': '可以使用:anl44_netprofit_rep_coveredby', 'description': '不可使用,仅供参考:Netprofit rep d0 coveredby'}
|
|
{'id': 9302, 'data_set_name': '可以使用:anl82_oprq_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:Profitability measure type 4 based on delta of Q operating profit'}
|
|
{'id': 9237, 'data_set_name': '可以使用:anl82_netq_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:Profitability measure type 7 based on delta of Q net income'}
|
|
{'id': 322104, 'data_set_name': '可以使用:pv87_interest_expense_consensus_high_scale', 'description': '不可使用,仅供参考:Scale of Interest Expense Consensus High'}
|
|
{'id': 9343, 'data_set_name': '可以使用:anl82_opry_profitability_profitability12', 'description': '不可使用,仅供参考:Profitability measure type 12 based on value of annual operating profit'}
|
|
{'id': 83781, 'data_set_name': '可以使用:fnd3_q_grossprofit_fast_d1', 'description': '不可使用,仅供参考:Quarterly Gross Profit'}
|
|
{'id': 10330, 'data_set_name': '可以使用:mdl211_saly_deltaprofitability_profitability7', 'description': '不可使用,仅供参考:profitability measure type 7 based on delta of annual sales'}
|
|
{'id': 320517, 'data_set_name': '可以使用:pv87_2_pretaxprofit_qf_matrix_all_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 320565, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_qf_matrix_all_chngratio_number', 'description': '不可使用,仅供参考:count number of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10145, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability4', 'description': '不可使用,仅供参考:profitability measure type 4 based on delta of annual net income'}
|
|
{'id': 320446, 'data_set_name': '可以使用:pv87_2_operatingprofit_af_matrix_all_chngratio_std', 'description': '不可使用,仅供参考:std value of all change ratio of Operating Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 322106, 'data_set_name': '可以使用:pv87_interest_expense_consensus_low_scale', 'description': '不可使用,仅供参考:Scale of Interest Expense Consensus Low'}
|
|
{'id': 6418, 'data_set_name': '可以使用:anl44_second_en_operatingprofit_coveredby', 'description': '不可使用,仅供参考:operatingprofit coveredby'}
|
|
{'id': 10209, 'data_set_name': '可以使用:mdl211_opry_deltaprofitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on delta of annual operating profit'}
|
|
{'id': 10161, 'data_set_name': '可以使用:mdl211_nety_profitability_profitability8', 'description': '不可使用,仅供参考:profitability measure type 8 based on value of annual net income'}
|
|
{'id': 9134, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on value of Q EBITDA'}
|
|
{'id': 10150, 'data_set_name': '可以使用:mdl211_nety_deltaprofitability_profitability9', 'description': '不可使用,仅供参考:profitability measure type 9 based on delta of annual net income'}
|
|
{'id': 10175, 'data_set_name': '可以使用:mdl211_oprq_deltaprofitability_profitability6', 'description': '不可使用,仅供参考:profitability measure type 6 based on delta of Q operating profit'}
|
|
{'id': 6193, 'data_set_name': '可以使用:anl44_netprofit_gaap_best_cur_fiscal_year_period', 'description': '不可使用,仅供参考:netprofit gaap best cur fiscal year period'}
|
|
{'id': 320552, 'data_set_name': '可以使用:pv87_2_pretaxprofit_rep_af_matrix_p1_chngratio_median', 'description': '不可使用,仅供参考:median value of all change ratio of Pretax Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 5814, 'data_set_name': '可以使用:anl44_2_netprofit_prevalue', 'description': '不可使用,仅供参考:netprofit prevalue'}
|
|
{'id': 6264, 'data_set_name': '可以使用:anl44_orig_en_netprofit_rep_prevalue', 'description': '不可使用,仅供参考:orig en netprofit rep prevalue'}
|
|
{'id': 79330, 'data_set_name': '可以使用:current_tax_expense', 'description': '不可使用,仅供参考:[Quarterly] Current Tax - Foreign'}
|
|
{'id': 320359, 'data_set_name': '可以使用:pv87_2_netprofit_qf_matrix_all_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9183, 'data_set_name': '可以使用:anl82_ebty_profitability_profitability9', 'description': '不可使用,仅供参考:Profitability measure type 9 based on value of annual EBITDA'}
|
|
{'id': 6210, 'data_set_name': '可以使用:anl44_netprofit_rep_latest_ann_dt_qtrly', 'description': '不可使用,仅供参考:netprofit rep latest ann dt qtrly'}
|
|
{'id': 320335, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_all_chngratio_mean', 'description': '不可使用,仅供参考:mean value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 10341, 'data_set_name': '可以使用:mdl211_saly_profitability_profitability6', 'description': '不可使用,仅供参考:profitability measure type 6 based on value of annual sales'}
|
|
{'id': 9136, 'data_set_name': '可以使用:anl82_ebtq_profitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on value of Q EBITDA'}
|
|
{'id': 5634, 'data_set_name': '可以使用:min_research_development_expense_guidance_2', 'description': '不可使用,仅供参考:Minimum guidance value for Research & Development Expense on an annual basis'}
|
|
{'id': 9298, 'data_set_name': '可以使用:anl82_oprq_deltaprofitability_profitability11', 'description': '不可使用,仅供参考:Profitability measure type 11 based on delta of Q operating profit'}
|
|
{'id': 10116, 'data_set_name': '可以使用:mdl211_netq_profitability_profitability3', 'description': '不可使用,仅供参考:profitability measure type 3 based on value of Q net income'}
|
|
{'id': 83649, 'data_set_name': '可以使用:fnd3_aacctadj_grossprofit_fast_d1', 'description': '不可使用,仅供参考:Annual Accountance Adjustment Gross Profit'}
|
|
{'id': 41, 'data_set_name': '可以使用:anl10_cpsinnovation_score_fy2', 'description': '不可使用,仅供参考:Innovation score for cash per share FY2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 5834, 'data_set_name': '可以使用:anl44_2_pretaxprofit_rep_prevalue', 'description': '不可使用,仅供参考:pretaxprofit rep prevalue'}
|
|
{'id': 9315, 'data_set_name': '可以使用:anl82_oprq_profitability_profitability5', 'description': '不可使用,仅供参考:Profitability measure type 5 based on value of Q operating profit'}
|
|
{'id': 85535, 'data_set_name': '可以使用:fnd72_pit_or_bs_a_bs_curr_rental_expense', 'description': '不可使用,仅供参考:Operating lease expenses recognized in the income statement for the period'}
|
|
{'id': 6271, 'data_set_name': '可以使用:anl44_orig_en_pretaxprofit_prevalue', 'description': '不可使用,仅供参考:orig en pretaxprofit prevalue'}
|
|
{'id': 791, 'data_set_name': '可以使用:anl10_preinnovation_score_fq2_1369', 'description': '不可使用,仅供参考:Innovation score for pre-tax or preliminary Q2 (innovate_increase - innovate_decrease)'}
|
|
{'id': 320345, 'data_set_name': '可以使用:pv87_2_netprofit_af_matrix_p1_chngratio_high', 'description': '不可使用,仅供参考:highest value of all change ratio of Net Profit *change ratio = ((current value - previous value) / (fabs (current value)/2 + fabs (previous value)/2))'}
|
|
{'id': 9284, 'data_set_name': '可以使用:anl82_nety_profitability_profitability2', 'description': '不可使用,仅供参考:Profitability measure type 2 based on value of annual net income'}
|
|
========================= 数据字段结束 =======================================
|
|
|
|
以上数据字段和操作符, 按照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
|
|
注意, 以上操作符不能使用事件类型的数据集, 以上操作符禁止使用事件类型的数据集!! |