From e5977dc1faa1d42a3312167a7b315c65e8bcb31a Mon Sep 17 00:00:00 2001 From: Elias Ohneberg Date: Wed, 7 Aug 2024 17:50:51 +0100 Subject: [PATCH] fixd docs hopefully the last time --- docs/src/Prices.md | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/docs/src/Prices.md b/docs/src/Prices.md index c8b9a50..f728859 100644 --- a/docs/src/Prices.md +++ b/docs/src/Prices.md @@ -6,27 +6,20 @@ For a few stocks yahoo finance will return `nothing` for specific timestamps in For performance reasons and easier integration with `TimeSeries.jl` these `nothing` values are returned as `NaN`s. Some other packages like python's `yahooquery` do not return these datapoints at all. We decided to return them to indicate a break in the series and to indicate that Yahoo Finance thinks it should have price information for the specific timestamp but does not have any. -````@docs -get_prices -```` - - ## Optional Sink Argument (Julia 1.9+) For Julia versions 1.9+ optional sink arguments can be given as the first argument. If you want to return a TimeArray from TimeSeries.jl execute `get_prices(TimeArray,syombol,...)`. If you want to return a TSFrame from TSFrames.jl execute `get_prices(TSFrame,syombol,...)`. - - You can also covert from the OrderedDict to these by using the following function: ```@docs sink_prices_to(::Type{TimeArray},::OrderedDict{String,Any}) sink_prices_to(::Type{TSFrame},::OrderedDict{String,Any}) -``` \ No newline at end of file +``` +## get_prices + +````@docs +get_prices +```` \ No newline at end of file