Temporal.jl icon indicating copy to clipboard operation
Temporal.jl copied to clipboard

Time series implementation for the Julia language focused on efficiency and flexibility

Results 12 Temporal.jl issues
Sort by recently updated
recently updated
newest added

Functions that accept a pad & padval (eg: lag) should not assert on too few rows if pad == true. When pad == true these functions should just return a...

Hey, it would be nice to add a section to the readme that compares the package to the official https://github.com/JuliaStats/TimeSeries.jl package. 😊

help wanted
docs

Hello, I get a stack trace when I run the following simple code: `using Temporal quandl("AAPL")` I am using v0.7 on Julia 1.4.2 on Windows 10. The stack trace is:...

here's tests on travis. * https://travis-ci.org/wookay/TestTemporal.jl/jobs/549070403 ``` $ time julia -e '@info VERSION; using Temporal' [ Info: 1.1.1 real 0m1.258s user 0m1.170s sys 0m0.204s $ time julia -e '@info VERSION;...

help wanted
design
performance

When running tests, following warning is displayed (several times with `x1`, `x`...) ``` ┌ Warning: Deprecated syntax `implicit assignment to global variable `x2``. │ Use `global x2` instead. └ @...

Hello, I wonder if data readers should really be part of Temporal. Related issue https://github.com/dysonance/Temporal.jl/issues/19 Kind regards

discussion
design

See here: https://github.com/dysonance/Indicators.jl/issues/7

enhancement
help wanted

Latest version of Julia comes with native support for missing values. See [here](https://docs.julialang.org/en/latest/manual/missing/). Temporal should now support these values. This would probably also be a good time to move the...

enhancement
design

You might be interested by a simpler API design for resampling. See [TimeSeriesResampler.jl](https://github.com/femtotrader/TimeSeriesResampler.jl) and [TimeFrames.jl](https://github.com/femtotrader/TimeFrames.jl) Edit 2017/12/01 WIP: https://gist.github.com/femtotrader/89af55ef91f26f952835fd737a14847b

Hello, I wonder if Temporal.jl have streaming feature ie a kind of circular buffer datastructure which is able to receive for example tick events and store them or to resample...