All Projects → JuliaQuant → MarketData.jl

JuliaQuant / MarketData.jl

Licence: other
Time series market data

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to MarketData.jl

rbcb
R interface to Brazilian Central Bank web services
Stars: ✭ 63 (-46.61%)
Mutual labels:  time-series, financial-data
imputeFin
Imputation of Financial Time Series with Missing Values and/or Outliers
Stars: ✭ 17 (-85.59%)
Mutual labels:  time-series, financial-data
Systemicrisk
A framework for systemic risk valuation and analysis.
Stars: ✭ 72 (-38.98%)
Mutual labels:  time-series, financial-data
okama
Investment portfolio and stocks analyzing tools for Python with free historical data
Stars: ✭ 87 (-26.27%)
Mutual labels:  time-series, financial-data
HistoricalVolatility
A framework for historical volatility estimation and analysis.
Stars: ✭ 22 (-81.36%)
Mutual labels:  time-series, financial-data
Tidyquant
Bringing financial analysis to the tidyverse
Stars: ✭ 635 (+438.14%)
Mutual labels:  time-series, financial-data
Simplestockanalysispython
Stock Analysis Tutorial in Python
Stars: ✭ 126 (+6.78%)
Mutual labels:  time-series, financial-data
covid19-time-series-utilities
several utilities to help wrangle COVID-19 data into a time-series format
Stars: ✭ 34 (-71.19%)
Mutual labels:  time-series
openPDC
Open Source Phasor Data Concentrator
Stars: ✭ 109 (-7.63%)
Mutual labels:  time-series
pyRiemann
Python machine learning package based on sklearn API for multivariate data processing and statistical analysis of symmetric positive definite matrices via Riemannian geometry
Stars: ✭ 470 (+298.31%)
Mutual labels:  time-series
ForestCoverChange
Detecting and Predicting Forest Cover Change in Pakistani Areas Using Remote Sensing Imagery
Stars: ✭ 23 (-80.51%)
Mutual labels:  time-series
DataScience ArtificialIntelligence Utils
Examples of Data Science projects and Artificial Intelligence use cases
Stars: ✭ 302 (+155.93%)
Mutual labels:  time-series
AC-VRNN
PyTorch code for CVIU paper "AC-VRNN: Attentive Conditional-VRNN for Multi-Future Trajectory Prediction"
Stars: ✭ 21 (-82.2%)
Mutual labels:  time-series
sktime-tutorial-pydata-amsterdam-2020
Introduction to Machine Learning with Time Series at PyData Festival Amsterdam 2020
Stars: ✭ 115 (-2.54%)
Mutual labels:  time-series
timemachines
Predict time-series with one line of code.
Stars: ✭ 342 (+189.83%)
Mutual labels:  time-series
wv
⏰ This R package provides the tools to perform standard and robust wavelet variance analysis for time series (signal processing). Among others, aside from computing the wavelet variance and cross-covariance (classic and robust), the package provides inference tools (e.g. confidence intervals) and plotting tools allowing to perform some visual an…
Stars: ✭ 14 (-88.14%)
Mutual labels:  time-series
data-viz-utils
Functions for easily making publication-quality figures with matplotlib.
Stars: ✭ 16 (-86.44%)
Mutual labels:  time-series
Awesome-Human-Activity-Recognition
An up-to-date & curated list of Awesome IMU-based Human Activity Recognition(Ubiquitous Computing) papers, methods & resources. Please note that most of the collections of researches are mainly based on IMU data.
Stars: ✭ 72 (-38.98%)
Mutual labels:  time-series
short-fork
Stock market helper: financial data, multipliers (PE, PS, PEG etc), insider selling, debt and short volume charts from various sources. All in one place!
Stars: ✭ 41 (-65.25%)
Mutual labels:  financial-data
Block Codes
This depository uses SEC EDGAR data in Schedule 13D and Schedule 13G data to find all positions above 5% in all US stocks between 1994 and 2018.
Stars: ✭ 55 (-53.39%)
Mutual labels:  financial-data

Build Status codecov

Historical financial time series data for research and testing in Julia.

Examples

Testing data

There are some data builtin for testing or demo purpose. The full list of testing data is here.

julia> using MarketData

julia> cl
500×1 TimeArray{Float64,1,Date,Array{Float64,1}} 2000-01-03 to 2001-12-31
│            │ Close  │
├────────────┼────────┤
│ 2000-01-03111.94 │
│ 2000-01-04102.5  │
│ 2000-01-05104.0  │
│ 2000-01-0695.0   │
│ 2000-01-0799.5   │
│ 2000-01-1097.75  │
│ 2000-01-1192.75  │
   ⋮

Remote data source

This package supports Yahoo Finance API for retrieving data.

julia> yahoo(:INTC)
10187×6 TimeArray{Float64,2,Date,Array{Float64,2}} 1980-03-17 to 2020-08-07
│            │ Open   │ High   │ Low    │ Close  │ AdjClose │ Volume     │
├────────────┼────────┼────────┼────────┼────────┼──────────┼────────────┤
│ 1980-03-170.32550.33070.32550.32550.20221.09248e7  │
│ 1980-03-180.32550.32810.32290.32290.20061.70688e7  │
│ 1980-03-190.33070.33590.33070.33070.20551.85088e7  │
│ 1980-03-200.33070.33460.32940.32940.20471.11744e7  │
│ 1980-03-210.32290.32290.31770.31770.19741.21728e7  │
│ 1980-03-240.31640.31640.31120.31120.19338.9664e6   │
│ 1980-03-250.31250.31770.31250.31250.19411.13472e7  │
│ 1980-03-260.31250.31510.30990.30990.19251.62624e7  │
│ 1980-03-270.30470.30470.29950.29950.1862.69184e7  │
│ 1980-03-280.31120.31640.31120.31120.19332.01024e7  │
│ 1980-03-310.32160.32680.32160.32160.19989.0048e6   │
│ 1980-04-010.32290.32810.32290.32290.20068.1792e6   │
│ 1980-04-020.32550.33070.32550.32550.20221.25568e7  │
   ⋮

The full API reference is here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].