Enum CalcIndex

    • Enum Constant Detail

      • LastDone

        public static final CalcIndex LastDone
      • ChangeValue

        public static final CalcIndex ChangeValue
      • ChangeRate

        public static final CalcIndex ChangeRate
      • Volume

        public static final CalcIndex Volume
      • Turnover

        public static final CalcIndex Turnover
      • YtdChangeRate

        public static final CalcIndex YtdChangeRate
      • TurnoverRate

        public static final CalcIndex TurnoverRate
      • TotalMarketValue

        public static final CalcIndex TotalMarketValue
      • CapitalFlow

        public static final CalcIndex CapitalFlow
      • Amplitude

        public static final CalcIndex Amplitude
      • VolumeRatio

        public static final CalcIndex VolumeRatio
      • PeTtmRatio

        public static final CalcIndex PeTtmRatio
      • PbRatio

        public static final CalcIndex PbRatio
      • DividendRatioTtm

        public static final CalcIndex DividendRatioTtm
      • FiveDayChangeRate

        public static final CalcIndex FiveDayChangeRate
      • TenDayChangeRate

        public static final CalcIndex TenDayChangeRate
      • HalfYearChangeRate

        public static final CalcIndex HalfYearChangeRate
      • FiveMinutesChangeRate

        public static final CalcIndex FiveMinutesChangeRate
      • ExpiryDate

        public static final CalcIndex ExpiryDate
      • StrikePrice

        public static final CalcIndex StrikePrice
      • UpperStrikePrice

        public static final CalcIndex UpperStrikePrice
      • LowerStrikePrice

        public static final CalcIndex LowerStrikePrice
      • OutstandingQty

        public static final CalcIndex OutstandingQty
      • OutstandingRatio

        public static final CalcIndex OutstandingRatio
      • Premium

        public static final CalcIndex Premium
      • ItmOtm

        public static final CalcIndex ItmOtm
      • ImpliedVolatility

        public static final CalcIndex ImpliedVolatility
      • WarrantDelta

        public static final CalcIndex WarrantDelta
      • CallPrice

        public static final CalcIndex CallPrice
      • ToCallPrice

        public static final CalcIndex ToCallPrice
      • EffectiveLeverage

        public static final CalcIndex EffectiveLeverage
      • LeverageRatio

        public static final CalcIndex LeverageRatio
      • ConversionRatio

        public static final CalcIndex ConversionRatio
      • BalancePoint

        public static final CalcIndex BalancePoint
      • OpenInterest

        public static final CalcIndex OpenInterest
    • 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