Record Class ForwardMoveHorizonProfileDTO

java.lang.Object
java.lang.Record
com.bluebell.greenhouse.platform.models.api.dto.symbol.analysis.ForwardMoveHorizonProfileDTO
Record Components:
horizonBars - horizon bars
expectedAbsoluteMovePercent - expected absolute move percent
medianAbsoluteMovePercent - median absolute move percent
percentile50MovePercent - 50th percentile move percent
percentile68MovePercent - 68th percentile move percent
percentile95MovePercent - 95th percentile move percent
averagePositiveMovePercent - average positive forward move percent
averageNegativeMovePercent - average negative forward move percent
positivePriceTarget - positive price target
negativePriceTarget - negative price target
upMoveProbability - up-move probability
downMoveProbability - down-move probability

public record ForwardMoveHorizonProfileDTO(int horizonBars, double expectedAbsoluteMovePercent, double medianAbsoluteMovePercent, double percentile50MovePercent, double percentile68MovePercent, double percentile95MovePercent, double averagePositiveMovePercent, double averageNegativeMovePercent, double positivePriceTarget, double negativePriceTarget, double upMoveProbability, double downMoveProbability) extends Record
Forward-move-horizon DTO.
Version:
2.0.6
Author:
Stephen Prizio
  • Constructor Details

    • ForwardMoveHorizonProfileDTO

      public ForwardMoveHorizonProfileDTO(int horizonBars, double expectedAbsoluteMovePercent, double medianAbsoluteMovePercent, double percentile50MovePercent, double percentile68MovePercent, double percentile95MovePercent, double averagePositiveMovePercent, double averageNegativeMovePercent, double positivePriceTarget, double negativePriceTarget, double upMoveProbability, double downMoveProbability)
      Creates an instance of a ForwardMoveHorizonProfileDTO record class.
      Parameters:
      horizonBars - the value for the horizonBars record component
      expectedAbsoluteMovePercent - the value for the expectedAbsoluteMovePercent record component
      medianAbsoluteMovePercent - the value for the medianAbsoluteMovePercent record component
      percentile50MovePercent - the value for the percentile50MovePercent record component
      percentile68MovePercent - the value for the percentile68MovePercent record component
      percentile95MovePercent - the value for the percentile95MovePercent record component
      averagePositiveMovePercent - the value for the averagePositiveMovePercent record component
      averageNegativeMovePercent - the value for the averageNegativeMovePercent record component
      positivePriceTarget - the value for the positivePriceTarget record component
      negativePriceTarget - the value for the negativePriceTarget record component
      upMoveProbability - the value for the upMoveProbability record component
      downMoveProbability - the value for the downMoveProbability record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • horizonBars

      public int horizonBars()
      Returns the value of the horizonBars record component.
      Returns:
      the value of the horizonBars record component
    • expectedAbsoluteMovePercent

      public double expectedAbsoluteMovePercent()
      Returns the value of the expectedAbsoluteMovePercent record component.
      Returns:
      the value of the expectedAbsoluteMovePercent record component
    • medianAbsoluteMovePercent

      public double medianAbsoluteMovePercent()
      Returns the value of the medianAbsoluteMovePercent record component.
      Returns:
      the value of the medianAbsoluteMovePercent record component
    • percentile50MovePercent

      public double percentile50MovePercent()
      Returns the value of the percentile50MovePercent record component.
      Returns:
      the value of the percentile50MovePercent record component
    • percentile68MovePercent

      public double percentile68MovePercent()
      Returns the value of the percentile68MovePercent record component.
      Returns:
      the value of the percentile68MovePercent record component
    • percentile95MovePercent

      public double percentile95MovePercent()
      Returns the value of the percentile95MovePercent record component.
      Returns:
      the value of the percentile95MovePercent record component
    • averagePositiveMovePercent

      public double averagePositiveMovePercent()
      Returns the value of the averagePositiveMovePercent record component.
      Returns:
      the value of the averagePositiveMovePercent record component
    • averageNegativeMovePercent

      public double averageNegativeMovePercent()
      Returns the value of the averageNegativeMovePercent record component.
      Returns:
      the value of the averageNegativeMovePercent record component
    • positivePriceTarget

      public double positivePriceTarget()
      Returns the value of the positivePriceTarget record component.
      Returns:
      the value of the positivePriceTarget record component
    • negativePriceTarget

      public double negativePriceTarget()
      Returns the value of the negativePriceTarget record component.
      Returns:
      the value of the negativePriceTarget record component
    • upMoveProbability

      public double upMoveProbability()
      Returns the value of the upMoveProbability record component.
      Returns:
      the value of the upMoveProbability record component
    • downMoveProbability

      public double downMoveProbability()
      Returns the value of the downMoveProbability record component.
      Returns:
      the value of the downMoveProbability record component