Sha256: a45dfb65fa84078f462b66021103b1683e5ea5b577ea5b24a40f7b20014f0501

Contents?: true

Size: 944 Bytes

Versions: 16

Compression:

Stored size: 944 Bytes

Contents

# FinnhubRuby::StockCandles

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **o** | **Array<Float>** | List of open prices for returned candles. | [optional] |
| **h** | **Array<Float>** | List of high prices for returned candles. | [optional] |
| **l** | **Array<Float>** | List of low prices for returned candles. | [optional] |
| **c** | **Array<Float>** | List of close prices for returned candles. | [optional] |
| **v** | **Array<Float>** | List of volume data for returned candles. | [optional] |
| **t** | **Array<Integer>** | List of timestamp for returned candles. | [optional] |
| **s** | **String** | Status of the response. This field can either be ok or no_data. | [optional] |

## Example

```ruby
require 'finnhub_ruby'

instance = FinnhubRuby::StockCandles.new(
  o: null,
  h: null,
  l: null,
  c: null,
  v: null,
  t: null,
  s: null
)
```

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
finnhub_ruby-1.1.19 docs/StockCandles.md
finnhub_ruby-1.1.18 docs/StockCandles.md
finnhub_ruby-1.1.17 docs/StockCandles.md
finnhub_ruby-1.1.16 docs/StockCandles.md
finnhub_ruby-1.1.15 docs/StockCandles.md
finnhub_ruby-1.1.14 docs/StockCandles.md
finnhub_ruby-1.1.13 docs/StockCandles.md
finnhub_ruby-1.1.12 docs/StockCandles.md
finnhub_ruby-1.1.11 docs/StockCandles.md
finnhub_ruby-1.1.10 docs/StockCandles.md
finnhub_ruby-1.1.9 docs/StockCandles.md
finnhub_ruby-1.1.8 docs/StockCandles.md
finnhub_ruby-1.1.7 docs/StockCandles.md
finnhub_ruby-1.1.6 docs/StockCandles.md
finnhub_ruby-1.1.5 docs/StockCandles.md
finnhub_ruby-1.1.4 docs/StockCandles.md