After calling or invoking the default print method for ichimoku objects, the
console output will display # … with x more rows
if the entire
data does not fit on-screen. Use more()
to display more rows.
more(n)
a parameter (optional) passed on to the argument 'n' of
print.tbl
controlling the number of rows to show.
Defaults to 100. Normally an integer, but supply a character string such
as 'a' to print all rows.
The ichimoku object contained in .Last.value
(invisibly)
or else invisible NULL (if .Last.value is not an ichimoku object).
The ichimoku object data is printed to the console.
cloud <- ichimoku(sample_ohlc_data, ticker = "TKR")
cloud
#> # ichimoku object: more() to display more rows, look() to inspect attributes
#> index open high low close cd tenkan kijun senkouA
#> <dttm> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 2020-01-02 00:00:00 123 123.1 122.5 122.7 -1 NA NA NA
#> 2 2020-01-03 00:00:00 122.7 122.8 122.6 122.8 1 NA NA NA
#> 3 2020-01-06 00:00:00 122.8 123.4 122.4 123.3 1 NA NA NA
#> 4 2020-01-07 00:00:00 123.3 124.3 123.3 124.1 1 NA NA NA
#> 5 2020-01-08 00:00:00 124.1 124.8 124 124.8 1 NA NA NA
#> 6 2020-01-09 00:00:00 124.8 125.4 124.5 125.3 1 NA NA NA
#> 7 2020-01-10 00:00:00 125.3 125.3 124.8 125.2 -1 NA NA NA
#> 8 2020-01-13 00:00:00 125.2 125.3 125.1 125.2 0 NA NA NA
#> 9 2020-01-14 00:00:00 125.2 125.2 124.3 124.4 -1 123.9 NA NA
#> 10 2020-01-15 00:00:00 124.4 124.5 123.7 123.9 -1 123.9 NA NA
#> # … with 271 more rows, and 4 more variables: senkouB <dbl>, chikou <dbl>,
#> # cloudT <dbl>, cloudB <dbl>
more()
more(20)