Record Class SymbolAnalysisBarDTO

java.lang.Object
java.lang.Record
com.bluebell.greenhouse.platform.models.api.dto.symbol.analysis.SymbolAnalysisBarDTO
Record Components:
date - date
open - open
high - high
low - low
close - close
volume - volume
simpleReturnPercent - simple return percent
logReturn - log return
trueRange - true range
bodySize - body size

public record SymbolAnalysisBarDTO(String date, double open, double high, double low, double close, long volume, Double simpleReturnPercent, Double logReturn, double trueRange, double bodySize) extends Record
Price-bar DTO.
Version:
2.0.4
Author:
Stephen Prizio
  • Constructor Details

    • SymbolAnalysisBarDTO

      public SymbolAnalysisBarDTO(String date, double open, double high, double low, double close, long volume, Double simpleReturnPercent, Double logReturn, double trueRange, double bodySize)
      Creates an instance of a SymbolAnalysisBarDTO record class.
      Parameters:
      date - the value for the date record component
      open - the value for the open record component
      high - the value for the high record component
      low - the value for the low record component
      close - the value for the close record component
      volume - the value for the volume record component
      simpleReturnPercent - the value for the simpleReturnPercent record component
      logReturn - the value for the logReturn record component
      trueRange - the value for the trueRange record component
      bodySize - the value for the bodySize 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. Reference components are compared with Objects::equals(Object,Object); primitive components 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.
    • date

      public String date()
      Returns the value of the date record component.
      Returns:
      the value of the date record component
    • open

      public double open()
      Returns the value of the open record component.
      Returns:
      the value of the open record component
    • high

      public double high()
      Returns the value of the high record component.
      Returns:
      the value of the high record component
    • low

      public double low()
      Returns the value of the low record component.
      Returns:
      the value of the low record component
    • close

      public double close()
      Returns the value of the close record component.
      Returns:
      the value of the close record component
    • volume

      public long volume()
      Returns the value of the volume record component.
      Returns:
      the value of the volume record component
    • simpleReturnPercent

      public Double simpleReturnPercent()
      Returns the value of the simpleReturnPercent record component.
      Returns:
      the value of the simpleReturnPercent record component
    • logReturn

      public Double logReturn()
      Returns the value of the logReturn record component.
      Returns:
      the value of the logReturn record component
    • trueRange

      public double trueRange()
      Returns the value of the trueRange record component.
      Returns:
      the value of the trueRange record component
    • bodySize

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