Enum CalcIndex

    • Enum Constant Detail

      • LastDone

        public static final CalcIndex LastDone
        Latest price
      • ChangeValue

        public static final CalcIndex ChangeValue
        Change value
      • ChangeRate

        public static final CalcIndex ChangeRate
        Change rate
      • Volume

        public static final CalcIndex Volume
        Volume
      • Turnover

        public static final CalcIndex Turnover
        Turnover
      • YtdChangeRate

        public static final CalcIndex YtdChangeRate
        Year-to-date change ratio
      • TurnoverRate

        public static final CalcIndex TurnoverRate
        Turnover rate
      • TotalMarketValue

        public static final CalcIndex TotalMarketValue
        Total market value
      • CapitalFlow

        public static final CalcIndex CapitalFlow
        Capital flow
      • Amplitude

        public static final CalcIndex Amplitude
        Amplitude
      • VolumeRatio

        public static final CalcIndex VolumeRatio
        Volume ratio
      • PeTtmRatio

        public static final CalcIndex PeTtmRatio
        PE (TTM)
      • PbRatio

        public static final CalcIndex PbRatio
        PB
      • DividendRatioTtm

        public static final CalcIndex DividendRatioTtm
        Dividend ratio (TTM)
      • FiveDayChangeRate

        public static final CalcIndex FiveDayChangeRate
        Five days change ratio
      • TenDayChangeRate

        public static final CalcIndex TenDayChangeRate
        Ten days change ratio
      • HalfYearChangeRate

        public static final CalcIndex HalfYearChangeRate
        Half year change ratio
      • FiveMinutesChangeRate

        public static final CalcIndex FiveMinutesChangeRate
        Five minutes change ratio
      • ExpiryDate

        public static final CalcIndex ExpiryDate
        Expiry date
      • StrikePrice

        public static final CalcIndex StrikePrice
        Strike price
      • UpperStrikePrice

        public static final CalcIndex UpperStrikePrice
        Upper bound price
      • LowerStrikePrice

        public static final CalcIndex LowerStrikePrice
        Lower bound price
      • OutstandingQty

        public static final CalcIndex OutstandingQty
        Outstanding quantity
      • OutstandingRatio

        public static final CalcIndex OutstandingRatio
        Outstanding ratio
      • Premium

        public static final CalcIndex Premium
        Premium
      • ItmOtm

        public static final CalcIndex ItmOtm
        In/out of the bound
      • ImpliedVolatility

        public static final CalcIndex ImpliedVolatility
        Implied volatility
      • WarrantDelta

        public static final CalcIndex WarrantDelta
        Warrant delta
      • CallPrice

        public static final CalcIndex CallPrice
        Call price
      • ToCallPrice

        public static final CalcIndex ToCallPrice
        Price interval from the call price
      • EffectiveLeverage

        public static final CalcIndex EffectiveLeverage
        Effective leverage
      • LeverageRatio

        public static final CalcIndex LeverageRatio
        Leverage ratio
      • ConversionRatio

        public static final CalcIndex ConversionRatio
        Conversion ratio
      • BalancePoint

        public static final CalcIndex BalancePoint
        Breakeven point
      • OpenInterest

        public static final CalcIndex OpenInterest
        Open interest
      • Delta

        public static final CalcIndex Delta
        Delta
      • Gamma

        public static final CalcIndex Gamma
        Gamma
      • Theta

        public static final CalcIndex Theta
        Theta
      • Vega

        public static final CalcIndex Vega
        Vega
    • Method Detail

      • values

        public static CalcIndex[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CalcIndex c : CalcIndex.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CalcIndex valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null