Sha256: 90cffb4e27685f32491e9de5eb1e2d834d52e492dddde7c566bda78b843a4ea3

Contents?: true

Size: 1.26 KB

Versions: 9

Compression:

Stored size: 1.26 KB

Contents

# FinnhubRuby::Transactions

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **symbol** | **String** | Symbol. | [optional] |
| **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(
  symbol: null,
  name: null,
  share: null,
  change: null,
  filing_date: null,
  transaction_date: null,
  transaction_price: null,
  transaction_code: null
)
```

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
finnhub_ruby-1.1.19 docs/Transactions.md
finnhub_ruby-1.1.18 docs/Transactions.md
finnhub_ruby-1.1.17 docs/Transactions.md
finnhub_ruby-1.1.16 docs/Transactions.md
finnhub_ruby-1.1.15 docs/Transactions.md
finnhub_ruby-1.1.14 docs/Transactions.md
finnhub_ruby-1.1.13 docs/Transactions.md
finnhub_ruby-1.1.12 docs/Transactions.md
finnhub_ruby-1.1.11 docs/Transactions.md