Sha256: 9735d5911a49d6e916d0c170772ba9a94b0fa8b66867403c13618ab1732a4b87
Contents?: true
Size: 1.2 KB
Versions: 5
Compression:
Stored size: 1.2 KB
Contents
# FinnhubRuby::Transactions ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | Insider's name. | [optional] | | **share** | **Integer** | Number of shares held after the transaction. | [optional] | | **change** | **Integer** | Number of share changed from the last period. A positive value suggests a <code>BUY</code> transaction. A negative value suggests a <code>SELL</code> transaction. | [optional] | | **filing_date** | **Date** | Filing date. | [optional] | | **transaction_date** | **Date** | Transaction date. | [optional] | | **transaction_price** | **Float** | Average transaction price. | [optional] | | **transaction_code** | **String** | Transaction code. A list of codes and their meanings can be found <a href=\"https://www.sec.gov/about/forms/form4data.pdf\" target=\"_blank\" rel=\"noopener\">here</a>. | [optional] | ## Example ```ruby require 'finnhub_ruby' instance = FinnhubRuby::Transactions.new( name: null, share: null, change: null, filing_date: null, transaction_date: null, transaction_price: null, transaction_code: null ) ```
Version data entries
5 entries across 5 versions & 1 rubygems