Skip to content

@livefolio/sdk / ComparisonOp

Type Alias: ComparisonOp

ComparisonOp = "gt" | "lt" | "gte" | "lte"

Defined in: tactical/types.ts:144

Binary comparison operator used in a Comparison node.

  • 'gt' — strictly greater than (l > r)
  • 'lt' — strictly less than (l < r)
  • 'gte' — greater than or equal to (l >= r)
  • 'lte' — less than or equal to (l <= r)

Released under the MIT License.