KLineIndicator enum
K线盘面技术指标枚举
Values
- ma → const KLineIndicator
-
const KLineIndicator('MA', '移动平均线', '识别长短期价格趋势') - ema → const KLineIndicator
-
const KLineIndicator('EMA', '指数移动平均线', '更快速地反映近期价格变化') - macd → const KLineIndicator
-
const KLineIndicator('MACD', '指数平滑异同移动平均线', '寻找趋势转折与进出场点位') - sar → const KLineIndicator
-
const KLineIndicator('SAR', '抛物线指标', '自动追踪趋势的止盈止损点') - rsi → const KLineIndicator
-
const KLineIndicator('RSI', '相对强弱指数', '通过 30/70 区间判断超买或超卖') - kdj → const KLineIndicator
-
const KLineIndicator('KDJ', '随机指标', '震荡行情中寻找价格拐点') - bias → const KLineIndicator
-
const KLineIndicator('BIAS', '乖离率', '判断价格向均线回归的可能性') - dmi → const KLineIndicator
-
const KLineIndicator('DMI', '趋向指标', '区分震荡市与单边市,判断趋势强弱') - boll → const KLineIndicator
-
const KLineIndicator('BOLL', '布林带', '利用标准差确定价格波动范围') - vol → const KLineIndicator
-
const KLineIndicator('VOL', '成交量', '验证价格变动的真实能量') - atr → const KLineIndicator
-
const KLineIndicator('ATR', '真实波幅均值', '衡量波动率,常用于计算动态止损') - obv → const KLineIndicator
-
const KLineIndicator('OBV', '能量潮', '观察主力资金的流入流出情况') - vwap → const KLineIndicator
-
const KLineIndicator('VWAP', '成交量加权平均价', '日内交易的真实基准价格') - fib → const KLineIndicator
-
const KLineIndicator('FIB', '斐波那契回撤', '寻找 0.618 等心理预期支撑位')
Properties
- code → String
-
final
- description → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- zhName → String
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
KLineIndicator> - A constant List of the values in this enum, in order of their declaration.