Skip to content

v3.4.0

Compare
Choose a tag to compare
@gnvk gnvk released this 26 Apr 15:21
· 9 commits to master since this release
2944366

Backward incompatible

⚠️ This is a backward incompatible release, because the signature of marketdata.GetOptionChain changed from

GetOptionChain(underlyingSymbol string, req GetOptionSnapshotRequest) (map[string]OptionSnapshot, error)

to

GetOptionChain(underlyingSymbol string, req GetOptionChainRequest) (map[string]OptionSnapshot, error)

The latter now allows you to query option snapshots based on multiple conditions (expiration, strike price, option type, etc.)

Since option endpoints are still in beta, we decided not to increment the major version because of this change.

What's Changed

  • Remove unused Fundamental struct by @gnvk in #277
  • Disable stream read limit by @gnvk in #278
  • Add rights distribution corporate action type by @gnvk in #280
  • Update option snapshots with filters, greeks and pagination by @gnvk in #279

Full Changelog: v3.3.0...v3.4.0