AdSense

Friday, May 4, 2018

R: Hidden Markov Model

R: Hidden Markov Model

About this article: The main goal of this article is to apply a Hidden Markov Model to asset returns for “regime” detection. TWO regimes are defined based on asset mean returns and volatility (standard deviation of the returns). The “bullish” regime has higher mean and lower volatility while the “bearish” regime has lower mean and higher volatility.

Generally speaking, various “regimes” in financial markets lead to different asset mean returns, volatilities (or variances), correlations with other assets, or even self serial correlations. Changing correlations (coupling of decoupled assets and/or decoupling of coupled assets), negative skew / excess kurtosis (due to drawdowns, i.e., negative “fat tails”), and heteroskedasticity (clustering of serial correlation) impact the effectiveness of portfolio optimization which usually relies on long-term time-series stationarity. We have to effectively detect which regimes we are in and then dynamically optimize our portfolios accordingly. (e.g., defensive portfolios during “bearish” periods)

To carry out a regime detection, I am using a statistical time-series technique, Hidden Markov Model (HMM). Observed past asset returns are considered to be influenced by regimes (or states). “Hidden” means the model only needs the number of regimes to be defined; it is an autonomous process.


Markov Models (in general)

Markov Models, in general, are stochastic state models with random transitions between states where the probability of the transition is only dependent on the current state, not the previous states. It is called “Markov Property” or memoryless. Random Walk models are famous example of a Markov Model.

Markov Models can be categorized into four broad classes:

Markov Models


Fully Observable (*1) Partially Observable (*1)
Autonomous (*2) Markov Chain Hidden Markov Model (*3)
Controlled (*2) Markov Decision Process Partially Observable Markov Decision Process

(*1) whether all or part of the information about the system can be observed at each state - If it’s fully observable, then all information is available from the model at any state.
(*2) Autonomy of the system - If it’s controlled, then it can be modified by actions of an “agent”. If it’s autonomous, then it cannot be modified.
(*3) There are underlying latent regimes (and probability transitions between them), but they are not directly observable and instead influence the “observations.”


Hidden Markov Models

Hidden Markov Models are Markov Models where the regimes (or states) are "hidden" from view, rather than being directly observable. Instead, there are a set of output observations (e.g., mean returns, standard deviations, correlations, etc.), related to the regimes, which are directly visible.


Filtering of Hidden Markov Models

  • Prediction - Forecasting subsequent values of the regime
  • Filtering - Estimating the current values of the regime from past and current observations
  • Smoothing - Estimating the past values of the regime given the observations


Filtering and smoothing are similar, but not identical. Smoothing is concerned with wanting to understand what has happened to regimes in the past given current knowledge, whereas filtering is concerned with what is happening with the regime right now.

The conditional probability of the regime at time t given the sequence of observations up to time t is the object of interest. Thus, this is a filtering problem, determining p(zt ∣ x1:T) where z is a regime and a series of x is observations.


Market Regimes

Various regimes lead to adjustments of asset returns via shifts in their means, volatilities/variances, serial correlation and covariances, which impact the effectiveness of time series methods (e.g., portfolio optimization) that rely on stationarity of asset returns, volatilities, correlations, etc. You have to modify your investment strategies throughout the strategy lifecycle depending on a regime you’re in.

Within this article, a simulation of streamed market returns across TWO separate regimes - "bullish" and "bearish" - will be carried out. An HMM will be fitted to the returns stream to identify the probability of being in a particular regime.

Applying HMM to regime detection is tricky, since the problem is actually a form of unsupervised learning. That is, there is no "ground truth" or labelled data on which to "train" the model. In particular, it is not clear how many regime regimes exist a priori. Are there two, three, four or more "true" hidden market regimes? You have to guess and specify the number of regimes by yourself.

A guideline to specify the number of regimes depends heavily on the asset class being modelled, the choice of time frame, and the nature of data utilized. For instance, daily returns data in equities markets often exhibits (1) normal periods of lower volatility, even over a number of years, and (2) exceptional periods of high volatility, which are called "panic" or “correction" periods. Is it natural to consider modelling equity indices with two regimes? Might there be a third intermediate state representing more volatility than very calm periods, but not outright panic? Utilizing HMM requires careful research analysis and a solid understanding of the asset class being modelled.


Reproduction of the Results

Please prepare the following environment and files:

[1] R Console
My environment on MacOS goes like this:

> version$version.string
[1] "R version 3.3.2 (2016-10-31)"

[2] hmm.r
Copy the entire part of the “Full R Code (hmm.r)” section in this article, paste it to your editor, and save as “hmm.r” onto your R Console working directory. All the explanations are written in the code as well.

[3] y.csv
Copy the entire part of the “Asset Returns (y.csv) - S&P 500 in this case” section in this article, paste it to your editor, and save as “y.csv” onto your R Console working directory.


After finishing the preparation above, then run the following script on your R Console:

source(“hmm.r”)


Full R Code (hmm.r)

# Hidden Markov Model (HMM) for asset returns
#
# In this R code, asset returns are classified into TWO market regimes by using the HMM.
# (You can specify three, four, or any other number you prefer.)
#
# Source:
# The Financial Journal
# http://thefjg.blogspot.com


# install the depmixS4 and quantmod libraries
# This part has to be done ONLY ONCE. After that, you can comment these two lines out.
### install.packages(‘depmixS4')
### install.packages(‘quantmod’)


# import the depmixS4 and quantmod libraries
library('depmixS4') # Hidden Markov Model
library('quantmod') # returns stream


# Applying the HMM to real world historical financial data, asset returns in this case.
# The HMM can be specified and fit using the Expectation Maximization (EM) algorithm, the details of which are beyond the scope of this code.
# Also, asset returns are considered to be normally distributed.

##### [1] fitting asset returns to the HMM with TWO regime states
#
# Asset returns are classified into either ”bullish" or "bearish" market regime. (i.e., the number of regimes = 2)
# The number is arbitrary, so it can be three, or more, depending on an asset you choose.
# The "bullish" periods have higher mean returns and low volatilities, while the "bearish" periods have lower mean returns and higher volatilities.
# The goal of the HMM is to identify when the regime has switched from bullish to bearish and vice versa.
# The problem of Regime Detection is actually an unsupervised learning challenge since the number of regimes is not known a priori, nor is there any "ground truth" on which to "train" the HMM.


# Load prepared asset return data
# Note: You have to save your "y.csv" file with the Date and Return columns on your R Console working directory.
y <- read.csv("y.csv", header=TRUE, sep=",")
returns = as.numeric(y[,2])
#> class(y)
#[1] "data.frame"
#> class(returns)
#[1] "numeric"


# A TWO-regime HMM is fitted using the EM algorithm.
# The returns and posterior probabilities of each regime (which are derived by the HMM) are plotted.
#
# nstates = 2: the number of regimes (arbitrary)
# post_probs: the posterior probabilities of being in a particular regime
hmm <- depmix(returns ~ 1, family = gaussian(), nstates = 2, data=data.frame(returns=returns))
hmmfit <- fit(hmm, verbose = FALSE)
post_probs <- posterior(hmmfit)

tmp <- post_probs
tmp$Date <- y[,1][1:nrow(y)]
tmp2 <- tmp[c(4, 2, 3)]


# Pepare three plotting areas for (1) the returns stream, (2) the posterior probability of the regime 1, and (3) the posterior probability of the regime 2.
layout(1:3)

# The time series object y is plotted first, showing the volatile periods around 2008 and 2011.
# (1) the returns stream
plot(y, type='l', main='Regime Detection', xlab='Date', ylab='Returns')

# (2) the posterior probability of the regime 1
plot(tmp2$Date, tmp2$S1, type='l', main='Regime 1 Posterior Probabilities', xlab='Date', ylab='Probability')

# (3) the posterior probability of the regime 2
plot(tmp2$Date, tmp2$S2, type='l', main='Regime 2 Posterior Probabilities', xlab='Date', ylab='Probability')


# Note: Regime 1 and 2 in the following description could be flipped; in that case, please replace 1 by 2 accordingly and vice versa.
#
# Notice that within 2004 and 2007 the markets were calmer and hence the HMM has given high posterior probability to Regime 1 (indicated by the figure in the middle) for this period. It is considered to be the "bullish" periods.
# However, between 2007-2009 the markets were incredibly volatile due to the sub-prime crisis.
# This has the initial effect of rapidly changing the posterior probabilities between the two regimes.
# During 2008, the regime is consistently in Regime 2 (indicated by the bottom figure), which is the "bearish" period.
# The markets became calmer in 2010 but additional volatility occurred in 2011, leading once again for the HMM to give high posterior probability to Regime 2.
# Subsequent to 2011 the markets became calmer once again and the HMM is consistently giving high probability to Regime 1.
# In 2015 the markets once again became choppier and this is reflected in the increased switching between regimes for the HMM.



# export as csv
#
# Regime 1 (S1)
write.csv(tmp2[,c(1,2)], "S1.csv", quote=FALSE, row.names=TRUE)
#
# Regime 2 (S2)
write.csv(tmp2[,c(1,3)], "S2.csv", quote=FALSE, row.names=TRUE)


Figure


Asset Returns (y.csv) - S&P 500 in this case
Date,Return
,
2004-01-05,0.0123191510002796
2004-01-06,0.00129131274622907
2004-01-07,0.0023643673236684
2004-01-08,0.0049508242382883
2004-01-09,-0.00892733601663309
2004-01-12,0.00477526936492989
2004-01-13,-0.00534592581046223
2004-01-14,0.00826036924201468
2004-01-15,0.00135247014374329
2004-01-16,0.00684889817607015
2004-01-20,-0.000930339759163346
2004-01-21,0.00774147817345483
2004-01-22,-0.00321183583791296
2004-01-23,-0.00209136148618594
2004-01-26,0.0120336036991393
2004-01-27,-0.00984599354004345
2004-01-28,-0.0137030643717377
2004-01-29,0.00497661238385483
2004-01-30,-0.00263105166094135
2004-02-02,0.00364457092045178
2004-02-03,0.000678045530318805
2004-02-04,-0.00840650133647447
2004-02-05,0.00183578326039768
2004-02-06,0.012477361910177
2004-02-09,-0.002584764150245
2004-02-10,0.00501454198374862
2004-02-11,0.0106109368260423
2004-02-12,-0.00489208161539523
2004-02-13,-0.005483168833881
2004-02-17,0.00970993451588864
2004-02-18,-0.00447854330565001
2004-02-19,-0.00414105459324166
2004-02-20,-0.00257516951918024
2004-02-23,-0.00273073123532708
2004-02-24,-0.00166662965901843
2004-02-25,0.00401276010244533
2004-02-26,0.0010836327146766
2004-02-27,2.61213619481282e-05
2004-03-01,0.00958761091381533
2004-03-02,-0.00596078687364798
2004-03-03,0.0016782124912833
2004-03-04,0.00333056031019829
2004-03-05,0.00172164613406878
2004-03-08,-0.00838527718056437
2004-03-09,-0.00578728177171861
2004-03-10,-0.0147409711185587
2004-03-11,-0.0153409704027805
2004-03-12,0.012382511370979
2004-03-15,-0.0144537553158806
2004-03-16,0.00560672216204683
2004-03-17,0.0116809037290793
2004-03-18,-0.00127338348993344
2004-03-19,-0.0112360997002678
2004-03-22,-0.013042208336203
2004-03-23,-0.00132466095288386
2004-03-24,-0.00239785873375986
2004-03-25,0.01623287042956
2004-03-26,-0.00101917429049792
2004-03-29,0.0129207966536313
2004-03-30,0.00402764667430144
2004-03-31,-0.000701256470591716
2004-04-01,0.00527820546042079
2004-04-02,0.00847859023578845
2004-04-05,0.00764265053758972
2004-04-06,-0.00209673420006506
2004-04-07,-0.00666759854513099
2004-04-08,-0.00106154626567889
2004-04-12,0.00514770564456413
2004-04-13,-0.0138573690277894
2004-04-14,-0.00112499248530096
2004-04-15,0.000593636728862812
2004-04-16,0.00509843965960854
2004-04-19,0.00106584316743241
2004-04-20,-0.0156792541427349
2004-04-21,0.00529823383904748
2004-04-22,0.0139931151900266
2004-04-23,0.00058751431505577
2004-04-26,-0.00445489086627759
2004-04-27,0.00226945082900798
2004-04-28,-0.013890789123403
2004-04-29,-0.00761978270960029
2004-04-30,-0.00593374285476322
2004-05-03,0.00916042599735256
2004-05-04,0.00184177265173435
2004-05-05,0.00176698774363437
2004-05-06,-0.00674569453905072
2004-05-07,-0.0138205377008429
2004-05-10,-0.0105956250957391
2004-05-11,0.00763319999081791
2004-05-12,0.00166922369979172
2004-05-13,-0.000765902715529343
2004-05-14,-0.000675130296937887
2004-05-17,-0.0106432561620098
2004-05-18,0.00679359855309869
2004-05-19,-0.00257772329608397
2004-05-20,0.000468243752369979
2004-05-21,0.00400423670981276
2004-05-24,0.00169027018355905
2004-05-25,0.015975285487694
2004-05-26,0.00169649994996313
2004-05-27,0.00567037686173588
2004-05-28,-0.000535223636560112
2004-06-01,0.000463804492801145
2004-06-02,0.00337464123370079
2004-06-03,-0.00744994811915944
2004-06-04,0.00523415091441137
2004-06-07,0.0158383135566673
2004-06-08,0.00154211011410421
2004-06-09,-0.00954487143369498
2004-06-10,0.00453304874071758
2004-06-14,-0.0098861267391559
2004-06-15,0.00595400762516718
2004-06-16,0.00136835250700695
2004-06-17,-0.00133298330392861
2004-06-18,0.00262009784316852
2004-06-21,-0.00416716197845446
2004-06-22,0.00362959439525046
2004-06-23,0.00847066874432834
2004-06-24,-0.00298509430806781
2004-06-25,-0.00546792665217399
2004-06-28,-0.000952542193138228
2004-06-29,0.00251149046260934
2004-06-30,0.00407548535952174
2004-07-01,-0.0104857162558556
2004-07-02,-0.00315832627531076
2004-07-06,-0.00818177748270443
2004-07-07,0.00189747842045218
2004-07-08,-0.00827858339768817
2004-07-09,0.00333052256332067
2004-07-12,0.00138285280015449
2004-07-13,0.000708717272790871
2004-07-14,-0.00329653360637572
2004-07-15,-0.00430991234974876
2004-07-16,-0.00480049299260443
2004-07-19,-0.000444983176064895
2004-07-20,0.00703308950528481
2004-07-21,-0.0134301250593714
2004-07-22,0.00270227399246714
2004-07-23,-0.00974796582573667
2004-07-26,-0.00196289474119826
2004-07-27,0.00987663311930564
2004-07-28,0.00053883165326063
2004-07-29,0.00456317004332885
2004-07-30,0.00117150705708724
2004-08-02,0.00443775153920889
2004-08-03,-0.00628205192538722
2004-08-04,-0.000964314665901966
2004-08-05,-0.0164550196009143
2004-08-06,-0.0156017662091763
2004-08-09,0.00117415559687828
2004-08-10,0.012890469720781
2004-08-11,-0.00301648143631983
2004-08-12,-0.0117438857456644
2004-08-13,0.00147560820429771
2004-08-16,0.0135626776029847
2004-08-17,0.00219337454497381
2004-08-18,0.0123665562714619
2004-08-19,-0.00360416046639234
2004-08-20,0.00650354975727563
2004-08-23,-0.00243380745150734
2004-08-24,0.000465252966974639
2004-08-25,0.00796862258152764
2004-08-26,0.00011764892599242
2004-08-27,0.00242225475389279
2004-08-30,-0.00781182794493596
2004-08-31,0.00462013081814039
2004-09-01,0.00151124973392047
2004-09-02,0.0111501137034251
2004-09-03,-0.00419371553438364
2004-09-07,0.006863815803829
2004-09-08,-0.00449598208584234
2004-09-09,0.00188842602057537
2004-09-10,0.00494139959124418
2004-09-13,0.00168899735978467
2004-09-14,0.00222701341659448
2004-09-15,-0.00707964105518855
2004-09-16,0.00278982921210424
2004-09-17,0.00448485367092655
2004-09-20,-0.00564266564367077
2004-09-21,0.00630701446669413
2004-09-22,-0.0140358717413074
2004-09-23,-0.0046807116287555
2004-09-24,0.00157766423404215
2004-09-27,-0.00595400717651007
2004-09-28,0.00590903224304196
2004-09-29,0.00426093951201967
2004-09-30,-0.000197447721089539
2004-10-01,0.0150665732328168
2004-10-04,0.00323827212244243
2004-10-05,-0.000608079672166362
2004-10-06,0.00665055747607557
2004-10-07,-0.0100322262042125
2004-10-08,-0.00755511994619784
2004-10-11,0.00200308985170228
2004-10-12,-0.00227051559019298
2004-10-13,-0.0073272335627923
2004-10-14,-0.00934627019218315
2004-10-15,0.00444037286133625
2004-10-18,0.00523807938303023
2004-10-19,-0.00973289000110267
2004-10-20,0.000389737596993456
2004-10-21,0.00256087371070546
2004-10-22,-0.00976290894529797
2004-10-25,-0.00085818203817567
2004-10-26,0.0147697419353232
2004-10-27,0.0127970644660502
2004-10-28,0.00181097422738041
2004-10-29,0.00244504128827394
2004-11-01,0.000274302327404108
2004-11-02,4.42701893179631e-05
2004-11-03,0.0111181673962095
2004-11-04,0.0160273580858457
2004-11-05,0.00386624977261452
2004-11-08,-0.00109823779418683
2004-11-09,-0.000695637163855345
2004-11-10,-0.00100552396323295
2004-11-11,0.00904816237815975
2004-11-12,0.00906846830622143
2004-11-15,-0.000304043942191079
2004-11-16,-0.00710401641328318
2004-11-17,0.00552302231877899
2004-11-18,0.0013613316948824
2004-11-19,-0.0112241622177605
2004-11-22,0.0058784314051552
2004-11-23,-0.000254907450083053
2004-11-24,0.00408706135557324
2004-11-26,0.000752842382866881
2004-11-29,-0.00345591017579228
2004-11-30,-0.00403845167999961
2004-12-01,0.0148405595675127
2004-12-02,-0.000873358598903806
2004-12-03,0.000705511681583282
2004-12-06,-0.000772685228792369
2004-12-07,-0.0111351152223982
2004-12-08,0.00486475948627696
2004-12-09,0.00542142586887806
2004-12-10,-0.00104321828479481
2004-12-13,0.00894977545902176
2004-12-14,0.00391327184363277
2004-12-15,0.00194260658268774
2004-12-16,-0.00208392188997752
2004-12-17,-0.00751648883671674
2004-12-20,0.000376811444867009
2004-12-21,0.00899962502048179
2004-12-22,0.00341197933984994
2004-12-23,0.000462916081615639
2004-12-27,-0.00431458477176161
2004-12-28,0.00712852906964656
2004-12-29,-7.42384603258373e-05
2004-12-30,8.24870210607287e-05
2004-12-31,-0.00134407367057854
2005-01-03,-0.00815256213846549
2005-01-04,-0.0117400041945519
2005-01-05,-0.00363443953594444
2005-01-06,0.00349972738333815
2005-01-07,-0.00143219632203273
2005-01-10,0.0034169287261907
2005-01-11,-0.00611824567050245
2005-01-12,0.00397349911985856
2005-01-13,-0.00866758099535048
2005-01-14,0.0059866045736392
2005-01-18,0.00962827013776835
2005-01-19,-0.00953542249290162
2005-01-20,-0.00781344193665934
2005-01-21,-0.00643547926792731
2005-01-24,-0.00353402295127658
2005-01-25,0.00399632969782715
2005-01-26,0.00483241954052094
2005-01-27,0.00040883838825323
2005-01-28,-0.00271968312517323
2005-01-31,0.00842469371977739
2005-02-01,0.00686726661073855
2005-02-02,0.00317292891029908
2005-02-03,-0.00276946486908791
2005-02-04,0.0109825199609679
2005-02-07,-0.00108955868976057
2005-02-08,0.000482590000442151
2005-02-09,-0.00861225879705341
2005-02-10,0.00420261815707867
2005-02-11,0.00690175015196903
2005-02-14,0.000696650973425861
2005-02-15,0.00329433387381073
2005-02-16,0.000181759668946846
2005-02-17,-0.00795492221932559
2005-02-18,0.000699289897447386
2005-02-22,-0.014611960280889
2005-02-23,0.00559170012893606
2005-02-24,0.00786277743845432
2005-02-25,0.00926377764873809
2005-02-28,-0.00643490056190998
2005-03-01,0.00564212744562198
2005-03-02,-0.000272736514846272
2005-03-03,0.000322253219422919
2005-03-04,0.00957836152577585
2005-03-07,0.00260686984811986
2005-03-08,-0.00481034062232766
2005-03-09,-0.0102373453651881
2005-03-10,0.00185409735080366
2005-03-11,-0.00761214814668065
2005-03-14,0.00560886609194444
2005-03-15,-0.00755225388512493
2005-03-16,-0.00811470046945306
2005-03-17,0.00179963306360165
2005-03-18,-0.000470562985941392
2005-03-21,-0.00494643350547097
2005-03-22,-0.0102485459051298
2005-03-23,0.000699645119057735
2005-03-24,-0.000947106421556043
2005-03-28,0.00243849284066755
2005-03-29,-0.00762517922987449
2005-03-30,0.0136786298809524
2005-03-31,-0.0006943844478835
2005-04-01,-0.0065178810548403
2005-04-04,0.0027244771704602
2005-04-05,0.00447084318279245
2005-04-06,0.00226588671193184
2005-04-07,0.00595323360623201
2005-04-08,-0.00838001493224816
2005-04-11,8.47439722395649e-06
2005-04-12,0.00552988494719564
2005-04-13,-0.0118313257562006
2005-04-14,-0.0100521340618682
2005-04-15,-0.0168618622132328
2005-04-18,0.00293628196345619
2005-04-19,0.0059162929651384
2005-04-20,-0.013343569803137
2005-04-21,0.0195439866548481
2005-04-22,-0.0067731393222461
2005-04-25,0.00862497341885327
2005-04-26,-0.00887674885469281
2005-04-27,0.00394249654098555
2005-04-28,-0.0114456234155993
2005-04-29,0.0118519565604451
2005-05-02,0.0045795984127972
2005-05-03,-0.000852216453694155
2005-05-04,0.0123930511610517
2005-05-05,-0.00257211288916359
2005-05-06,-0.00109218435107561
2005-05-09,0.00637396597133755
2005-05-10,-0.0107631507675849
2005-05-11,0.00418427969235147
2005-05-12,-0.0100838884151795
2005-05-13,-0.00459057862361512
2005-05-16,0.0100355985937641
2005-05-17,0.0069332551303054
2005-05-18,0.00996889567756032
2005-05-19,0.00464513505665298
2005-05-20,-0.00151231524172246
2005-05-23,0.00384363622078965
2005-05-24,0.000175851893990497
2005-05-25,-0.00340587564136285
2005-05-26,0.00637453102292529
2005-05-27,0.000968147286756427
2005-05-31,-0.00609137960578643
2005-06-01,0.00895680597287107
2005-06-02,0.00172039052567463
2005-06-03,-0.00689081953642923
2005-06-06,0.00124501483063888
2005-06-07,-0.00020878831689064
2005-06-08,-0.00216558758301755
2005-06-09,0.00522626815216931
2005-06-10,-0.0023509989438093
2005-06-13,0.00225930913423156
2005-06-14,0.00257000971129617
2005-06-15,0.00221525341563655
2005-06-16,0.00362352634728769
2005-06-17,0.00494251244437027
2005-06-20,-0.000706916441091998
2005-06-21,-0.00204962066391534
2005-06-22,0.000222468477502069
2005-06-23,-0.0108921565721447
2005-06-24,-0.00765796852297385
2005-06-27,-0.000738798520538708
2005-06-28,0.00909606859627754
2005-06-29,-0.00143246108550166
2005-06-30,-0.00712623583205296
2005-07-01,0.00260711375851308
2005-07-05,0.0087938529494096
2005-07-06,-0.00837533431110948
2005-07-07,0.00244904989771122
2005-07-08,0.0116113816055528
2005-07-11,0.00623533154225697
2005-07-12,0.00226897491415645
2005-07-13,0.000883318806156552
2005-07-14,0.00262060240750994
2005-07-15,0.0011571321395607
2005-07-18,-0.00554505319390142
2005-07-19,0.0067088912334885
2005-07-20,0.00474730572312954
2005-07-21,-0.0066280638004681
2005-07-22,0.00539681952052717
2005-07-25,-0.00377635236741991
2005-07-26,0.0017315780306939
2005-07-27,0.00456250296792859
2005-07-28,0.00558752030965248
2005-07-29,-0.00770003958136112
2005-08-01,0.000947485613303378
2005-08-02,0.00707413735679197
2005-08-03,0.000739240570578836
2005-08-04,-0.00740061736449693
2005-08-05,-0.0076676796621209
2005-08-08,-0.00268624107494553
2005-08-09,0.00672234461007104
2005-08-10,-0.00182888963508621
2005-08-11,0.00703713069255496
2005-08-12,-0.00601253231564858
2005-08-15,0.00282436293183519
2005-08-16,-0.0118458665508321
2005-08-17,0.000737851644188936
2005-08-18,-0.00100027885237264
2005-08-19,0.000565819933967759
2005-08-22,0.00165477710676054
2005-08-23,-0.00339440341303554
2005-08-24,-0.00659203618525872
2005-08-25,0.00229568635791022
2005-08-26,-0.00601458632655394
2005-08-29,0.00594037685372228
2005-08-30,-0.00319743395179195
2005-08-31,0.00981580387853054
2005-09-01,0.00103198315429864
2005-09-02,-0.00292665513637669
2005-09-06,0.0125398820999036
2005-09-07,0.00240507859631567
2005-09-08,-0.00380055881825836
2005-09-09,0.00793319236942125
2005-09-12,-0.000741262048691738
2005-09-13,-0.00757367438896139
2005-09-14,-0.00328667946219152
2005-09-15,0.000464335271226801
2005-09-16,0.00825758163259671
2005-09-19,-0.00558139091487142
2005-09-20,-0.00789452146483782
2005-09-21,-0.00916299408897547
2005-09-22,0.00364567183870967
2005-09-23,0.000551496975285559
2005-09-26,0.000279701508945074
2005-09-27,2.47021124755165e-05
2005-09-28,0.001011268898929
2005-09-29,0.00882781738136718
2005-09-30,0.000920015980301336
2005-10-03,-0.00171867230092015
2005-10-04,-0.0100198533589886
2005-10-05,-0.0149990418851305
2005-10-06,-0.00410408552150265
2005-10-07,0.00369444371481276
2005-10-10,-0.00719200833527722
2005-10-11,-0.00207399201803771
2005-10-12,-0.00608661238739483
2005-10-13,-0.000713596001319594
2005-10-14,0.00823389537508135
2005-10-17,0.00297057034563952
2005-10-18,-0.0101003806392743
2005-10-19,0.0148450384576941
2005-10-20,-0.0151336417269832
2005-10-21,0.00151855851817206
2005-10-24,0.0166378691284015
2005-10-25,-0.00237066953647247
2005-10-26,-0.0043217879463695
2005-10-27,-0.0105304826211468
2005-10-28,0.0164138859023009
2005-10-31,0.00715052879394573
2005-11-01,-0.00352731121330319
2005-11-02,0.00992761049175339
2005-11-03,0.00425509419626646
2005-11-04,0.000163989708580559
2005-11-07,0.00218591864941686
2005-11-08,-0.00345711244357005
2005-11-09,0.00168909865223021
2005-11-10,0.00841079767286956
2005-11-11,0.00304987915565302
2005-11-14,-0.000777775032231531
2005-11-15,-0.00385744982389102
2005-11-16,0.00178841860670964
2005-11-17,0.00936954397321887
2005-11-18,0.00439167075994717
2005-11-21,0.00525741567848925
2005-11-22,0.00507139501568599
2005-11-23,0.00346678812071133
2005-11-25,0.00208378992597336
2005-11-28,-0.00854421513885928
2005-11-29,1.5920062085506e-05
2005-11-30,-0.00638225363234213
2005-12-01,0.0120838046180207
2005-12-02,0.000324073132591529
2005-12-05,-0.00236627649697496
2005-12-06,0.00127483699828801
2005-12-07,-0.00502165305799007
2005-12-08,-0.00121758962662799
2005-12-09,0.00280694762861167
2005-12-12,0.000841383476405611
2005-12-13,0.00553829531171779
2005-12-14,0.00418077817023566
2005-12-15,-0.00141531116280547
2005-12-16,-0.00285234579237414
2005-12-19,-0.00585613014760433
2005-12-20,-0.000238177601287859
2005-12-21,0.00251350543822859
2005-12-22,0.00421189517436371
2005-12-23,0.000425767312880687
2005-12-27,-0.00959930913800644
2005-12-28,0.0012963762616609
2005-12-29,-0.00298496981445417
2005-12-30,-0.00489870344972232
2006-01-03,0.0162969645269104
2006-01-04,0.00366596429987176
2006-01-05,1.57200408841263e-05
2006-01-06,0.00935551861859452
2006-01-09,0.00364969580898489
2006-01-10,-0.000356675616409952
2006-01-11,0.00347549801529734
2006-01-12,-0.0062940047826272
2006-01-13,0.00120444824773536
2006-01-17,-0.00364120853960248
2006-01-18,-0.00390494298220645
2006-01-19,0.00554825298848716
2006-01-20,-0.0184963225471479
2006-01-23,0.00184528372373194
2006-01-24,0.00240254836265841
2006-01-25,-0.0017222177056091
2006-01-26,0.00720890726399226
2006-01-27,0.00773401464669909
2006-01-30,0.00114443107060413
2006-01-31,-0.00398397982592158
2006-02-01,0.001857536476642
2006-02-02,-0.00910200568293007
2006-02-03,-0.00537301983661909
2006-02-06,0.000782895578486098
2006-02-07,-0.00812766661725295
2006-02-08,0.0086255616427291
2006-02-09,-0.00147859027646824
2006-02-10,0.00253674786508906
2006-02-13,-0.00326502259798911
2006-02-14,0.00998282308962573
2006-02-15,0.00349827668458325
2006-02-16,0.00730140862996187
2006-02-17,-0.00166110291484589
2006-02-21,-0.00327589298696385
2006-02-22,0.0074853901762113
2006-02-23,-0.00378227964058109
2006-02-24,0.00127270094302379
2006-02-27,0.00363062148030391
2006-02-28,-0.0104553270271914
2006-03-01,0.00822739265209638
2006-03-02,-0.00162764822199968
2006-03-03,-0.0014827337328418
2006-03-06,-0.00699282132241841
2006-03-07,-0.00186364543437012
2006-03-08,0.00202788726047753
2006-03-09,-0.00489277733035642
2006-03-10,0.00719762190468476
2006-03-13,0.00211257777561791
2006-03-14,0.0103424561240866
2006-03-15,0.0042607563016146
2006-03-16,0.00177118609475713
2006-03-17,0.00146984542331019
2006-03-20,-0.00166138622279544
2006-03-21,-0.00603310136266177
2006-03-22,0.00600251502940541
2006-03-23,-0.00258563228759812
2006-03-24,0.000982797571605687
2006-03-27,-0.00102893859319497
2006-03-28,-0.00645899881808898
2006-03-29,0.00744193612126409
2006-03-30,-0.00202833185299411
2006-03-31,-0.00414625352034292
2006-04-03,0.00226797383325295
2006-04-04,0.0062371980087752
2006-04-05,0.00430184141240186
2006-04-06,-0.00192323947380402
2006-04-07,-0.0103973529113004
2006-04-10,0.000864153721169103
2006-04-11,-0.00778115426067671
2006-04-12,0.00120406668203898
2006-04-13,0.000776024005575415
2006-04-17,-0.00294435068475796
2006-04-18,0.0169332044614796
2006-04-19,0.00202507694956999
2006-04-20,0.00116724879926267
2006-04-21,-0.000137209178926234
2006-04-24,-0.00242044562338073
2006-04-25,-0.0048815125086259
2006-04-26,0.0028153703395466
2006-04-27,0.00329615804485783
2006-04-28,0.00067931447502545
2006-05-01,-0.00414408739970362
2006-05-02,0.00612591306189714
2006-05-03,-0.0038835037805276
2006-05-04,0.00315223302642043
2006-05-05,0.0102426662994715
2006-05-08,-0.000830039046561204
2006-05-09,0.000362277150255608
2006-05-10,-0.00172964367592243
2006-05-11,-0.0128806749494901
2006-05-12,-0.0113048176844845
2006-05-15,0.00252153096591456
2006-05-16,-0.00187123131495426
2006-05-17,-0.0169844941677715
2006-05-18,-0.00672154985909224
2006-05-19,0.00412835705869607
2006-05-22,-0.00392241462054255
2006-05-23,-0.00435947742513143
2006-05-24,0.0015824030318532
2006-05-25,0.0113059406330516
2006-05-26,0.00570304313329206
2006-05-30,-0.0159765596101735
2006-05-31,0.00807920026290621
2006-06-01,0.0122233272769936
2006-06-02,0.00195033342938
2006-06-05,-0.0179600222971876
2006-06-06,-0.00113877693372721
2006-06-07,-0.00611109203425642
2006-06-08,0.00141604900577175
2006-06-09,-0.00448565606270979
2006-06-12,-0.0119372179581383
2006-06-13,-0.0111738459340129
2006-06-14,0.00517588506333855
2006-06-15,0.0210127546473835
2006-06-16,-0.00368465134786167
2006-06-19,-0.00915860732329765
2006-06-20,-8.07176695882816e-06
2006-06-21,0.00969382010163677
2006-06-22,-0.00528464292811393
2006-06-23,-0.00088347944431888
2006-06-26,0.00485765534552396
2006-06-27,-0.00912552759215224
2006-06-28,0.00547244978637984
2006-06-29,0.0213357690930982
2006-06-30,-0.0020998596482249
2006-07-03,0.00783412851872534
2006-07-05,-0.00727525226175629
2006-07-06,0.00249110892517024
2006-07-07,-0.00677283394842476
2006-07-10,0.00146870790186693
2006-07-11,0.00400831159902904
2006-07-12,-0.0109285275028554
2006-07-13,-0.0130515487607079
2006-07-14,-0.00490630567574613
2006-07-17,-0.00138419738118323
2006-07-18,0.00191797661238091
2006-07-19,0.0183850649379114
2006-07-20,-0.00851364977799207
2006-07-21,-0.00710205831115829
2006-07-24,0.0164884547879014
2006-07-25,0.00630091608035421
2006-07-26,-0.000378342950119404
2006-07-27,-0.00410813743460992
2006-07-28,0.0120785164702113
2006-07-31,-0.00147934242844361
2006-08-01,-0.00450623692865815
2006-08-02,0.00509353485047637
2006-08-03,0.00223639167653733
2006-08-04,-0.000711067643813124
2006-08-07,-0.00281000759664973
2006-08-08,-0.00336837299535553
2006-08-09,-0.0043587708080528
2006-08-10,0.00461833931718214
2006-08-11,-0.00399446585139795
2006-08-14,0.00115976346135405
2006-08-15,0.0136035174636522
2006-08-16,0.00763278389740041
2006-08-17,0.00158117821305748
2006-08-18,0.00370806335083795
2006-08-21,-0.00367720400594163
2006-08-22,0.00100135277016378
2006-08-23,-0.00449876030772955
2006-08-24,0.00237158060356979
2006-08-25,-0.000748774124203599
2006-08-28,0.00515241641914077
2006-08-29,0.00191860564318969
2006-08-30,0.000835335047501218
2006-08-31,-0.00118814591302208
2006-09-01,0.00549946439531546
2006-09-05,0.00170714070669131
2006-09-06,-0.00994072869100737
2006-09-07,-0.00481058479540764
2006-09-08,0.00377951646549501
2006-09-11,0.000477201874927502
2006-09-12,0.0103042096147172
2006-09-13,0.00385390915423578
2006-09-14,-0.00135890621400225
2006-09-15,0.00256455516568987
2006-09-18,0.00115116411233362
2006-09-19,-0.00268304850735479
2006-09-20,0.00570607098576126
2006-09-21,-0.00541012043327527
2006-09-22,-0.00246884627389488
2006-09-25,0.0087765104516917
2006-09-26,0.00749611513141435
2006-09-27,0.00017957006580982
2006-09-28,0.00171187834965369
2006-09-29,-0.00226567191281912
2006-10-02,-0.00339688470432176
2006-10-03,0.0020935009294778
2006-10-04,0.0119883017136537
2006-10-05,0.00223422283137698
2006-10-06,-0.00268609873960113
2006-10-09,0.000792569618379702
2006-10-10,0.00204136776932806
2006-10-11,-0.00256723638442402
2006-10-12,0.00949586934846458
2006-10-13,0.00204514652830667
2006-10-16,0.00251588174602357
2006-10-17,-0.00366616448921242
2006-10-18,0.00128212185790577
2006-10-19,0.000848894206158413
2006-10-20,0.00119903437267332
2006-10-23,0.00613345649331531
2006-10-24,0.000261389049363459
2006-10-25,0.00350773373296764
2006-10-26,0.00495074455464373
2006-10-27,-0.00848754766702164
2006-10-30,0.000428334068703684
2006-10-31,7.1752296140204e-06
2006-11-01,-0.00737862366151809
2006-11-02,-0.00034374202536025
2006-11-03,-0.00222570927225529
2006-11-06,0.0112825746857919
2006-11-07,0.00221524368669979
2006-11-08,0.00208050835407647
2006-11-09,-0.00534724972686718
2006-11-10,0.00186288838689208
2006-11-13,0.00254583325953206
2006-11-14,0.00633628288362242
2006-11-15,0.00240159776169246
2006-11-16,0.00228160870432426
2006-11-17,0.00102817687285928
2006-11-20,-0.000499661653141636
2006-11-21,0.00164809419883305
2006-11-22,0.00233536862224426
2006-11-24,-0.00366223559107937
2006-11-27,-0.0136477898022651
2006-11-28,0.003438472345481
2006-11-29,0.00915949927084458
2006-11-30,0.00082141420931503
2006-12-01,-0.00280269585654569
2006-12-04,0.00884594941184424
2006-12-05,0.00399451994379429
2006-12-06,-0.00131556569452762
2006-12-07,-0.00397844987343188
2006-12-08,0.00181030175523134
2006-12-11,0.0022672408073543
2006-12-12,-0.00104792188917902
2006-12-13,0.00116816744438797
2006-12-14,0.00865192222809696
2006-12-15,0.00112177480909281
2006-12-18,-0.00323556895191413
2006-12-19,0.00215592543469167
2006-12-20,-0.0014180158389232
2006-12-21,-0.00368071683454474
2006-12-22,-0.00533043250831877
2006-12-26,0.00434283016792225
2006-12-27,0.00699078151742771
2006-12-28,-0.00147987699760854
2006-12-29,-0.00452330217942265
2007-01-03,-0.00119938847141565
2007-01-04,0.00122753233161088
2007-01-05,-0.00610316791482379
2007-01-08,0.00221785716034351
2007-01-09,-0.000516809875508173
2007-01-10,0.00193847234895372
2007-01-11,0.00631986113354976
2007-01-12,0.00484142696844714
2007-01-16,0.000817460910785606
2007-01-17,-0.000894337211144069
2007-01-18,-0.00297516137600162
2007-01-19,0.00289128163640306
2007-01-22,-0.00529188648757106
2007-01-23,0.00353570706844586
2007-01-24,0.00846553667390015
2007-01-25,-0.0113337881028741
2007-01-26,-0.00120865904138245
2007-01-29,-0.00109755109730969
2007-01-30,0.00575549848782764
2007-01-31,0.00657124588094593
2007-02-01,0.00533945140583203
2007-02-02,0.00169301677588152
2007-02-05,-0.000967075207189083
2007-02-06,0.000697764098990028
2007-02-07,0.00139406927019614
2007-02-08,-0.00117996304892198
2007-02-09,-0.00710237611137199
2007-02-12,-0.00326671246215149
2007-02-13,0.00756877497695463
2007-02-14,0.0076150120189471
2007-02-15,0.00103705566021262
2007-02-16,-0.000872161682330841
2007-02-20,0.0028402780243777
2007-02-21,-0.00140543808918991
2007-02-22,-0.000857924353300454
2007-02-23,-0.00357003931719468
2007-02-26,-0.00125489304064619
2007-02-27,-0.0353426608069203
2007-02-28,0.00554548479193517
2007-03-01,-0.00259780573285351
2007-03-02,-0.0114682618293003
2007-03-05,-0.00945220963954707
2007-03-06,0.0153747806743985
2007-03-07,-0.00246831414475146
2007-03-08,0.00710134776828308
2007-03-09,0.000677392150231881
2007-03-12,0.00267669878877985
2007-03-13,-0.0205785759265096
2007-03-14,0.00666888032911483
2007-03-15,0.00367697970685921
2007-03-16,-0.00383565561190924
2007-03-19,0.0108355694564022
2007-03-20,0.00631348133382392
2007-03-21,0.0169366434473561
2007-03-22,-0.000348483047323711
2007-03-23,0.00109379140152654
2007-03-26,0.00096743477066763
2007-03-27,-0.00620356061484628
2007-03-28,-0.00799768490015751
2007-03-29,0.00373274863874506
2007-03-30,-0.00117468527624798
2007-04-02,0.00259369723489833
2007-04-03,0.00923730727788374
2007-04-04,0.00111219833347587
2007-04-05,0.00304531421414467
2007-04-09,0.000588549961401341
2007-04-10,0.0026132265130574
2007-04-11,-0.00659452523663795
2007-04-12,0.00618711688627194
2007-04-13,0.00348193133161168
2007-04-16,0.0105985425509116
2007-04-17,0.00214301283016116
2007-04-18,0.000692953109562744
2007-04-19,-0.00120277397649016
2007-04-20,0.00921808725796769
2007-04-23,-0.00230664455413265
2007-04-24,-0.000351205866190085
2007-04-25,0.0100880338606553
2007-04-26,-0.000782724543188174
2007-04-27,-0.000120505169105556
2007-04-30,-0.00786174859464417
2007-05-01,0.002647688182007
2007-05-02,0.00645158845942095
2007-05-03,0.00431575181685773
2007-05-04,0.00214758676379834
2007-05-07,0.0025604372264878
2007-05-08,-0.00116665068819355
2007-05-09,0.00321821627785468
2007-05-10,-0.0140545816494528
2007-05-11,0.00959531553840876
2007-05-14,-0.00179458472888516
2007-05-15,-0.00130483453998931
2007-05-16,0.00858954330737749
2007-05-17,-0.000918444403875007
2007-05-18,0.00658872421416312
2007-05-21,0.00154205520887096
2007-05-22,-0.000642774901818299
2007-05-23,-0.00120796100921705
2007-05-24,-0.00974994030246457
2007-05-25,0.00543786816980241
2007-05-29,0.00156897233584452
2007-05-30,0.00795190759838338
2007-05-31,0.00025484097900641
2007-06-01,0.00373006345354554
2007-06-04,0.00184689989909703
2007-06-05,-0.00536141642273513
2007-06-06,-0.00890325905287082
2007-06-07,-0.0177259614236105
2007-06-08,0.0113062366649208
2007-06-11,0.000961254242358933
2007-06-12,-0.0107391776165171
2007-06-13,0.0150700958976122
2007-06-14,0.00480474225806748
2007-06-15,0.006505555218701
2007-06-18,-0.00121410539177447
2007-06-19,0.00172927818605562
2007-06-20,-0.013694428150961
2007-06-21,0.0061613920559056
2007-06-22,-0.0129796892901757
2007-06-25,-0.00321306073929151
2007-06-26,-0.00324344987088931
2007-06-27,0.00896899620758163
2007-06-28,-0.000418323085245476
2007-06-29,-0.00156858655746195
2007-07-02,0.0106393647725671
2007-07-03,0.00357385717738445
2007-07-05,0.000347529236449873
2007-07-06,0.00329855072741569
2007-07-09,0.000920902421303715
2007-07-10,-0.014287025073374
2007-07-11,0.00570510447457906
2007-07-12,0.0188757072451908
2007-07-13,0.00309660854880267
2007-07-16,-0.00192131636642756
2007-07-17,-9.68249917816522e-05
2007-07-18,-0.00206745969976385
2007-07-19,0.0044590939417235
2007-07-20,-0.0122961534850088
2007-07-23,0.00485746837421708
2007-07-24,-0.0200031613134612
2007-07-25,0.00465476207193305
2007-07-26,-0.023615148557985
2007-07-27,-0.016120829479302
2007-07-30,0.0102017913066215
2007-07-31,-0.0127272924647706
2007-08-01,0.00721656678875782
2007-08-02,0.00434981640869747
2007-08-03,-0.0269457880164303
2007-08-06,0.0238640799186447
2007-08-07,0.00614047465960699
2007-08-08,0.0139737525902346
2007-08-09,-0.03009806642741
2007-08-10,0.000378465843171583
2007-08-13,-0.000495411070207119
2007-08-14,-0.01832339558044
2007-08-15,-0.0140054583279019
2007-08-16,0.00324352143821383
2007-08-17,0.024269565909413
2007-08-20,-0.000269682415440897
2007-08-21,0.00108546507570306
2007-08-22,0.0116448207641202
2007-08-23,-0.00107289159634938
2007-08-24,0.0114690179710468
2007-08-27,-0.00853995187649481
2007-08-28,-0.023752943098998
2007-08-29,0.0216850513864655
2007-08-30,-0.00418977469724524
2007-08-31,0.0111543028906604
2007-09-04,0.0104138092727721
2007-09-05,-0.0115677737105786
2007-09-06,0.00424287267649426
2007-09-07,-0.0170530370774884
2007-09-10,-0.00127362412879428
2007-09-11,0.0135402363541388
2007-09-12,4.76165874498946e-05
2007-09-13,0.00838431576192011
2007-09-14,0.00020217573342407
2007-09-17,-0.00513356927211905
2007-09-18,0.0287895817258725
2007-09-19,0.0060679597654163
2007-09-20,-0.00674593828109593
2007-09-21,0.00459846433574551
2007-09-24,-0.0052703080792158
2007-09-25,-0.00034268816859484
2007-09-26,0.005396714626972
2007-09-27,0.00389948210985658
2007-09-28,-0.00302799981037793
2007-10-01,0.0132021598414251
2007-10-02,-0.000265079337207652
2007-10-03,-0.00456224849632303
2007-10-04,0.00210872673573714
2007-10-05,0.0095148812283723
2007-10-08,-0.00322169814449236
2007-10-09,0.00806364642986246
2007-10-10,-0.0017137974947401
2007-10-11,-0.0051718095996014
2007-10-12,0.00474295933635283
2007-10-15,-0.00841673245512009
2007-10-16,-0.0065948672138525
2007-10-17,0.00175984679550201
2007-10-18,-0.000752946188733894
2007-10-19,-0.025949311293501
2007-10-22,0.00379117640477489
2007-10-23,0.008764339586536
2007-10-24,-0.00244440754330277
2007-10-25,-0.000976794951958126
2007-10-26,0.01369345695608
2007-10-29,0.00370577097275149
2007-10-30,-0.00648437167897686
2007-10-31,0.0119206611262213
2007-11-01,-0.0267788890347616
2007-11-02,0.000801886675927399
2007-11-05,-0.00496709312638899
2007-11-06,0.0119772051663798
2007-11-07,-0.029809726749324
2007-11-08,-0.000576178077605682
2007-11-09,-0.0143900622480899
2007-11-12,-0.0100384522732844
2007-11-13,0.0286777843029586
2007-11-14,-0.00709447789658757
2007-11-15,-0.0133004887971184
2007-11-16,0.00521668047664914
2007-11-19,-0.0176144815928989
2007-11-20,0.00447616355253544
2007-11-21,-0.0160550776140784
2007-11-23,0.0167494256728196
2007-11-26,-0.0235129662210323
2007-11-27,0.0148197950173214
2007-11-28,0.0281596240471256
2007-11-29,0.000476361308165529
2007-11-30,0.00774018494210882
2007-12-03,-0.00590473608906184
2007-12-04,-0.00656173785210967
2007-12-05,0.0150759152461228
2007-12-06,0.0149249724706717
2007-12-07,-0.00177950378963931
2007-12-10,0.0074818942678192
2007-12-11,-0.0255958716918698
2007-12-12,0.00603187942658234
2007-12-13,0.00122357527870509
2007-12-14,-0.013841622648072
2007-12-17,-0.0151348546362806
2007-12-18,0.00626015942802027
2007-12-19,-0.00136175649047665
2007-12-20,0.0048882361109861
2007-12-21,0.0165324227879804
2007-12-24,0.00804456022815625
2007-12-26,0.000808309028023757
2007-12-27,-0.0143852629171581
2007-12-28,0.00150264008596146
2007-12-31,-0.00687516839197588
2008-01-02,-0.0145430828887374
2008-01-03,0
2008-01-04,-0.0248579700167744
2008-01-07,0.00321807535284346
2008-01-08,-0.0185227579589267
2008-01-09,0.0135321102172785
2008-01-10,0.00791671177545883
2008-01-11,-0.0136886509554852
2008-01-14,0.0108119763143026
2008-01-15,-0.0252409007192655
2008-01-16,-0.00562788572249051
2008-01-17,-0.0295241764197485
2008-01-18,-0.00606376963614874
2008-01-22,-0.0111470570811019
2008-01-23,0.021215529973901
2008-01-24,0.0100124377344279
2008-01-25,-0.0159992390586847
2008-01-28,0.0173961307208534
2008-01-29,0.00614088060663853
2008-01-30,-0.00477537853537857
2008-01-31,0.0166331524548324
2008-02-01,0.0121632190818932
2008-02-04,-0.0105179902679815
2008-02-05,-0.032518472942983
2008-02-06,-0.00765284978183267
2008-02-07,0.00785484263475755
2008-02-08,-0.00421258013431913
2008-02-11,0.00587172684132042
2008-02-12,0.00723962703256564
2008-02-13,0.0135123583447569
2008-02-14,-0.0135123583447569
2008-02-15,0.00083739746669842
2008-02-19,-0.000896675946858494
2008-02-20,0.00830627799008177
2008-02-21,-0.0129508645303282
2008-02-22,0.00784972049042576
2008-02-25,0.0137181461912217
2008-02-26,0.00689409157253262
2008-02-27,-0.000919867064847146
2008-02-28,-0.00898209311875053
2008-02-29,-0.0274633951426537
2008-03-03,0.000533410237206766
2008-03-04,-0.00345358556019626
2008-03-05,0.00522465518044779
2008-03-06,-0.022259858258133
2008-03-07,-0.00844592843338354
2008-03-10,-0.0155842857940858
2008-03-11,0.0364571323918295
2008-03-12,-0.00903627768777149
2008-03-13,0.00511382270955618
2008-03-14,-0.0210022737622388
2008-03-17,-0.00899905403220558
2008-03-18,0.041534895928538
2008-03-19,-0.0245869964078409
2008-03-20,0.0236622862583094
2008-03-24,0.0152052424957416
2008-03-25,0.00230124747266913
2008-03-26,-0.00880440487802314
2008-03-27,-0.011526658459533
2008-03-28,-0.00798195748247821
2008-03-31,0.00567113503716143
2008-04-01,0.0352670924773024
2008-04-02,-0.00193594335946567
2008-04-03,0.00130079229604796
2008-04-04,0.000795679122596482
2008-04-07,0.00156038074843412
2008-04-08,-0.0051130829274717
2008-04-09,-0.00812499102704312
2008-04-10,0.0044640734402881
2008-04-11,-0.0205845976068595
2008-04-14,-0.00338952293857453
2008-04-15,0.00458932962105152
2008-04-16,0.0224376484246429
2008-04-17,0.000622720845369074
2008-04-18,0.0179764532693234
2008-04-21,-0.00155473272274786
2008-04-22,-0.00884927363781873
2008-04-23,0.00289572134781135
2008-04-24,0.0064216144826732
2008-04-25,0.00647373686541819
2008-04-28,-0.00105215510367884
2008-04-29,-0.0038962734637531
2008-04-30,-0.00385371798633471
2008-05-01,0.016995468401257
2008-05-02,0.00323037501708967
2008-05-05,-0.00454389148409806
2008-05-06,0.00762280608775256
2008-05-07,-0.0182798531152004
2008-05-08,0.00366283574106596
2008-05-09,-0.00674816608368545
2008-05-12,0.0109604924673654
2008-05-13,-0.000384745357491667
2008-05-14,0.00399758319761023
2008-05-15,0.010528841120542
2008-05-16,0.00124961759569775
2008-05-19,0.000897642405962351
2008-05-20,-0.00931685691055684
2008-05-21,-0.0161837861981757
2008-05-22,0.00261395959509692
2008-05-23,-0.0132984342815874
2008-05-27,0.00682289260092261
2008-05-28,0.00395505874678737
2008-05-29,0.00532075692462897
2008-05-30,0.00151501829040956
2008-06-02,-0.0105598229989941
2008-06-03,-0.00580464247457702
2008-06-04,-0.000326749556665007
2008-06-05,0.0193085355013674
2008-06-06,-0.0313763379285117
2008-06-09,0.000793373614301984
2008-06-10,-0.00244104897317765
2008-06-11,-0.017038680897091
2008-06-12,0.00327433237980568
2008-06-13,0.0149341890517674
2008-06-16,8.08670033718428e-05
2008-06-17,-0.0067943625179705
2008-06-18,-0.00975929140161025
2008-06-19,0.00374530174873922
2008-06-20,-0.0187169296144543
2008-06-23,5.3071210983191e-05
2008-06-24,-0.00281881054256949
2008-06-25,0.00582640080774155
2008-06-26,-0.0298050153578444
2008-06-27,-0.0037243557246418
2008-06-30,0.00126642266852439
2008-07-01,0.00382862551330909
2008-07-02,-0.0183713444757503
2008-07-03,0.00109332370478299
2008-07-07,-0.00842078969793114
2008-07-08,0.0169361191670419
2008-07-09,-0.0230395566162516
2008-07-10,0.00696543691840201
2008-07-11,-0.0111518958216612
2008-07-14,-0.00906885716802197
2008-07-15,-0.0109611114950159
2008-07-16,0.0247546047403171
2008-07-17,0.0119409814258686
2008-07-18,0.000285686634231119
2008-07-21,-0.000539579797459666
2008-07-22,0.0134018560870155
2008-07-23,0.00405593037987728
2008-07-24,-0.02339598669887
2008-07-25,0.00415884828254232
2008-07-28,-0.0187716545983667
2008-07-29,0.0230874307533355
2008-07-30,0.0165345395984913
2008-07-31,-0.0132309033771962
2008-08-01,-0.00559401212776578
2008-08-04,-0.0090065237395951
2008-08-05,0.0283140871410641
2008-08-06,0.00334873575160088
2008-08-07,-0.0180964966146835
2008-08-08,0.0236118675749699
2008-08-11,0.00691874069841614
2008-08-12,-0.0121238680414617
2008-08-13,-0.00291992202075431
2008-08-14,0.00550661241347239
2008-08-15,0.0040676494471823
2008-08-18,-0.0152129412927025
2008-08-19,-0.00935855821085241
2008-08-20,0.00617820742851372
2008-08-21,0.00249185712504474
2008-08-22,0.0112689372994357
2008-08-25,-0.0198205702530663
2008-08-26,0.00367959447144184
2008-08-27,0.00795096080312163
2008-08-28,0.0147311069066687
2008-08-29,-0.0138187055436507
2008-09-02,-0.00410091160250392
2008-09-03,-0.0020371524777838
2008-09-04,-0.0303788573994099
2008-09-05,0.00442097815579601
2008-09-08,0.0203026606368546
2008-09-09,-0.0347344857776859
2008-09-10,0.00613059162967033
2008-09-11,0.0137119378260619
2008-09-12,0.00211928660746441
2008-09-15,-0.0482829846858506
2008-09-16,0.017371525757083
2008-09-17,-0.0482880327090527
2008-09-18,0.0424288062073401
2008-09-19,0.0394673777399142
2008-09-22,-0.0389868043085846
2008-09-23,-0.0157561116312053
2008-09-24,-0.00197968636500612
2008-09-25,0.0194658103739611
2008-09-26,0.00337672171668757
2008-09-29,-0.0921895926824616
2008-09-30,0.0527581576529794
2008-10-01,-0.00455434348827755
2008-10-02,-0.0411249493348764
2008-10-03,-0.0135985659523525
2008-10-06,-0.0392792689474684
2008-10-07,-0.0591077919851264
2008-10-08,-0.0113974069031491
2008-10-09,-0.0792240627662419
2008-10-10,-0.011828976240742
2008-10-13,0.109571967677871
2008-10-14,-0.00533634999137433
2008-10-15,-0.0946951249598742
2008-10-16,0.0416288224743084
2008-10-17,-0.00623220605518071
2008-10-20,0.0465828766849175
2008-10-21,-0.0312839918990973
2008-10-22,-0.0629530802356726
2008-10-23,0.0125548977897267
2008-10-24,-0.0351207770294861
2008-10-27,-0.0322797897489293
2008-10-28,0.102457358617304
2008-10-29,-0.0111409072713213
2008-10-30,0.0254766502324637
2008-10-31,0.0152485457471148
2008-11-03,-0.00253224808079811
2008-11-04,0.0400144782431386
2008-11-05,-0.0541152584391771
2008-11-06,-0.0515712086420006
2008-11-07,0.0284461815908461
2008-11-10,-0.0127338959053622
2008-11-11,-0.0222872005129924
2008-11-12,-0.053288865472509
2008-11-13,0.0669225905167732
2008-11-14,-0.0425934906221732
2008-11-17,-0.0261493499622869
2008-11-18,0.009790290349037
2008-11-19,-0.0631054959591921
2008-11-20,-0.0694818458880215
2008-11-21,0.0613280013306214
2008-11-24,0.0627142317038336
2008-11-25,0.00652941350580694
2008-11-26,0.034718401377587
2008-11-28,0.00959691329205459
2008-12-01,-0.0935365213431991
2008-12-02,0.0391636644629507
2008-12-03,0.0255080471306171
2008-12-04,-0.0297464991534344
2008-12-05,0.0358490902202151
2008-12-08,0.0376688836092862
2008-12-09,-0.0233889441476451
2008-12-10,0.0118240071437743
2008-12-11,-0.028938762069683
2008-12-12,0.0070038305322333
2008-12-15,-0.0127668302519286
2008-12-16,0.0500848165169145
2008-12-17,-0.009639170271317
2008-12-18,-0.0213898235637293
2008-12-19,0.00293259244905464
2008-12-22,-0.0184715766838766
2008-12-23,-0.00976498528612169
2008-12-24,0.00576449604828522
2008-12-26,0.00534188233486788
2008-12-29,-0.00388011766234619
2008-12-30,0.024114019154613
2008-12-31,0.0140590477654765
2009-01-02,0.0311188164766465
2009-01-05,-0.00467928889300584
2009-01-06,0.00778673741549163
2009-01-07,-0.0304691204557725
2009-01-08,0.00339131563340622
2009-01-09,-0.0215332133128845
2009-01-12,-0.0228225878244084
2009-01-13,0.00175651491508511
2009-01-14,-0.0340324645978924
2009-01-15,0.0013282990282466
2009-01-16,0.00753313169630587
2009-01-20,-0.0542620141173771
2009-01-21,0.0425720574215678
2009-01-22,-0.0152784461619406
2009-01-23,0.00536325003424221
2009-01-26,0.00553785001614315
2009-01-27,0.0108663299543723
2009-01-28,0.0330068388156581
2009-01-29,-0.0336810642160428
2009-01-30,-0.0230528212847645
2009-02-02,-0.000532910651536156
2009-02-03,0.0157099392572118
2009-02-04,-0.00751769828255355
2009-02-05,0.0162331896535264
2009-02-06,0.026540681922576
2009-02-09,0.00148409164672536
2009-02-10,-0.0503686700730261
2009-02-11,0.00792347711700891
2009-02-12,0.00173765511052437
2009-02-13,-0.0100480076858052
2009-02-17,-0.0466294998790584
2009-02-18,-0.000950817478137189
2009-02-19,-0.0120968975791254
2009-02-20,-0.0114785914280864
2009-02-23,-0.0353153178799461
2009-02-24,0.0393200497973138
2009-02-25,-0.0107150264339682
2009-02-26,-0.0159056764237766
2009-02-27,-0.0238464838543342
2009-03-02,-0.0477418894103172
2009-03-03,-0.00642737770474877
2009-03-04,0.0234753582745517
2009-03-05,-0.0434633017179884
2009-03-06,0.00121531426414823
2009-03-09,-0.0100742457406087
2009-03-10,0.0617186333331183
2009-03-11,0.00244282967308074
2009-03-12,0.0399210750436207
2009-03-13,0.0077092355948869
2009-03-16,-0.00352212036828625
2009-03-17,0.0316342588360552
2009-03-18,0.0206433924487781
2009-03-19,-0.013064128555369
2009-03-20,-0.0199674289518876
2009-03-23,0.0683663875024916
2009-03-24,-0.0206263613511473
2009-03-25,0.00958033253437574
2009-03-26,0.0230526016737294
2009-03-27,-0.0205247175047596
2009-03-30,-0.0354393232638124
2009-03-31,0.013044168607852
2009-04-01,0.016421043215848
2009-04-02,0.0283222262125244
2009-04-03,0.00968472215402105
2009-04-06,-0.00836727617773558
2009-04-07,-0.024143668502739
2009-04-08,0.0117145566578376
2009-04-09,0.0373470913112142
2009-04-13,0.00253016479483748
2009-04-14,-0.0202685166790708
2009-04-15,0.0124709309068631
2009-04-16,0.0154193092069468
2009-04-17,0.00495705446343297
2009-04-20,-0.0437322091954568
2009-04-21,0.0210293836881039
2009-04-22,-0.00771131987436124
2009-04-23,0.00987344292581316
2009-04-24,0.0166578333737339
2009-04-27,-0.0101175866845882
2009-04-28,-0.00274429808218013
2009-04-29,0.0213798542985861
2009-04-30,-0.000950519117425941
2009-05-01,0.00538188035425335
2009-05-04,0.0333072427952121
2009-05-05,-0.00379892898988832
2009-05-06,0.017254617777497
2009-05-07,-0.0132903382754623
2009-05-08,0.0237839014872199
2009-05-11,-0.0217471899560744
2009-05-12,-0.000979334269865184
2009-05-13,-0.027263198890811
2009-05-14,0.0102984315280912
2009-05-15,-0.0114756764082955
2009-05-18,0.0299365948938579
2009-05-19,-0.00173834592088795
2009-05-20,-0.00514467248849559
2009-05-21,-0.016899558460068
2009-05-22,-0.00149833240703234
2009-05-26,0.0259622075014638
2009-05-27,-0.019153424181412
2009-05-28,0.0153012545732159
2009-05-29,0.013483446369416
2009-06-01,0.0254899433546445
2009-06-02,0.00198133685095225
2009-06-03,-0.0138344652510858
2009-06-04,0.0114182199196389
2009-06-05,-0.00251785736408738
2009-06-08,-0.00101106523384242
2009-06-09,0.00349705973085168
2009-06-10,-0.00348640216488239
2009-06-11,0.00609329806249992
2009-06-12,0.00139602050505072
2009-06-15,-0.0240555909611047
2009-06-16,-0.012801901023745
2009-06-17,-0.00138252376228909
2009-06-18,0.00837581484725369
2009-06-19,0.00310935784201583
2009-06-22,-0.031078363852612
2009-06-23,0.00230406899272495
2009-06-24,0.00650324787179901
2009-06-25,0.0212175847428711
2009-06-26,-0.00147892105389325
2009-06-29,0.00902429678633077
2009-06-30,-0.00856735148030108
2009-07-01,0.00435244487902064
2009-07-02,-0.0295776846284292
2009-07-06,0.00256246233436297
2009-07-07,-0.0198797860301791
2009-07-08,-0.00166993032912277
2009-07-09,0.00354094592778065
2009-07-10,-0.00402993831169685
2009-07-13,0.0246279488736949
2009-07-14,0.00530198316588759
2009-07-15,0.0291994350631661
2009-07-16,0.00860463409494638
2009-07-17,-0.000382734759453385
2009-07-20,0.0113667024613227
2009-07-21,0.00362071430510102
2009-07-22,-0.000534419621958548
2009-07-23,0.0230225995361319
2009-07-24,0.00303754371082388
2009-07-27,0.00297738921673218
2009-07-28,-0.00260984755707572
2009-07-29,-0.00457340633192338
2009-07-30,0.0118253846127718
2009-07-31,0.000739508609090223
2009-08-03,0.015225608418854
2009-08-04,0.00300756989349082
2009-08-05,-0.00291784390936112
2009-08-06,-0.0056405330403555
2009-08-07,0.0133497001584706
2009-08-10,-0.003350555849849
2009-08-11,-0.0127409356041577
2009-08-12,0.011459230815313
2009-08-13,0.00685644989443013
2009-08-14,-0.00856794937047844
2009-08-17,-0.0245599614715646
2009-08-18,0.0100945339631151
2009-08-19,0.00683748338367884
2009-08-20,0.0108892278403427
2009-08-21,0.0184514799559539
2009-08-24,-0.000545946315042123
2009-08-25,0.00236666410022224
2009-08-26,0.000116719841670943
2009-08-27,0.00277789993090938
2009-08-28,-0.00199030699677749
2009-08-31,-0.00810919893613704
2009-09-01,-0.0223722262293844
2009-09-02,-0.00330188431835321
2009-09-03,0.00849858221732358
2009-09-04,0.0130322435343979
2009-09-08,0.00880604658007833
2009-09-09,0.00775225856918205
2009-09-10,0.0103682932267617
2009-09-11,-0.00135133977483282
2009-09-14,0.0063191080278866
2009-09-15,0.00313043643073385
2009-09-16,0.0152073081704103
2009-09-17,-0.00306432944483692
2009-09-18,0.00263386797496334
2009-09-21,-0.00341311453754933
2009-09-22,0.00655334858937007
2009-09-23,-0.0101195583959148
2009-09-24,-0.00955654836383868
2009-09-25,-0.00610936043308197
2009-09-28,0.017652852996382
2009-09-29,-0.00223206553339139
2009-09-30,-0.00333385185547463
2009-10-01,-0.0260972110394855
2009-10-02,-0.00451570565046122
2009-10-05,0.0147654539594306
2009-10-06,0.0136124157904565
2009-10-07,0.00270793622734455
2009-10-08,0.00744214548846056
2009-10-09,0.00562481076477805
2009-10-12,0.00437677740981446
2009-10-13,-0.00279150463186806
2009-10-14,0.0173937438660525
2009-10-15,0.00414885025761969
2009-10-16,-0.00813102357304452
2009-10-19,0.00936136631008999
2009-10-20,-0.00625864865101633
2009-10-21,-0.00889323467242153
2009-10-22,0.0105873745769909
2009-10-23,-0.012253314804954
2009-10-26,-0.0117865149910621
2009-10-27,-0.00332330712455864
2009-10-28,-0.0197343858638721
2009-10-29,0.0222701238918095
2009-10-30,-0.0284660280775499
2009-11-02,0.00643565369545129
2009-11-03,0.00242306402905523
2009-11-04,0.0010420774133868
2009-11-05,0.0190528873304814
2009-11-06,0.00250012437044589
2009-11-09,0.021995084704507
2009-11-10,-6.39918769227421e-05
2009-11-11,0.00501935779461693
2009-11-12,-0.0103123594880037
2009-11-13,0.00572288704331925
2009-11-16,0.0143639771521151
2009-11-17,0.000918983496342562
2009-11-18,-0.000468350369056125
2009-11-19,-0.0135168062447102
2009-11-20,-0.00322010172065301
2009-11-23,0.013523913615094
2009-11-24,-0.000533449683534748
2009-11-25,0.00449400736024774
2009-11-27,-0.0173837002881783
2009-11-30,0.00378581875175321
2009-12-01,0.0120029021643955
2009-12-02,0.000342640104594061
2009-12-03,-0.00843759723102089
2009-12-04,0.00549431178074045
2009-12-07,-0.0024714325029711
2009-12-08,-0.0103044924415601
2009-12-09,0.00366564561119453
2009-12-10,0.00582272055202893
2009-12-11,0.00367632749088909
2009-12-14,0.00693529605406784
2009-12-15,-0.00556240826055809
2009-12-16,0.00112759409461383
2009-12-17,-0.0118809138485352
2009-12-18,0.0058129523600563
2009-12-21,0.0104489770052236
2009-12-22,0.00355721376438378
2009-12-23,0.0022960204279201
2009-12-24,0.00524240689525435
2009-12-28,0.00115341543472169
2009-12-29,-0.00140203397798544
2009-12-30,0.000195410678400343
2009-12-31,-0.0101004355411893
2010-01-04,0.015916081588939
2010-01-05,0.00311083258606715
2010-01-06,0.00054537178454428
2010-01-07,0.00399321768965777
2010-01-08,0.00287758302153307
2010-01-11,0.00174523162929852
2010-01-12,-0.00942544576898019
2010-01-13,0.00829145632438344
2010-01-14,0.00242348622352928
2010-01-15,-0.0108821266169565
2010-01-19,0.0124221510615365
2010-01-20,-0.0106543862492527
2010-01-21,-0.0191266576379148
2010-01-22,-0.0223897789955867
2010-01-25,0.00458755856844117
2010-01-26,-0.00421205752703457
2010-01-27,0.00486828281853935
2010-01-28,-0.0118881258080155
2010-01-29,-0.00987779888537244
2010-02-01,0.0141653052825124
2010-02-02,0.0128895205561932
2010-02-03,-0.00548935039110088
2010-02-04,-0.0316358561099443
2010-02-05,0.00289293031048921
2010-02-08,-0.00890280294113488
2010-02-09,0.0129558424332483
2010-02-10,-0.00223506975616594
2010-02-11,0.00963388250066277
2010-02-12,-0.00274836617729601
2010-02-16,0.0178406532113087
2010-02-17,0.00422900491690648
2010-02-18,0.00656315752063286
2010-02-19,0.00218423491289599
2010-02-22,-0.0010464049626977
2010-02-23,-0.0121766447784486
2010-02-24,0.00967351910685377
2010-02-25,-0.00208320870914047
2010-02-26,0.00140439271299009
2010-03-01,0.0101072576918231
2010-03-02,0.00232773131013975
2010-03-03,0.000429109102265457
2010-03-04,0.00372915639980143
2010-03-05,0.0139102823862975
2010-03-08,-0.000175611281236776
2010-03-09,0.00171127187326459
2010-03-10,0.00451435474804285
2010-03-11,0.00403337441662188
2010-03-12,-0.000217369570136405
2010-03-15,0.000452093030955503
2010-03-16,0.00774901483335011
2010-03-17,0.00580479533225198
2010-03-18,-0.00032589922718973
2010-03-19,-0.00509942676168595
2010-03-22,0.00508235980463212
2010-03-23,0.00714537748290489
2010-03-24,-0.00550844767962921
2010-03-25,-0.00170562173967159
2010-03-26,0.000737451172124537
2010-03-29,0.00566714641181321
2010-03-30,4.26586094119941e-05
2010-03-31,-0.00327824247037523
2010-04-01,0.00738645410980876
2010-04-05,0.00789672874949865
2010-04-06,0.00168287887592466
2010-04-07,-0.00589404277106986
2010-04-08,0.00336866123379931
2010-04-09,0.00666166854112582
2010-04-12,0.00176505056348208
2010-04-13,0.000685166575163265
2010-04-14,0.0110883626143403
2010-04-15,0.000842184378327282
2010-04-16,-0.0162579823653806
2010-04-19,0.00451114103266281
2010-04-20,0.00802604539093998
2010-04-21,-0.0010195168178786
2010-04-22,0.00226132102521071
2010-04-23,0.00709826739408825
2010-04-26,-0.00430570396940411
2010-04-27,-0.0236596402677067
2010-04-28,0.00644195803028769
2010-04-29,0.0128601803303772
2010-04-30,-0.0167878102361989
2010-05-03,0.0130352579905457
2010-05-04,-0.0241271997995494
2010-05-05,-0.00660834225410944
2010-05-06,-0.0328884409104759
2010-05-07,-0.0154266457083896
2010-05-10,0.0430347036359366
2010-05-11,-0.00340307556835295
2010-05-12,0.0136459925025747
2010-05-13,-0.0122195002868901
2010-05-14,-0.0189789807824319
2010-05-17,0.00110875300916202
2010-05-18,-0.0142976312743288
2010-05-19,-0.00514346885922468
2010-05-20,-0.0397557958242247
2010-05-21,0.0149126320445241
2010-05-24,-0.0129920463358486
2010-05-25,0.000353874873899152
2010-05-26,-0.00567707857817901
2010-05-27,0.0323473122979099
2010-05-28,-0.0124518928786399
2010-06-01,-0.0173143531012858
2010-06-02,0.0255144281566615
2010-06-03,0.00404319182716328
2010-06-04,-0.0350174419301954
2010-06-07,-0.0136244659931517
2010-06-08,0.0109162673609076
2010-06-09,-0.00595939712670734
2010-06-10,0.0290798462163266
2010-06-11,0.00437011595660408
2010-06-14,-0.00180629420352574
2010-06-15,0.0232224500706355
2010-06-16,-0.000556089249191594
2010-06-17,0.00128218607180131
2010-06-18,0.00131626440418575
2010-06-21,-0.00386429830752544
2010-06-22,-0.0162012245616934
2010-06-23,-0.00298993968920058
2010-06-24,-0.016946283526087
2010-06-25,0.00285528252758116
2010-06-28,-0.00203601009732424
2010-06-29,-0.0315082302982983
2010-06-30,-0.0101644536876053
2010-07-01,-0.00324571348394809
2010-07-02,-0.00467327172809551
2010-07-06,0.00534472637047934
2010-07-07,0.0308500230552067
2010-07-08,0.00936865450955349
2010-07-09,0.00717806382460928
2010-07-12,0.000732633547972483
2010-07-13,0.0152618228996202
2010-07-14,-0.000155143778904687
2010-07-15,0.00119538807897346
2010-07-16,-0.029242909163198
2010-07-19,0.00596406947786132
2010-07-20,0.0113518737363592
2010-07-21,-0.0129026989816561
2010-07-22,0.0222636877044327
2010-07-23,0.00818641997138325
2010-07-26,0.0111379090898875
2010-07-27,-0.00104990835639729
2010-07-28,-0.00694603269365857
2010-07-29,-0.00416729259597215
2010-07-30,6.34978415838816e-05
2010-08-02,0.0217835280930325
2010-08-03,-0.00480789427328876
2010-08-04,0.00603287779632744
2010-08-05,-0.0012693292744439
2010-08-06,-0.0037109156138122
2010-08-09,0.00546808673855104
2010-08-10,-0.0059852811861294
2010-08-11,-0.0285834060878463
2010-08-12,-0.00539326699700293
2010-08-13,-0.00403169038775264
2010-08-16,0.000120451397280341
2010-08-17,0.0121184894355721
2010-08-18,0.00148168037892127
2010-08-19,-0.0170804355837246
2010-08-20,-0.0036697544109412
2010-08-23,-0.00404849074485458
2010-08-24,-0.0146187681440244
2010-08-25,0.00328394475122629
2010-08-26,-0.00771446624558347
2010-08-27,0.0164507102885798
2010-08-30,-0.014828611229734
2010-08-31,0.00039071798423862
2010-09-01,0.0290777363810122
2010-09-02,0.00903985342442848
2010-09-03,0.0131323936255203
2010-09-07,-0.0115374914603938
2010-09-08,0.00641805921968697
2010-09-09,0.00482065242742902
2010-09-10,0.00485154493380691
2010-09-13,0.0110691260791667
2010-09-14,-0.00071337319119813
2010-09-15,0.00353488317600448
2010-09-16,-0.000364409958688583
2010-09-17,0.000826514434341341
2010-09-20,0.0150952877846136
2010-09-21,-0.00256731343587546
2010-09-22,-0.00483717279571483
2010-09-23,-0.00836623996472952
2010-09-24,0.0209729156440357
2010-09-27,-0.00568355338686555
2010-09-28,0.00483866074341499
2010-09-29,-0.00259111314287352
2010-09-30,-0.00308848644757909
2010-10-01,0.00440671430603068
2010-10-04,-0.00806738657634565
2010-10-05,0.0206467227682605
2010-10-06,-0.000672230203662139
2010-10-07,-0.00164787548692491
2010-10-08,0.00610361246510926
2010-10-11,0.000145826380506087
2010-10-12,0.00381148431292377
2010-10-13,0.0070957855123055
2010-10-14,-0.0036480321897745
2010-10-15,0.00202543218178519
2010-10-18,0.00721763508885687
2010-10-19,-0.0160046444369542
2010-10-20,0.0104690830152396
2010-10-21,0.00177233710496072
2010-10-22,0.00238640853948713
2010-10-25,0.00214467009426489
2010-10-26,1.68855375761723e-05
2010-10-27,-0.0026942100810885
2010-10-28,0.00112421713132616
2010-10-29,-0.000439383364707169
2010-11-01,0.000946085618121373
2010-11-02,0.0077293357235666
2010-11-03,0.00367130673804095
2010-11-04,0.0190993046901946
2010-11-05,0.00391507905868504
2010-11-08,-0.00212321016063655
2010-11-09,-0.00808489488190212
2010-11-10,0.00436653397225051
2010-11-11,-0.00425114999364329
2010-11-12,-0.0118787661411339
2010-11-15,-0.00121817736157226
2010-11-16,-0.0163381572621963
2010-11-17,0.000212140375955627
2010-11-18,0.0152405830517095
2010-11-19,0.00253715186067627
2010-11-22,-0.00157660834433937
2010-11-23,-0.0143870321375594
2010-11-24,0.0148127162611447
2010-11-26,-0.00749659211788867
2010-11-29,-0.00137980971978457
2010-11-30,-0.0060887156619005
2010-12-01,0.021386621877868
2010-12-02,0.0127371001572589
2010-12-03,0.00259985431041887
2010-12-06,-0.00129908225014308
2010-12-07,0.000514947680268385
2010-12-08,0.00369492551091533
2010-12-09,0.00383538380870885
2010-12-10,0.00598370341054633
2010-12-13,4.83195346570042e-05
2010-12-14,0.000910541779019169
2010-12-15,-0.00513561753954317
2010-12-16,0.00616604598947035
2010-12-17,0.000836454409727239
2010-12-20,0.0025451115611439
2010-12-21,0.00601199422367493
2010-12-22,0.00337385743824736
2010-12-23,-0.00164568154736511
2010-12-27,0.000612509202130518
2010-12-28,0.000771026831074551
2010-12-29,0.00100863608877688
2010-12-30,-0.00150935736759905
2010-12-31,-0.000190807466305287
2011-01-03,0.0112512937760822
2011-01-04,-0.00131392469581026
2011-01-05,0.00499467652785945
2011-01-06,-0.00212521436382662
2011-01-07,-0.00184648609413074
2011-01-10,-0.0013772751808192
2011-01-11,0.00371820589060956
2011-01-12,0.00896725421524991
2011-01-13,-0.00171221110649178
2011-01-14,0.00735740998350121
2011-01-18,0.001375464809378
2011-01-19,-0.010167166112689
2011-01-20,-0.00129579826342585
2011-01-21,0.00241063774383399
2011-01-24,0.00581931505115563
2011-01-25,0.000263427858290477
2011-01-26,0.00421202401498455
2011-01-27,0.00224179092232735
2011-01-28,-0.0180138052353058
2011-01-31,0.0076333497009804
2011-02-01,0.0165557920663701
2011-02-02,-0.00272623062444133
2011-02-03,0.0023514328345664
2011-02-04,0.00288011065657567
2011-02-07,0.00622078256565217
2011-02-08,0.00417602002730622
2011-02-09,-0.00278965277085064
2011-02-10,0.000749212030126678
2011-02-11,0.0054922612790147
2011-02-14,0.002382084738632
2011-02-15,-0.00324015429813151
2011-02-16,0.0062379383060529
2011-02-17,0.0030709713123418
2011-02-18,0.00192287268088975
2011-02-22,-0.0207422054038009
2011-02-23,-0.0061307150183838
2011-02-24,-0.000994871327513636
2011-02-25,0.0104952479370892
2011-02-28,0.00554568008612755
2011-03-01,-0.0158648620566035
2011-03-02,0.00161389762089925
2011-03-03,0.0170724351127749
2011-03-04,-0.00740539032583154
2011-03-07,-0.00837621485341167
2011-03-08,0.00888316122204369
2011-03-09,-0.00136263081917765
2011-03-10,-0.0190512811028922
2011-03-11,0.00705556456840739
2011-03-14,-0.006067696457972
2011-03-15,-0.0112635447574503
2011-03-16,-0.0196874817647164
2011-03-17,0.0133092663717145
2011-03-18,0.00430093939832688
2011-03-21,0.014874667971581
2011-03-22,-0.00355688506898222
2011-03-23,0.00290974184802195
2011-03-24,0.00929739334644175
2011-03-25,0.00315615127021385
2011-03-28,-0.00275161894028386
2011-03-29,0.0070352396094755
2011-03-30,0.00666246311058316
2011-03-31,-0.00183117732267579
2011-04-01,0.00495071285084503
2011-04-04,0.000345150227789581
2011-04-05,-0.000180071281671523
2011-04-06,0.00218129662341759
2011-04-07,-0.00152116247666978
2011-04-08,-0.0040124831355568
2011-04-11,-0.00279728828538772
2011-04-12,-0.0078070956296461
2011-04-13,0.000190217490336764
2011-04-14,8.36735841609482e-05
2011-04-15,0.00391772868801432
2011-04-18,-0.0110789976782506
2011-04-19,0.00571480985944994
2011-04-20,0.0134244349573631
2011-04-21,0.00526290885154168
2011-04-25,-0.00159393963772025
2011-04-26,0.00893950761622619
2011-04-27,0.00623039784124924
2011-04-28,0.00354911825943383
2011-04-29,0.00229801982875077
2011-05-02,-0.00175424863313367
2011-05-03,-0.00338502667552909
2011-05-04,-0.00687891438099708
2011-05-05,-0.00911121665601211
2011-05-06,0.00381264255749514
2011-05-09,0.00453387018375295
2011-05-10,0.00804161592368757
2011-05-11,-0.0111736895962347
2011-05-12,0.00488349340589611
2011-05-13,-0.00810004638800876
2011-05-16,-0.00622371876518901
2011-05-17,-0.00036862909934765
2011-05-18,0.00876527255202664
2011-05-19,0.00217557268173252
2011-05-20,-0.00771797456920886
2011-05-23,-0.011997265281523
2011-05-24,-0.000827722781917117
2011-05-25,0.0031781136070359
2011-05-26,0.0039453222364294
2011-05-27,0.00407261593627783
2011-05-31,0.0105370144175314
2011-06-01,-0.0230482254421238
2011-06-02,-0.00122558655421567
2011-06-03,-0.00978149249397564
2011-06-06,-0.0108185158329981
2011-06-07,-0.000956865401350093
2011-06-08,-0.00419566378795366
2011-06-09,0.00735040901149997
2011-06-10,-0.014078483250656
2011-06-13,0.00066853288531199
2011-06-14,0.0125329134371137
2011-06-15,-0.0175855693730487
2011-06-16,0.0017527982098029
2011-06-17,0.00304039001446288
2011-06-20,0.00538068881514864
2011-06-21,0.0133341796982984
2011-06-22,-0.00648945993309713
2011-06-23,-0.00283199313132876
2011-06-24,-0.0117950773123585
2011-06-27,0.00914253711469204
2011-06-28,0.0128612924547111
2011-06-29,0.00824863335529979
2011-06-30,0.0100683719988064
2011-07-01,0.0143068688806984
2011-07-05,-0.00133707249830817
2011-07-06,0.00100105795369121
2011-07-07,0.0103995828897991
2011-07-08,-0.00698545819841812
2011-07-11,-0.018256167242102
2011-07-12,-0.00444336938458711
2011-07-13,0.00310102706679238
2011-07-14,-0.00673878268416228
2011-07-15,0.00553905589693215
2011-07-18,-0.00816311811768244
2011-07-19,0.0161771496047294
2011-07-20,-0.000671057918560258
2011-07-21,0.0134552627786402
2011-07-22,0.00090743973371854
2011-07-25,-0.00565899535561876
2011-07-26,-0.00411342058346786
2011-07-27,-0.0205177242328665
2011-07-28,-0.00323920738287864
2011-07-29,-0.00647142755894858
2011-08-01,-0.00414086095217225
2011-08-02,-0.0258889087378966
2011-08-03,0.00500314595823159
2011-08-04,-0.0490016554271833
2011-08-05,-0.000575082650694725
2011-08-08,-0.0689583694345011
2011-08-09,0.0463174407543656
2011-08-10,-0.0451567965651609
2011-08-11,0.0452505944544548
2011-08-12,0.00524787511209901
2011-08-15,0.0215507274368214
2011-08-16,-0.0097862747865376
2011-08-17,0.000946938237783357
2011-08-18,-0.0456185995898375
2011-08-19,-0.0151227560294362
2011-08-22,0.00025800788024366
2011-08-23,0.0337102489999168
2011-08-24,0.0130346513639337
2011-08-25,-0.0156879346852277
2011-08-26,0.0150084180166195
2011-08-29,0.0278875048209182
2011-08-30,0.00234427511405055
2011-08-31,0.00490990895541099
2011-09-01,-0.0119424610353267
2011-09-02,-0.025607017084277
2011-09-06,-0.00746407691162965
2011-09-07,0.0282438250625177
2011-09-08,-0.0106688906386889
2011-09-09,-0.0270685625679219
2011-09-12,0.00694156899144271
2011-09-13,0.00907872567713408
2011-09-14,0.0133897608613243
2011-09-15,0.0170410461841648
2011-09-16,0.00569047604543815
2011-09-19,-0.00985094873159031
2011-09-20,-0.00166238645247585
2011-09-21,-0.0298309950357503
2011-09-22,-0.0324024566004537
2011-09-23,0.00606358872417712
2011-09-26,0.0230680208948169
2011-09-27,0.0106316656047891
2011-09-28,-0.0209081955994623
2011-09-29,0.00808148572559642
2011-09-30,-0.0252912740737035
2011-10-03,-0.0288636033785545
2011-10-04,0.0222393064046686
2011-10-05,0.0177079188389317
2011-10-06,0.0181381689808147
2011-10-07,-0.00819681138836614
2011-10-10,0.0335556441594189
2011-10-11,0.000543855290753292
2011-10-12,0.00974704698991591
2011-10-13,-0.00297810254442066
2011-10-14,0.0172309489071045
2011-10-17,-0.0195599378475508
2011-10-18,0.0202130497687039
2011-10-19,-0.0127298187858012
2011-10-20,0.00454384001348451
2011-10-21,0.0186340672031751
2011-10-24,0.0127908063564579
2011-10-25,-0.0202483457356237
2011-10-26,0.0104814304042433
2011-10-27,0.0337165913080133
2011-10-28,0.000389153528487007
2011-10-31,-0.0250486166156643
2011-11-01,-0.0283400600024164
2011-11-02,0.0159763632135936
2011-11-03,0.0186076072070964
2011-11-04,-0.00629981958290138
2011-11-07,0.00627600849227683
2011-11-08,0.0116673104575096
2011-11-09,-0.0373853468049665
2011-11-10,0.00858720062395602
2011-11-11,0.0192932234707763
2011-11-14,-0.00959603725233737
2011-11-15,0.00480559883744469
2011-11-16,-0.0167557988102081
2011-11-17,-0.0169426717460741
2011-11-18,-0.000394756927443396
2011-11-21,-0.0188245711572623
2011-11-22,-0.00414943851668959
2011-11-23,-0.0223429704597846
2011-11-25,-0.00268911919925596
2011-11-28,0.0288210791355352
2011-11-29,0.00221120648536921
2011-11-30,0.0424034387262529
2011-12-01,-0.00191046967191433
2011-12-02,-0.000241015567978842
2011-12-05,0.0102344634943536
2011-12-06,0.00110513818593194
2011-12-07,0.00201632073261848
2011-12-08,-0.0213684988013423
2011-12-09,0.0167424122479796
2011-12-12,-0.0150263863410247
2011-12-13,-0.00872395364282852
2011-12-14,-0.0114132513532486
2011-12-15,0.00323785309661773
2011-12-16,0.00321098895457439
2011-12-19,-0.0118021979677119
2011-12-20,0.0293892957258874
2011-12-21,0.00194760826509022
2011-12-22,0.00823157693113075
2011-12-23,0.00899448073988562
2011-12-27,7.91050906894242e-05
2011-12-28,-0.0125565062036017
2011-12-29,0.0106501725530839
2011-12-30,-0.00430057078195123
2012-01-03,0.015355483659043
2012-01-04,0.000187906160885376
2012-01-05,0.00293939285205269
2012-01-06,-0.00254018500173281
2012-01-09,0.00225904391047838
2012-01-10,0.0088465237049391
2012-01-11,0.000309549024282596
2012-01-12,0.00233388310124383
2012-01-13,-0.00496020430847821
2012-01-17,0.00354665767105633
2012-01-18,0.0110466890401675
2012-01-19,0.00492650176502618
2012-01-20,0.000669235882375219
2012-01-23,0.000471231832951169
2012-01-24,-0.00102634414018432
2012-01-25,0.00864169533851555
2012-01-26,-0.00577050837510029
2012-01-27,-0.00159414780608369
2012-01-30,-0.0025253088662982
2012-01-31,-0.000457051443493839
2012-02-01,0.00886023774688649
2012-02-02,0.00109454764780992
2012-02-03,0.014499725687382
2012-02-06,-0.000423963746334799
2012-02-07,0.00202133769374324
2012-02-08,0.00215788085202906
2012-02-09,0.00147302495244972
2012-02-10,-0.0069101222546406
2012-02-13,0.00677702341142083
2012-02-14,-0.000939965350693406
2012-02-15,-0.00539774788518876
2012-02-16,0.0109653661362268
2012-02-17,0.00234617558460481
2012-02-21,0.000719664147935006
2012-02-22,-0.00334569759037784
2012-02-23,0.00426290335879642
2012-02-24,0.00167084095805858
2012-02-27,0.00135364285487949
2012-02-28,0.00335071357158423
2012-02-29,-0.00474824275595065
2012-03-01,0.00613915646363949
2012-03-02,-0.00325103507306501
2012-03-05,-0.00387720062846686
2012-03-06,-0.015489506349164
2012-03-07,0.00687692207133495
2012-03-08,0.00977004895653355
2012-03-09,0.00362467306679903
2012-03-12,0.000160448003327041
2012-03-13,0.0179691328362557
2012-03-14,-0.00119697817839626
2012-03-15,0.00594946620969417
2012-03-16,0.00111877222043688
2012-03-19,0.00396597147512434
2012-03-20,-0.00300502840088424
2012-03-21,-0.00187294998668186
2012-03-22,-0.00723263469064861
2012-03-23,0.00310403596907349
2012-03-26,0.0137903003811832
2012-03-27,-0.00282074958785206
2012-03-28,-0.00495375905961026
2012-03-29,-0.00160922411047792
2012-03-30,0.00369161404395779
2012-04-02,0.00747662586616027
2012-04-03,-0.00399661169318488
2012-04-04,-0.0102549268907746
2012-04-05,-0.000629240236214024
2012-04-09,-0.0114234380847753
2012-04-10,-0.0172290250205762
2012-04-11,0.00742128971352685
2012-04-12,0.0136853149819895
2012-04-13,-0.0125534667456888
2012-04-16,-0.000503727622279015
2012-04-17,0.0153679791555561
2012-04-18,-0.00406353329447651
2012-04-19,-0.00595207569129474
2012-04-20,0.00116858236626349
2012-04-23,-0.00844311318472801
2012-04-24,0.00367302015521176
2012-04-25,0.0135523423902342
2012-04-26,0.00665795209080322
2012-04-27,0.00241141401333422
2012-04-30,-0.00389106215339474
2012-05-01,0.00564243564260547
2012-05-02,-0.00249980508133962
2012-05-03,-0.0076883516009314
2012-05-04,-0.0162789952114322
2012-05-07,0.000350519240533309
2012-05-08,-0.00428785287734446
2012-05-09,-0.00672482778984929
2012-05-10,0.00251424727416794
2012-05-11,-0.00339309090192774
2012-05-14,-0.01117507305272
2012-05-15,-0.00576240872092093
2012-05-16,-0.00441354366417546
2012-05-17,-0.0151657978047659
2012-05-18,-0.00741520132812123
2012-05-21,0.015908683988533
2012-05-22,0.000486219062245219
2012-05-23,0.0016922701589781
2012-05-24,0.00137908064402747
2012-05-25,-0.0021679811409836
2012-05-29,0.0110180555392203
2012-05-30,-0.0144386295659409
2012-05-31,-0.00227926088167862
2012-06-01,-0.0249512954215287
2012-06-04,0.000109548470041965
2012-06-05,0.00571051436820813
2012-06-06,0.0227877761371547
2012-06-07,-0.000106470427507332
2012-06-08,0.00808142084267693
2012-06-11,-0.0127004234590169
2012-06-12,0.0115833898986972
2012-06-13,-0.00704803020027622
2012-06-14,0.0107565928722817
2012-06-15,0.0102847454744222
2012-06-18,0.0014437036043633
2012-06-19,0.00976783429319195
2012-06-20,-0.00168778046725304
2012-06-21,-0.0225132077068944
2012-06-22,0.00714898940880371
2012-06-25,-0.0160835025157402
2012-06-26,0.00476136775748159
2012-06-27,0.00894478190806858
2012-06-28,-0.00211202870368599
2012-06-29,0.0246147936500325
2012-07-02,0.0024562924622602
2012-07-03,0.00621277173793722
2012-07-05,-0.00469804194746182
2012-07-06,-0.00947741840221283
2012-07-09,-0.00164017633768676
2012-07-10,-0.00815912161449717
2012-07-11,-1.49240384228477e-05
2012-07-12,-0.00499957404873896
2012-07-13,0.0163627588531714
2012-07-16,-0.00231699541309549
2012-07-17,0.00738235559029832
2012-07-18,0.00665827507372363
2012-07-19,0.00271341563503746
2012-07-20,-0.0101126208363018
2012-07-23,-0.00894897852475385
2012-07-24,-0.00908205023595787
2012-07-25,-0.000313910762899106
2012-07-26,0.0164056629468412
2012-07-27,0.0189008143599869
2012-07-30,-0.000483476534740568
2012-07-31,-0.00432617309985961
2012-08-01,-0.00290419290235455
2012-08-02,-0.00753196341395768
2012-08-03,0.0188612880168071
2012-08-06,0.00232656055634539
2012-08-07,0.00509376337427447
2012-08-08,0.000620633723697139
2012-08-09,0.000413599905977335
2012-08-10,0.00218605046122633
2012-08-13,-0.00125268524521882
2012-08-14,-0.000128154155744298
2012-08-15,0.00113899121233452
2012-08-16,0.00707542076430112
2012-08-17,0.00187038344719603
2012-08-20,-2.11748443135207e-05
2012-08-21,-0.00350366685838122
2012-08-22,0.000226377418945489
2012-08-23,-0.00810499947091436
2012-08-24,0.00643398846531262
2012-08-27,-0.000489134791598289
2012-08-28,-0.000808508632808014
2012-08-29,0.000843992676175631
2012-08-30,-0.00783642989845301
2012-08-31,0.00506047006371091
2012-09-04,-0.00116663957296659
2012-09-05,-0.00106823165359771
2012-09-06,0.0202295368196461
2012-09-07,0.00404179510880365
2012-09-10,-0.00616680573095341
2012-09-11,0.00313005242310638
2012-09-12,0.00209050560200463
2012-09-13,0.0161781717105187
2012-09-14,0.00395113577313833
2012-09-17,-0.00312958345809022
2012-09-18,-0.0012805950521706
2012-09-19,0.00118485206009211
2012-09-20,-0.000540879949957329
2012-09-21,-7.53222997937897e-05
2012-09-24,-0.00223514954449477
2012-09-25,-0.0105573895352329
2012-09-26,-0.00575325353805933
2012-09-27,0.00960272762378533
2012-09-28,-0.00448780791268444
2012-10-01,0.00264799746778088
2012-10-02,0.000871906889519991
2012-10-03,0.00361785713150553
2012-10-04,0.00714882160989205
2012-10-05,-0.000321640602879647
2012-10-08,-0.00346272396479907
2012-10-09,-0.00994018254082096
2012-10-10,-0.00620725495771079
2012-10-11,0.000195370278807339
2012-10-12,-0.00297054495564275
2012-10-15,0.00804547070826001
2012-10-16,0.0102175557733855
2012-10-17,0.00410860596536988
2012-10-18,-0.0024467196305995
2012-10-19,-0.016710145006793
2012-10-22,0.0004394857604062
2012-10-23,-0.0145492350179213
2012-10-24,-0.00309015223480102
2012-10-25,0.00299106515850145
2012-10-26,-0.000729248066475563
2012-10-31,0.000155867711761459
2012-11-01,0.0108672128540972
2012-11-02,-0.00942371849029566
2012-11-05,0.00216147163196467
2012-11-06,0.00782250920348027
2012-11-07,-0.0239904846382153
2012-11-08,-0.012279932930479
2012-11-09,0.0016972514097553
2012-11-12,0.000130478861348315
2012-11-13,-0.00399338347560629
2012-11-14,-0.0139488704012525
2012-11-15,-0.00159481582451804
2012-11-16,0.00482827486175985
2012-11-19,0.0196673769068623
2012-11-20,0.000663166475065147
2012-11-21,0.00231749315482332
2012-11-23,0.012942201988551
2012-11-26,-0.00203164401993128
2012-11-27,-0.00524029393118219
2012-11-28,0.00782533125554252
2012-11-29,0.0042605532404778
2012-11-30,0.000162494659567081
2012-12-03,-0.00475651932603149
2012-12-04,-0.00171127571324448
2012-12-05,0.00158360732177698
2012-12-06,0.00330113578204916
2012-12-07,0.00291666208282582
2012-12-10,0.000338503574980109
2012-12-11,0.00652753131997663
2012-12-12,0.000448138879964866
2012-12-13,-0.00634148976994808
2012-12-14,-0.0041439755970929
2012-12-17,0.0118006878307124
2012-12-18,0.011421185869362
2012-12-19,-0.00761814523668036
2012-12-20,0.00547310412923085
2012-12-21,-0.0094229444582723
2012-12-24,-0.00244327880769202
2012-12-26,-0.00479895670249331
2012-12-27,-0.0012191845857652
2012-12-28,-0.0111114457608297
2012-12-31,0.0168000267789203
2013-01-02,0.0250861162809422
2013-01-03,-0.00208779554121996
2013-01-04,0.0048533002617237
2013-01-07,-0.00312800322107964
2013-01-08,-0.00324763970537756
2013-01-09,0.00265234596367847
2013-01-10,0.00756869970876828
2013-01-11,-4.75149186138779e-05
2013-01-14,-0.000931104825128592
2013-01-15,0.00112803322079635
2013-01-16,0.000196972467491285
2013-01-17,0.00562706018745907
2013-01-18,0.00339749233702147
2013-01-22,0.00441833221534349
2013-01-23,0.00150634192388299
2013-01-24,6.61419639502725e-06
2013-01-25,0.00543070889682884
2013-01-28,-0.00185133412369165
2013-01-29,0.00509300370768884
2013-01-30,-0.0039072447493087
2013-01-31,-0.00256659223467448
2013-02-01,0.010002513494821
2013-02-04,-0.0116058327040065
2013-02-05,0.0103626321389179
2013-02-06,0.000549019822990715
2013-02-07,-0.0018070307454412
2013-02-08,0.00564199454255832
2013-02-11,-0.000606301283571753
2013-02-12,0.00159400117335018
2013-02-13,0.000592087548575648
2013-02-14,0.000690433378051303
2013-02-15,-0.00104562791416463
2013-02-19,0.0073096942171258
2013-02-20,-0.0124817112783244
2013-02-21,-0.00632300531558805
2013-02-22,0.00873421362357529
2013-02-25,-0.0184792755796783
2013-02-26,0.00609087631288396
2013-02-27,0.0126456992358053
2013-02-28,-0.000864453116014907
2013-03-01,0.00232115914547659
2013-03-04,0.0046001265488691
2013-03-05,0.00952055194459955
2013-03-06,0.00108392513655087
2013-03-07,0.00181484372843244
2013-03-08,0.00447112874753319
2013-03-11,0.00324381887029013
2013-03-12,-0.00240614588950461
2013-03-13,0.00131318976064687
2013-03-14,0.00558735155757173
2013-03-15,-0.00161977356025567
2013-03-18,-0.00552556995812115
2013-03-19,-0.00242546987760051
2013-03-20,0.00667516373986388
2013-03-21,-0.0083169236849141
2013-03-22,0.00714864391792247
2013-03-25,-0.00334562978856923
2013-03-26,0.00775496375620222
2013-03-27,-0.000588523087380111
2013-03-28,0.00404846287235916
2013-04-01,-0.00448361657145746
2013-04-02,0.00515893386384647
2013-04-03,-0.0106021334803152
2013-04-04,0.00404027897372661
2013-04-05,-0.00430414505955135
2013-04-08,0.00628295877146634
2013-04-09,0.00353806576738691
2013-04-10,0.0121154432584394
2013-04-11,0.0035459564012621
2013-04-12,-0.00284079798439674
2013-04-15,-0.0232341250374395
2013-04-16,0.0142058408709529
2013-04-17,-0.0144313133513894
2013-04-18,-0.00672355634860722
2013-04-19,0.00880898927910412
2013-04-22,0.00465079821542691
2013-04-23,0.0103653126175125
2013-04-24,6.34031852619898e-06
2013-04-25,0.00402661449122199
2013-04-26,-0.00184381183628979
2013-04-29,0.00716031529692795
2013-04-30,0.00248181745825082
2013-05-01,-0.00935147257722146
2013-05-02,0.00936400403139093
2013-05-03,0.0104795638695707
2013-05-06,0.00190596109460994
2013-05-07,0.00521663919827642
2013-05-08,0.00413053857943524
2013-05-09,-0.00369391774633154
2013-05-10,0.00431234363275923
2013-05-13,4.28888409889083e-05
2013-05-14,0.0100910667911167
2013-05-15,0.00510110320235935
2013-05-16,-0.00502233162656562
2013-05-17,0.0102474119847287
2013-05-20,-0.00070786862025507
2013-05-21,0.0017209046128599
2013-05-22,-0.00830807390799126
2013-05-23,-0.0029281152127405
2013-05-24,-0.000551517389983047
2013-05-28,0.00632096210287258
2013-05-29,-0.00707293670116638
2013-05-30,0.00366362521898278
2013-05-31,-0.0144105769569691
2013-06-03,0.00591844003680286
2013-06-04,-0.00552604796710998
2013-06-05,-0.0138755548731133
2013-06-06,0.00845445465196448
2013-06-07,0.0127499143478786
2013-06-10,-0.000346873427656824
2013-06-11,-0.010205264360045
2013-06-12,-0.00840477668942263
2013-06-13,0.0146760685918217
2013-06-14,-0.0059024011357689
2013-06-17,0.00753887581273727
2013-06-18,0.00776096371285817
2013-06-19,-0.0139483013969688
2013-06-20,-0.0253284248255481
2013-06-21,0.002666219490842
2013-06-24,-0.0122193690269237
2013-06-25,0.00945245625813129
2013-06-26,0.00954478999932196
2013-06-27,0.00618069104756724
2013-06-28,-0.0042987890587467
2013-07-01,0.00538919983291208
2013-07-02,-0.0005450567626335
2013-07-03,0.000823707817223962
2013-07-05,0.0101500460298922
2013-07-08,0.00523780503650251
2013-07-09,0.00720366172182008
2013-07-10,0.000181576068661649
2013-07-11,0.0134632131161112
2013-07-12,0.00308172969899356
2013-07-15,0.00137393539334418
2013-07-16,-0.00371565527788675
2013-07-17,0.0027702064016788
2013-07-18,0.00502034174953803
2013-07-19,0.00160875575520603
2013-07-22,0.00203096226114141
2013-07-23,-0.00185365348551247
2013-07-24,-0.00381850317841348
2013-07-25,0.00255321022615274
2013-07-26,0.000827951193140386
2013-07-29,-0.00374303396304843
2013-07-30,0.000373747154854165
2013-07-31,-0.00013641883113813
2013-08-01,0.0124625884398295
2013-08-02,0.00163911418859097
2013-08-05,-0.00148093070361455
2013-08-06,-0.00573947310553091
2013-08-07,-0.00381312569916847
2013-08-08,0.00387792090416905
2013-08-09,-0.00357634773294979
2013-08-12,-0.00115358571713653
2013-08-13,0.00277220972548431
2013-08-14,-0.00519006291320068
2013-08-15,-0.0143845653305519
2013-08-16,-0.00331006748250928
2013-08-19,-0.00591777767732538
2013-08-20,0.00381391310215928
2013-08-21,-0.00579636961331342
2013-08-22,0.00858244167651012
2013-08-23,0.0039392418724935
2013-08-26,-0.00404783940924602
2013-08-27,-0.0160015393374877
2013-08-28,0.0027438776346882
2013-08-29,0.00196147664425173
2013-08-30,-0.00317936704421751
2013-09-03,0.00415557533102184
2013-09-04,0.00808418760961516
2013-09-05,0.00120913153950752
2013-09-06,5.44297258651127e-05
2013-09-09,0.00994328214331652
2013-09-10,0.00731894030823721
2013-09-11,0.0030476348223738
2013-09-12,-0.00338614186469322
2013-09-13,0.00271100148176906
2013-09-16,0.00567700867858001
2013-09-17,0.00420886949012456
2013-09-18,0.0121041216925901
2013-09-19,-0.00184465431581149
2013-09-20,-0.00724305417226034
2013-09-23,-0.00473075873128082
2013-09-24,-0.00260052157109847
2013-09-25,-0.0027432249096826
2013-09-26,0.00347936560327877
2013-09-27,-0.00408212169563793
2013-09-30,-0.00604747987897802
2013-10-01,0.00796672458119385
2013-10-02,-0.00066689193952385
2013-10-03,-0.00901997253841191
2013-10-04,0.00702846681132563
2013-10-07,-0.00854274760673501
2013-10-08,-0.0124087499649912
2013-10-09,0.000573741584451781
2013-10-10,0.0215956233728347
2013-10-11,0.00626659527639362
2013-10-14,0.00406644145177637
2013-10-15,-0.00708878958009063
2013-10-16,0.0137328040315845
2013-10-17,0.0067213142111342
2013-10-18,0.00652740570253041
2013-10-21,9.17321066111754e-05
2013-10-22,0.00572111637378736
2013-10-23,-0.00473575320410013
2013-10-24,0.0032528383122683
2013-10-25,0.00438521482412835
2013-10-28,0.00132881605335466
2013-10-29,0.00556866131660883
2013-10-30,-0.00488784936718112
2013-10-31,-0.00384677083390983
2013-11-01,0.0028992146473561
2013-11-04,0.00356419934203611
2013-11-05,-0.00280953084344837
2013-11-06,0.00425646841151384
2013-11-07,-0.0132704361042091
2013-11-08,0.013338208830703
2013-11-11,0.00072267046193808
2013-11-12,-0.00237320587385081
2013-11-13,0.00806275295031877
2013-11-14,0.00482559675500571
2013-11-15,0.00421314650007876
2013-11-18,-0.00370505274996713
2013-11-19,-0.00204505517743669
2013-11-20,-0.00364223599640034
2013-11-21,0.00809570571710694
2013-11-22,0.00494919039932817
2013-11-25,-0.00126414117716322
2013-11-26,0.000149793495562101
2013-11-27,0.00248199841808638
2013-11-29,-0.000785997972773345
2013-12-02,-0.0027227239896046
2013-12-03,-0.00319795599263006
2013-12-04,-0.00130434301253146
2013-12-05,-0.00434901620599337
2013-12-06,0.0111751951427346
2013-12-09,0.00181545108360304
2013-12-10,-0.00318472489586341
2013-12-11,-0.0113813974430217
2013-12-12,-0.00377768854573191
2013-12-13,-0.000101415449329068
2013-12-16,0.00630015225723568
2013-12-17,-0.00310580590138798
2013-12-18,0.0165109057804926
2013-12-19,-0.000580096970897337
2013-12-20,0.00480715505290341
2013-12-23,0.00530402891696458
2013-12-24,0.00291150427484865
2013-12-26,0.00473430503327954
2013-12-27,-0.000336641489946388
2013-12-30,-0.000179269894159617
2013-12-31,0.00395185631591755
2014-01-02,-0.00890141308229708
2014-01-03,-0.000333020328278977
2014-01-06,-0.00251492693317079
2014-01-07,0.0060633451825538
2014-01-08,-0.000212231694765919
2014-01-09,0.000348248734820089
2014-01-10,0.00230403036309479
2014-01-13,-0.0126559664896657
2014-01-14,0.01075987627814
2014-01-15,0.0051528891343553
2014-01-16,-0.0013480283593692
2014-01-17,-0.00390278060394866
2014-01-21,0.00276991242951219
2014-01-22,0.000574699765986786
2014-01-23,-0.00892932453982542
2014-01-24,-0.0210964214964333
2014-01-27,-0.0048882215903987
2014-01-28,0.00612187539440168
2014-01-29,-0.0102617040053703
2014-01-30,0.0112040442426675
2014-01-31,-0.00648628988702349
2014-02-03,-0.0230966046034604
2014-02-04,0.00761204338333066
2014-02-05,-0.00203028211002909
2014-02-06,0.0123630544156672
2014-02-07,0.013214193602149
2014-02-10,0.00156800464224105
2014-02-11,0.0110013758444198
2014-02-12,-0.000269298518890793
2014-02-13,0.00579321182005987
2014-02-14,0.00479768947917147
2014-02-18,0.00115780345614702
2014-02-19,-0.00654586190052076
2014-02-20,0.00601334166556988
2014-02-21,-0.00192056651181716
2014-02-24,0.00616745536205254
2014-02-25,-0.00134859055000724
2014-02-26,2.16997082533865e-05
2014-02-27,0.00493588147209412
2014-02-28,0.00277882422261033
2014-03-03,-0.00740586636198604
2014-03-04,0.0151523228342167
2014-03-05,-5.33524369705773e-05
2014-03-06,0.00171693312189092
2014-03-07,0.000537944701997972
2014-03-10,-0.000463353578807002
2014-03-11,-0.00509509694160215
2014-03-12,0.000305124168463067
2014-03-13,-0.0117700915065626
2014-03-14,-0.00282576645111643
2014-03-17,0.00956771760196951
2014-03-18,0.00719368227489348
2014-03-19,-0.00615052484482348
2014-03-20,0.00602233396080987
2014-03-21,-0.00293697999067266
2014-03-24,-0.00487658142921354
2014-03-25,0.00439427100472223
2014-03-26,-0.00702493667276993
2014-03-27,-0.0019018915970701
2014-03-28,0.00462948921412654
2014-03-31,0.00789287154385132
2014-04-01,0.0070146881968487
2014-04-02,0.00284926336425695
2014-04-03,-0.00112708474585688
2014-04-04,-0.012616543077149
2014-04-07,-0.010808312462367
2014-04-08,0.00374353804780014
2014-04-09,0.0108590394626162
2014-04-10,-0.0211059679216197
2014-04-11,-0.00953205993380735
2014-04-14,0.00818370818243785
2014-04-15,0.00673457945540701
2014-04-16,0.0104338684212522
2014-04-17,0.00136292371098623
2014-04-21,0.00376801562134865
2014-04-22,0.00408378889976113
2014-04-23,-0.00221576676650592
2014-04-24,0.00171548790073039
2014-04-25,-0.00812934477856952
2014-04-28,0.00323081153933558
2014-04-29,0.00474946032089285
2014-04-30,0.00298754974058468
2014-05-01,-0.000143271499644548
2014-05-02,-0.00134935499643873
2014-05-05,0.00186946730010895
2014-05-06,-0.00902903120769771
2014-05-07,0.00560075474535893
2014-05-08,-0.00137456920358403
2014-05-09,0.00151832288286347
2014-05-12,0.00962625620353919
2014-05-13,0.000421668916014362
2014-05-14,-0.00471208963163416
2014-05-15,-0.00940590380541284
2014-05-16,0.00373996241046282
2014-05-19,0.00383741434790785
2014-05-20,-0.0065196046087328
2014-05-21,0.00808334041970671
2014-05-22,0.00235944422810963
2014-05-23,0.00423939288552333
2014-05-27,0.00596995027375247
2014-05-28,-0.00111469281152576
2014-05-29,0.00535275865819163
2014-05-30,0.00184198044744743
2014-06-02,0.000727561668555587
2014-06-03,-0.000379288745559592
2014-06-04,0.00188987678895014
2014-06-05,0.00650408209108555
2014-06-06,0.0046170833074175
2014-06-09,0.000938331305107454
2014-06-10,-0.000246014154145158
2014-06-11,-0.00354331093877303
2014-06-12,-0.00711413945191186
2014-06-13,0.0031296592884118
2014-06-16,0.000836355270388722
2014-06-17,0.00217021247740501
2014-06-18,0.00768924304188978
2014-06-19,0.00127666329547083
2014-06-20,0.00172856367519536
2014-06-23,-0.00013247297232688
2014-06-24,-0.00645610655987472
2014-06-25,0.00488555751160114
2014-06-26,-0.00117957912445377
2014-06-27,0.00190904511827394
2014-06-30,-0.00037232626800332
2014-07-01,0.00665557298946684
2014-07-02,0.000658596162261382
2014-07-03,0.00546455008240532
2014-07-07,-0.00393123905908066
2014-07-08,-0.00707376194048237
2014-07-09,0.00463351649371191
2014-07-10,-0.00413962814962421
2014-07-11,0.00146984170400444
2014-07-14,0.00483186108333999
2014-07-15,-0.00193396492782227
2014-07-16,0.00419228501402014
2014-07-17,-0.0119046058414494
2014-07-18,0.0102126091095895
2014-07-21,-0.00232294651459952
2014-07-22,0.00500361095825319
2014-07-23,0.00175290104463688
2014-07-24,0.000488036458804686
2014-07-25,-0.00486094571948925
2014-07-28,0.00028811321192368
2014-07-29,-0.00453806841016036
2014-07-30,6.09108599309849e-05
2014-07-31,-0.0202019319801767
2014-08-01,-0.00286321647470533
2014-08-04,0.00716331454385255
2014-08-05,-0.00973267904391317
2014-08-06,1.56382717566572e-05
2014-08-07,-0.00557211547605352
2014-08-08,0.0114654228023729
2014-08-11,0.00275562496105053
2014-08-12,-0.00163798240239021
2014-08-13,0.00668476725501144
2014-08-14,0.00433639826904209
2014-08-15,-6.13747476219118e-05
2014-08-18,0.00849548289299928
2014-08-19,0.00498819050701815
2014-08-20,0.00247474819157301
2014-08-21,0.00294554710346961
2014-08-22,-0.00199457506824352
2014-08-25,0.00477635409921451
2014-08-26,0.00105052910224401
2014-08-27,4.99857503220014e-05
2014-08-28,-0.00169133060373472
2014-08-29,0.00331491438790366
2014-09-02,-0.00054421430747631
2014-09-03,-0.000779444456148859
2014-09-04,-0.00153559956037075
2014-09-05,0.00502324794336317
2014-09-08,-0.00307784591667204
2014-09-09,-0.0065665217057651
2014-09-10,0.00363944360111024
2014-09-11,0.00088151688223892
2014-09-12,-0.00598040543743661
2014-09-15,-0.000710403657569358
2014-09-16,0.00745650703099887
2014-09-17,0.00129480516916569
2014-09-18,0.00487925709696935
2014-09-19,-0.000477383541575449
2014-09-22,-0.00804560235559748
2014-09-23,-0.0057932498118749
2014-09-24,0.00780197660825355
2014-09-25,-0.0163009134703964
2014-09-26,0.00853926145203854
2014-09-29,-0.00255005097883565
2014-09-30,-0.00278981666290345
2014-10-01,-0.0133371061732772
2014-10-02,5.14344867941219e-06
2014-10-03,0.0111036352853944
2014-10-06,-0.00156638593810943
2014-10-07,-0.0152416182580346
2014-10-08,0.0173109474626436
2014-10-09,-0.0208778486004606
2014-10-10,-0.0115170799971454
2014-10-13,-0.0166050333890189
2014-10-14,0.00157761971434933
2014-10-15,-0.00813330076038188
2014-10-16,0.000144967452102129
2014-10-17,0.0128018133755461
2014-10-20,0.00910111612015552
2014-10-21,0.0193853705517286
2014-10-22,-0.00732610069111495
2014-10-23,0.0122283057558548
2014-10-24,0.00702869029605413
2014-10-27,-0.00150269679126147
2014-10-28,0.0118683645937558
2014-10-29,-0.00138631599052275
2014-10-30,0.00621079695358162
2014-10-31,0.0116631145259039
2014-11-03,-0.000118928800235452
2014-11-04,-0.0028338532482115
2014-11-05,0.00568431071217113
2014-11-06,0.0037684038179453
2014-11-07,0.00034952512292552
2014-11-10,0.00311532710763185
2014-11-11,0.000696451657019814
2014-11-12,-0.00070136272063781
2014-11-13,0.000529704401583508
2014-11-14,0.000240241233654181
2014-11-17,0.000735088777762627
2014-11-18,0.00512084957906112
2014-11-19,-0.00150228681447917
2014-11-20,0.00196516386829604
2014-11-21,0.00522321260373815
2014-11-24,0.002859929760886
2014-11-25,-0.00115069155918857
2014-11-26,0.00280205255492394
2014-11-28,-0.00254566438022064
2014-12-01,-0.00685278973916059
2014-12-02,0.00636416703985621
2014-12-03,0.00375767369059687
2014-12-04,-0.00116257161119471
2014-12-05,0.00166383144824511
2014-12-08,-0.00728302186219132
2014-12-09,-0.000237852197481736
2014-12-10,-0.016486120835066
2014-12-11,0.00452543377123771
2014-12-12,-0.0163464657921013
2014-12-15,-0.00636278618551067
2014-12-16,-0.00852526004308629
2014-12-17,0.0201480735367578
2014-12-18,0.0237313744836403
2014-12-19,0.00455963802882131
2014-12-22,0.00380322261586841
2014-12-23,0.0017448387198078
2014-12-24,-0.000139306211045742
2014-12-26,0.00330411011647236
2014-12-29,0.000861403031772845
2014-12-30,-0.00490059269736509
2014-12-31,-0.0103643838934451
2015-01-02,-0.000340021389685141
2015-01-05,-0.0184472134761444
2015-01-06,-0.00893325483918783
2015-01-07,0.0115627358160442
2015-01-08,0.0177301685361213
2015-01-09,-0.00843932215298615
2015-01-12,-0.00812661692658967
2015-01-13,-0.00258188569811857
2015-01-14,-0.00583002858816606
2015-01-15,-0.00929090321018489
2015-01-16,0.0133348931859034
2015-01-20,0.00154875249129915
2015-01-21,0.0047204648795427
2015-01-22,0.0151543129616831
2015-01-23,-0.00550665628783698
2015-01-26,0.0025651682269423
2015-01-27,-0.0134782877843405
2015-01-28,-0.0135875029854553
2015-01-29,0.00948951714801005
2015-01-30,-0.0130770991237998
2015-02-02,0.0128791703225923
2015-02-03,0.0143362382277425
2015-02-04,-0.00416470631283339
2015-02-05,0.0102388108233749
2015-02-06,-0.00342402769471661
2015-02-09,-0.00425623956942545
2015-02-10,0.010618979721448
2015-02-11,-2.90342065518701e-05
2015-02-12,0.00959829498498976
2015-02-13,0.00406645934045802
2015-02-17,0.00159629986164056
2015-02-18,-0.000314358504146739
2015-02-19,-0.00106262196882057
2015-02-20,0.00610784288444677
2015-02-23,-0.000303385345276297
2015-02-24,0.00275497229909494
2015-02-25,-0.000766016941597947
2015-02-26,-0.00147711854171728
2015-02-27,-0.00296068293759255
2015-03-02,0.00610623838037583
2015-03-03,-0.00454887294390804
2015-03-04,-0.00439816123077552
2015-03-05,0.00119536536275699
2015-03-06,-0.0142753562195637
2015-03-09,0.00393666241764379
2015-03-10,-0.017106821197868
2015-03-11,-0.00191952070345813
2015-03-12,0.0125227022377192
2015-03-13,-0.00609323717440802
2015-03-16,0.0134429089960602
2015-03-17,-0.00332569765570323
2015-03-18,0.0120851016447512
2015-03-19,-0.00488448890259008
2015-03-20,0.00897238213196072
2015-03-23,-0.00174725671037557
2015-03-24,-0.00615834576099061
2015-03-25,-0.0146659264438469
2015-03-26,-0.00238033098804724
2015-03-27,0.00236576112412124
2015-03-30,0.0121623823073698
2015-03-31,-0.0088346859011752
2015-04-01,-0.00397325460309794
2015-04-02,0.0035234525311898
2015-04-06,0.0065870725268109
2015-04-07,-0.00206403267867206
2015-04-08,0.00267894145243641
2015-04-09,0.004447576210592
2015-04-10,0.00518937692086574
2015-04-13,-0.00459180684247329
2015-04-14,0.0016284321389497
2015-04-15,0.00513498908181376
2015-04-16,-0.000778746958332022
2015-04-17,-0.0113757039050322
2015-04-20,0.00919274825019833
2015-04-21,-0.00148170237090905
2015-04-22,0.00507458291283669
2015-04-23,0.00235494098298616
2015-04-24,0.00225026646283322
2015-04-27,-0.00414991298962608
2015-04-28,0.00276540448890294
2015-04-29,-0.00374734807524302
2015-04-30,-0.010180553084024
2015-05-01,0.0108637764214281
2015-05-04,0.00293643306656488
2015-05-05,-0.0119080032177754
2015-05-06,-0.00446568133609659
2015-05-07,0.00376671063472767
2015-05-08,0.0133681481498069
2015-05-11,-0.00510255667790105
2015-05-12,-0.0029539964693166
2015-05-13,-0.000305001424704798
2015-05-14,0.0107216046471983
2015-05-15,0.000768118444979926
2015-05-18,0.00304331261267166
2015-05-19,-0.000643581575864083
2015-05-20,-0.000930949230348865
2015-05-21,0.00233514557838888
2015-05-22,-0.00223638478974664
2015-05-26,-0.0103352051802652
2015-05-27,0.00912091879004606
2015-05-28,-0.00126756372621095
2015-05-29,-0.00633851495443949
2015-06-01,0.00205734307698524
2015-06-02,-0.00100910478042859
2015-06-03,0.0021166291368182
2015-06-04,-0.00866056199292231
2015-06-05,-0.00143721534464625
2015-06-08,-0.00649556042135568
2015-06-09,0.000418265496527681
2015-06-10,0.0119704918361236
2015-06-11,0.00173711663812259
2015-06-12,-0.0070188746545119
2015-06-15,-0.00463328924790396
2015-06-16,0.00567373031353036
2015-06-17,0.00197768423147515
2015-06-18,0.00985400013693116
2015-06-19,-0.00531761523853902
2015-06-22,0.00607636825454971
2015-06-23,0.000635666182351891
2015-06-24,-0.00738046569667361
2015-06-25,-0.00297800390407499
2015-06-26,-0.000390156049689949
2015-06-29,-0.021086969192055
2015-06-30,0.00265496194295345
2015-07-01,0.00691209669929282
2015-07-02,-0.000308070392667226
2015-07-06,-0.00386923244265525
2015-07-07,0.00606256053312659
2015-07-08,-0.0167929648234564
2015-07-09,0.00225964770162879
2015-07-10,0.0122629860966725
2015-07-13,0.0110052687613678
2015-07-14,0.00444327299128133
2015-07-15,-0.000735256382355054
2015-07-16,0.00798273357816903
2015-07-17,0.00110557185224902
2015-07-20,0.000770936286135004
2015-07-21,-0.00427079607374026
2015-07-22,-0.00239056521227798
2015-07-23,-0.00569221021230693
2015-07-24,-0.010761020698431
2015-07-27,-0.00579175469573467
2015-07-28,0.0123100735978525
2015-07-29,0.00729214275694812
2015-07-30,2.83671633782845e-05
2015-07-31,-0.00227410383798432
2015-08-03,-0.00276069402668266
2015-08-04,-0.00225223930882024
2015-08-05,0.00310983840925516
2015-08-06,-0.00778319577967057
2015-08-07,-0.00287902322429456
2015-08-10,0.0127268359757942
2015-08-11,-0.00960306502341179
2015-08-12,0.000949603893046103
2015-08-13,-0.00127602574827979
2015-08-14,0.00390433204198271
2015-08-17,0.00519789154605732
2015-08-18,-0.00262898268279343
2015-08-19,-0.00828913667207143
2015-08-20,-0.021325960481545
2015-08-21,-0.0323692421132389
2015-08-24,-0.0402114444918844
2015-08-25,-0.0136142499639105
2015-08-26,0.0382912997435536
2015-08-27,0.0240072542785086
2015-08-28,0.00060855118835601
2015-08-31,-0.00842707845849233
2015-09-01,-0.0300226497726479
2015-09-02,0.0181276710264706
2015-09-03,0.00116411593987387
2015-09-04,-0.0154483086598134
2015-09-08,0.0247736369512754
2015-09-09,-0.0139950357100282
2015-09-10,0.00526407544510477
2015-09-11,0.00447700656464356
2015-09-14,-0.00409804146269543
2015-09-15,0.0127496878742788
2015-09-16,0.00866774082813926
2015-09-17,-0.00256434473252298
2015-09-18,-0.0162962310196422
2015-09-21,0.00455539233622204
2015-09-22,-0.0123949302909496
2015-09-23,-0.00205074398806282
2015-09-24,-0.00336865211349302
2015-09-25,-0.000465901586886197
2015-09-28,-0.0260012110067462
2015-09-29,0.00123209375925271
2015-09-30,0.0188958983535743
2015-10-01,0.0019719386827024
2015-10-02,0.0142137929864976
2015-10-05,0.0181245937851626
2015-10-06,-0.00359468940302055
2015-10-07,0.00800351980253122
2015-10-08,0.00877978031552651
2015-10-09,0.000724848591430849
2015-10-12,0.00127466433383017
2015-10-13,-0.00684882392385777
2015-10-14,-0.00472743082671467
2015-10-15,0.0147435512951724
2015-10-16,0.00456006137448739
2015-10-19,0.000270509028434951
2015-10-20,-0.00142210073671301
2015-10-21,-0.00584244934317724
2015-10-22,0.0164908473280025
2015-10-23,0.0109699536892025
2015-10-26,-0.00191493266193721
2015-10-27,-0.00255738583438969
2015-10-28,0.0117704884483798
2015-10-29,-0.000449875597454685
2015-10-30,-0.00482148183896491
2015-11-02,0.0118038766233894
2015-11-03,0.00272435281375571
2015-11-04,-0.00355166671678298
2015-11-05,-0.00113278977860176
2015-11-06,-0.000347682033036811
2015-11-09,-0.00987129063476289
2015-11-10,0.00150945535619673
2015-11-11,-0.00323330746417927
2015-11-12,-0.0140891631915299
2015-11-13,-0.011270640608152
2015-11-16,0.0147933026272655
2015-11-17,-0.00134027701851203
2015-11-18,0.0160332300153074
2015-11-19,-0.00112374038159935
2015-11-20,0.00380295545259468
2015-11-23,-0.00123562384909803
2015-11-24,0.00122125009447949
2015-11-25,-0.00012914090666527
2015-11-27,0.000593441447398924
2015-11-30,-0.00465179999034948
2015-12-01,0.0106239390884877
2015-12-02,-0.0110565926159163
2015-12-03,-0.0144778266483376
2015-12-04,0.0203178562611113
2015-12-07,-0.00701404393919702
2015-12-08,-0.00651105239957239
2015-12-09,-0.00776908647592567
2015-12-10,0.00224885640741501
2015-12-11,-0.0196138675856385
2015-12-14,0.0047442879213806
2015-12-15,0.0105625802189007
2015-12-16,0.0144106355653522
2015-12-17,-0.0151547762903474
2015-12-18,-0.0179574950935821
2015-12-21,0.00774830643659197
2015-12-22,0.00877809594203427
2015-12-23,0.0123415963516766
2015-12-24,-0.00159991548730609
2015-12-28,-0.00218093634258665
2015-12-29,0.010573663970038
2015-12-30,-0.0072433987852536
2015-12-31,-0.00945648503576635
2016-01-04,-0.0154220416883257
2016-01-05,0.00201020425962906
2016-01-06,-0.0132021629158556
2016-01-07,-0.0239858165446307
2016-01-08,-0.0108975376927827
2016-01-11,0.000852908478711001
2016-01-12,0.00777251423844838
2016-01-13,-0.025282375384065
2016-01-14,0.0165580611849352
2016-01-15,-0.0218357728207446
2016-01-19,0.00053168018744465
2016-01-20,-0.0117627660262425
2016-01-21,0.00518198853995866
2016-01-22,0.0200807267904768
2016-01-25,-0.0157615449848167
2016-01-26,0.0140452379210618
2016-01-27,-0.0109229224533678
2016-01-28,0.00551335062318881
2016-01-29,0.024458651059442
2016-02-01,-0.000443334664320005
2016-02-02,-0.0189209689346574
2016-02-03,0.00497962002234864
2016-02-04,0.00152556835801843
2016-02-05,-0.0186541580951998
2016-02-08,-0.0142550582336654
2016-02-09,-0.000663840393829496
2016-02-10,-0.000188968354347452
2016-02-11,-0.0123774471693121
2016-02-12,0.0193300150777436
2016-02-16,0.0163817378720363
2016-02-17,0.0163461105044709
2016-02-18,-0.00467663200242985
2016-02-19,-2.60334080879332e-05
2016-02-22,0.0143507312538782
2016-02-23,-0.0125325773268097
2016-02-24,0.00442995987971617
2016-02-25,0.0112843665533235
2016-02-26,-0.0018718651532712
2016-02-29,-0.00815413142239674
2016-03-01,0.0235883858535111
2016-03-02,0.00408594956528141
2016-03-03,0.00349263419912393
2016-03-04,0.00330043995646978
2016-03-07,0.000884623035136478
2016-03-08,-0.0113037560546747
2016-03-09,0.0050396727822184
2016-03-10,0.000155792534013877
2016-03-11,0.0162625455332446
2016-03-14,-0.00126176824164403
2016-03-15,-0.00183863096500048
2016-03-16,0.00558472788483488
2016-03-17,0.00657358301020849
2016-03-18,0.00439596710198131
2016-03-21,0.000985092132832932
2016-03-22,-0.0008777729804752
2016-03-23,-0.00640650958382949
2016-03-24,-0.000378142009603621
2016-03-28,0.000545107171986636
2016-03-29,0.00877801208391293
2016-03-30,0.0043408797962412
2016-03-31,-0.00204184239013472
2016-04-01,0.00631095903716261
2016-04-04,-0.00321347981187969
2016-04-05,-0.0101962984758037
2016-04-06,0.0104527978523494
2016-04-07,-0.0120480740050803
2016-04-08,0.00278270289483462
2016-04-11,-0.00274354620660056
2016-04-12,0.00961575414016114
2016-04-13,0.00999006968459071
2016-04-14,0.000172912227568212
2016-04-15,-0.000984769658889384
2016-04-18,0.00651972589130345
2016-04-19,0.00307973793245608
2016-04-20,0.000761254803917311
2016-04-21,-0.0052075629179118
2016-04-22,4.78587439003419e-05
2016-04-25,-0.00181368959093486
2016-04-26,0.00187100012200236
2016-04-27,0.00164799402984794
2016-04-28,-0.00927363570178574
2016-04-29,-0.0050759493430439
2016-05-02,0.00777960678668155
2016-05-03,-0.00871449965192461
2016-05-04,-0.00595458270601501
2016-05-05,-0.000239036509944945
2016-05-06,0.00316961066719568
2016-05-09,0.000753212905197032
2016-05-10,0.0124063656357682
2016-05-11,-0.00960752304999168
2016-05-12,-0.000169479502623915
2016-05-13,-0.00851443412914499
2016-05-16,0.00974897650846707
2016-05-17,-0.00945586346870986
2016-05-18,0.000205157713103254
2016-05-19,-0.00371359461058862
2016-05-20,0.00600145907833483
2016-05-23,-0.00208763642351162
2016-05-24,0.0135886377601899
2016-05-25,0.00695052942600416
2016-05-26,-0.000210465855566611
2016-05-27,0.00427769496851305
2016-05-31,-0.00100576889609361
2016-06-01,0.00113439867634746
2016-06-02,0.00282069633785742
2016-06-03,-0.00291606225870034
2016-06-06,0.00488532837819022
2016-06-07,0.00128861576982153
2016-06-08,0.00330410179470153
2016-06-09,-0.00171923573099431
2016-06-10,-0.00921753236003742
2016-06-13,-0.00814829842285647
2016-06-14,-0.00180050544053856
2016-06-15,-0.0018424088906448
2016-06-16,0.00312809299825645
2016-06-17,-0.00326328388848651
2016-06-20,0.00579138263509016
2016-06-21,0.00270839043964965
2016-06-22,-0.00165292891443247
2016-06-23,0.0132755669843192
2016-06-24,-0.0365807927237238
2016-06-27,-0.0182622464547508
2016-06-28,0.0176141217235806
2016-06-29,0.0168892431093681
2016-06-30,0.0134738627220994
2016-07-01,0.0019467064123031
2016-07-05,-0.00687102882157387
2016-07-06,0.00533868675273919
2016-07-07,-0.000871957827344616
2016-07-08,0.0151381865684543
2016-07-11,0.0034028194222131
2016-07-12,0.0069848425545489
2016-07-13,0.000134758645918609
2016-07-14,0.00524542263473382
2016-07-15,-0.000929379168290723
2016-07-18,0.00237946212498041
2016-07-19,-0.00143620483230933
2016-07-20,0.00426120866867929
2016-07-21,-0.00361907001450579
2016-07-22,0.00454362659528584
2016-07-25,-0.00301601881960245
2016-07-26,0.000322732542556992
2016-07-27,-0.00119926117017588
2016-07-28,0.00160492069299334
2016-07-29,0.00162998008859905
2016-08-01,-0.00127059425525555
2016-08-02,-0.00638194100068201
2016-08-03,0.00312904282481785
2016-08-04,0.000212549328373335
2016-08-05,0.00856669720348435
2016-08-08,-0.000907577012204008
2016-08-09,0.000389717685688851
2016-08-10,-0.0028687970637975
2016-08-11,0.00472341518158448
2016-08-12,-0.000796363279624401
2016-08-15,0.00278901605887327
2016-08-16,-0.00549414221734246
2016-08-17,0.00186684630001555
2016-08-18,0.00219720177467231
2016-08-19,-0.00144130986895785
2016-08-22,-0.000563481604179294
2016-08-23,0.00194986682788922
2016-08-24,-0.00525405528922995
2016-08-25,-0.00136616007324886
2016-08-26,-0.00158006440418124
2016-08-29,0.00521442854348386
2016-08-30,-0.00195559157927949
2016-08-31,-0.00237869109857058
2016-09-01,-4.13855045771072e-05
2016-09-02,0.00419224157834552
2016-09-06,0.00297724237064489
2016-09-07,-0.000146395773938934
2016-09-08,-0.00222548806364475
2016-09-09,-0.0248277422987071
2016-09-12,0.0145703870135625
2016-09-13,-0.0149417480288845
2016-09-14,-0.000587849399683371
2016-09-15,0.0100585163380824
2016-09-16,-0.00377942795585273
2016-09-19,-1.8603270347306e-05
2016-09-20,0.000299093681420004
2016-09-21,0.0108580001374223
2016-09-22,0.00647875216938676
2016-09-23,-0.00575329331245378
2016-09-26,-0.00862484977007139
2016-09-27,0.0064234951715072
2016-09-28,0.00528257635090856
2016-09-29,-0.00936512755656693
2016-09-30,0.00793639271705082
2016-10-03,-0.00326602347724148
2016-10-04,-0.00496788181582097
2016-10-05,0.00428748612314322
2016-10-06,0.000481444286581478
2016-10-07,-0.00325878776737287
2016-10-10,0.00459533037559545
2016-10-11,-0.0125245778665821
2016-10-12,0.00114593259377305
2016-10-13,-0.00310407649963462
2016-10-14,0.0002015838587619
2016-10-17,-0.00304261789207683
2016-10-18,0.00614150576635897
2016-10-19,0.00218957196554292
2016-10-20,-0.00137667105115646
2016-10-21,-8.41452423143707e-05
2016-10-24,0.00473859464040594
2016-10-25,-0.00380495745763731
2016-10-26,-0.00174192770217552
2016-10-27,-0.00299119610328713
2016-10-28,-0.00311314016176034
2016-10-31,-0.000122283994439698
2016-11-01,-0.00681001880647347
2016-11-02,-0.00654688478768062
2016-11-03,-0.00443321288133269
2016-11-04,-0.00166752004698001
2016-11-07,0.0219801997770315
2016-11-08,0.00376487836711892
2016-11-09,0.011016119798124
2016-11-10,0.0019488453914871
2016-11-11,-0.00139892821094012
2016-11-14,-0.000115509457192964
2016-11-15,0.00745295529499312
2016-11-16,-0.00158351690247738
2016-11-17,0.00466546946208357
2016-11-18,-0.00238965143736536
2016-11-21,0.00743370239190799
2016-11-22,0.0021630907556931
2016-11-23,0.000807698475975727
2016-11-25,0.00390674563407689
2016-11-28,-0.00526838927520501
2016-11-29,0.00133440216881286
2016-11-30,-0.00265693032078662
2016-12-01,-0.00352172320857225
2016-12-02,0.000396927698722571
2016-12-05,0.00580442703350403
2016-12-06,0.0034050842286355
2016-12-07,0.0130773591099809
2016-12-08,0.00215701468264218
2016-12-09,0.0059214185824441
2016-12-12,-0.00113808213151945
2016-12-13,0.00651848330422755
2016-12-14,-0.0081502957242936
2016-12-15,0.00387570768806267
2016-12-16,-0.00175215677888918
2016-12-19,0.00197317274314912
2016-12-20,0.00363091263558069
2016-12-21,-0.00246038566923978
2016-12-22,-0.00186471135340494
2016-12-23,0.00125093247982733
2016-12-27,0.00224584901479741
2016-12-28,-0.00839164073685428
2016-12-29,-0.00029334768322542
2016-12-30,-0.00464783485688791
2017-01-03,0.00845076675362755
2017-01-04,0.00570596382591226
2017-01-05,-0.000770967602481853
2017-01-06,0.00351078897471435
2017-01-09,-0.00355490541719927
2017-01-10,0
2017-01-11,0.00282564238266225
2017-01-12,-0.00214711241471477
2017-01-13,0.00184813175954535
2017-01-17,-0.00297191445566636
2017-01-18,0.00176220046948217
2017-01-19,-0.00361583798947684
2017-01-20,0.00336058441962539
2017-01-23,-0.00269374990080795
2017-01-24,0.00654314044722248
2017-01-25,0.0079940528720055
2017-01-26,-0.000735654697208155
2017-01-27,-0.000866839823256527
2017-01-30,-0.00602767346976485
2017-01-31,-0.000890301539602234
2017-02-01,0.00029831914579237
2017-02-02,0.000570146914003367
2017-02-03,0.0072384967582515
2017-02-06,-0.00211759739091466
2017-02-07,0.00022680323213109
2017-02-08,0.000693082257595456
2017-02-09,0.00573606360024215
2017-02-10,0.00355970705167064
2017-02-13,0.00523213343559359
2017-02-14,0.00399932714219808
2017-02-15,0.00497988871920896
2017-02-16,-0.000864491475070395
2017-02-17,0.00167714915423822
2017-02-21,0.00602985014585666
2017-02-22,-0.00108278637816817
2017-02-23,0.000418899295217656
2017-02-24,0.00149225010637011
2017-02-27,0.00101746522153245
2017-02-28,-0.00258170593670926
2017-03-01,0.0135812109313251
2017-03-02,-0.00587711694571169
2017-03-03,0.000503750237377254
2017-03-06,-0.00328262251385691
2017-03-07,-0.00291762589499278
2017-03-08,-0.00228682834056304
2017-03-09,0.000799575731853075
2017-03-10,0.00326333993002681
2017-03-13,0.000366565599366986
2017-03-14,-0.00338474917863163
2017-03-15,0.00833987929560642
2017-03-16,-0.00162803481870721
2017-03-17,-0.00131517934296799
2017-03-20,-0.00201191595529959
2017-03-21,-0.0124855945152058
2017-03-22,0.00188810257429939
2017-03-23,-0.00106083204500163
2017-03-24,-0.000844352440561025
2017-03-27,-0.00102010733915492
2017-03-28,0.00722530863054427
2017-03-29,0.0010847364356108
2017-03-30,0.00293081100384818
2017-03-31,-0.00225759398417136
2017-04-03,-0.00164347538729448
2017-04-04,0.000559365981950499
2017-04-05,-0.00305953683822668
2017-04-06,0.00192765026736463
2017-04-07,-0.000827472390060535
2017-04-10,0.000687450115915311
2017-04-11,-0.00143490837168425
2017-04-12,-0.00376703713960413
2017-04-13,-0.00683802051685944
2017-04-17,0.00857646586468253
2017-04-18,-0.00290760311905824
2017-04-19,-0.00171782516995922
2017-04-20,0.00752885035594009
2017-04-21,-0.00303968832651069
2017-04-24,0.0107817366162921
2017-04-25,0.00607221417991965
2017-04-26,-0.00048582137105857
2017-04-27,0.000552767268520604
2017-04-28,-0.00191497973980947
2017-05-01,0.00173079184664537
2017-05-02,0.00118834369042453
2017-05-03,-0.00127216936958963
2017-05-04,0.000581933405524815
2017-05-05,0.00408035918526028
2017-05-08,3.74453761029514e-05
2017-05-09,-0.00102577458278841
2017-05-10,0.00112996274343669
2017-05-11,-0.00216515162190767
2017-05-12,-0.00147953531490508
2017-05-15,0.00476514229719438
2017-05-16,-0.000687132835322402
2017-05-17,-0.0183454683491364
2017-05-18,0.00368003887865953
2017-05-19,0.00674470288589912
2017-05-22,0.00514686368861916
2017-05-23,0.00183618502869809
2017-05-24,0.00248603392791935
2017-05-25,0.00443211171771196
2017-05-26,0.000310501785349082
2017-05-30,-0.00120535062610383
2017-05-31,-0.000460074503358499
2017-06-01,0.00754259568076066
2017-06-02,0.00370087430352761
2017-06-05,-0.00121840685198027
2017-06-06,-0.00278290885876586
2017-06-07,0.00156702902118955
2017-06-08,0.000267168836597165
2017-06-09,-0.000830333647746428
2017-06-12,-0.000979242498823751
2017-06-13,0.0045013588104359
2017-06-14,-0.000996327054904711
2017-06-15,-0.00224210982241946
2017-06-16,0.000283598983087607
2017-06-19,0.00831258337364549
2017-06-20,-0.00671916059422362
2017-06-21,-0.000582814244665109
2017-06-22,-0.000455885799226508
2017-06-23,0.00155969862589878
2017-06-26,0.000315751721901236
2017-06-27,-0.00810558635083236
2017-06-28,0.00876950140260302
2017-06-29,-0.00863721674872409
2017-06-30,0.00153205763677278
2017-07-03,0.00230816812076995
2017-07-05,0.00145222391410549
2017-07-06,-0.00941298728117257
2017-07-07,0.00638271271779978
2017-07-10,0.000927336103375254
2017-07-11,-0.000782987336525487
2017-07-12,0.00727905107021787
2017-07-13,0.00187282942240685
2017-07-14,0.00466261641168053
2017-07-17,-5.29142557583739e-05
2017-07-18,0.000597678355106268
2017-07-19,0.00535825833697601
2017-07-20,-0.000153671107566922
2017-07-21,-0.000367939284998009
2017-07-24,-0.00106430101441379
2017-07-25,0.00291890763987279
2017-07-26,0.000282623879980015
2017-07-27,-0.000973161536450107
2017-07-28,-0.00134201558956093
2017-07-31,-0.00072841090403486
2017-08-01,0.0024461208441755
2017-08-02,0.000492527123482134
2017-08-03,-0.00218604173413617
2017-08-04,0.00188732141131442
2017-08-07,0.00164584465066131
2017-08-08,-0.00241735213579197
2017-08-09,-0.000363674653750756
2017-08-10,-0.0145802185645767
2017-08-11,0.00127475695514878
2017-08-14,0.00999365143761022
2017-08-15,-0.000498932542412511
2017-08-16,0.00141909552357511
2017-08-17,-0.015557342219811
2017-08-18,-0.00183705368694209
2017-08-21,0.001161975566494
2017-08-22,0.00989169543340296
2017-08-23,-0.00345957025377697
2017-08-24,-0.00207661659984471
2017-08-25,0.00167147161756898
2017-08-28,0.00048695330705506
2017-08-29,0.000842466928157037
2017-08-30,0.00460453176230669
2017-08-31,0.0057046734011319
2017-09-01,0.0019805782508131
2017-09-05,-0.00757945848168795
2017-09-06,0.00312384232793672
2017-09-07,-0.000178451880057828
2017-09-08,-0.00148996013690184
2017-09-11,0.0107809748815884
2017-09-12,0.00335830257667524
2017-09-13,0.000756834360798209
2017-09-14,-0.00110132385091077
2017-09-15,0.00184547743380836
2017-09-18,0.00145486204172762
2017-09-19,0.00110957955448043
2017-09-20,0.000634146746002706
2017-09-21,-0.00305056571600559
2017-09-22,0.000647583976344457
2017-09-25,-0.00222452286230723
2017-09-26,7.21642135088629e-05
2017-09-27,0.00407682233325257
2017-09-28,0.00120389081571659
2017-09-29,0.00369826273919749
2017-10-02,0.00386651892302847
2017-10-03,0.00215651120947946
2017-10-04,0.00124594361807606
2017-10-05,0.00563090398283173
2017-10-06,-0.00107421107345562
2017-10-09,-0.00180606400318517
2017-10-10,0.00231971998008174
2017-10-11,0.00180188267254078
2017-10-12,-0.00168817688774858
2017-10-13,0.000877721912925011
2017-10-16,0.00174922264829469
2017-10-17,0.000672352575650237
2017-10-18,0.000742059767674164
2017-10-19,0.000327944157669791
2017-10-20,0.005103796075133
2017-10-23,-0.00398039552001705
2017-10-24,0.00161660113028983
2017-10-25,-0.00467395589466868
2017-10-26,0.00127013925077257
2017-10-27,0.00804060997474831
2017-10-30,-0.00319757728609016
2017-10-31,0.000944013076273897
2017-11-01,0.00159084385333585
2017-11-02,0.000189948066468659
2017-11-03,0.00309228923533578
2017-11-06,0.00127044391487363
2017-11-07,-0.00018912071459809
2017-11-08,0.00144261384148603
2017-11-09,-0.00376898148418636
2017-11-10,-0.000898046836950606
2017-11-13,0.000983150887048367
2017-11-14,-0.00231228067530242
2017-11-15,-0.00554099874252767
2017-11-16,0.00816265301924357
2017-11-17,-0.0026294170087624
2017-11-20,0.00127486991887604
2017-11-21,0.00651983860214589
2017-11-22,-0.000750542637235618
2017-11-24,0.00205398437439541
2017-11-27,-0.000384331586785081
2017-11-28,0.00980033212495268
2017-11-29,-0.000369293995849063
2017-11-30,0.00815758675244727
2017-12-01,-0.00202658277623424
2017-12-04,-0.0010527108155598
2017-12-05,-0.00374639050870762
2017-12-06,-0.000114111855581633
2017-12-07,0.00292806665406786
2017-12-08,0.00549120221327826
2017-12-11,0.00319684203358417
2017-12-12,0.00154772365184641
2017-12-13,-0.000473068682704358
2017-12-14,-0.00407916777147754
2017-12-15,0.00893431347358931
2017-12-18,0.00534847838711716
2017-12-19,-0.00323549789174749
2017-12-20,-0.000828236184285736
2017-12-21,0.00198368687879125
2017-12-22,-0.000458271463486426
2017-12-26,-0.00105897574081926
2017-12-27,0.000790628240348035
2017-12-28,0.00183231904955861
2017-12-29,-0.00519663242728541
2018-01-02,0.00826907852688752
2018-01-03,0.00637843324297815
2018-01-04,0.00402054261954721
2018-01-05,0.007009145849314
2018-01-08,0.00166096391535486
2018-01-09,0.00130208347183558
2018-01-10,-0.00111284595936834
2018-01-11,0.00700902608623633
2018-01-12,0.00672692616818527
2018-01-16,-0.00353071313246112
2018-01-17,0.00937100630643606
2018-01-18,-0.00161769774853138
2018-01-19,0.00437564815425073
2018-01-22,0.00803436442584715
2018-01-23,0.00217200492947089
2018-01-24,-0.000560132635300192
2018-01-25,0.000602439420859469
2018-01-26,0.0117716380408188
2018-01-29,-0.00675473632363577
2018-01-30,-0.0109586425739705
2018-01-31,0.000488865875231781
2018-02-01,-0.000648298661995561
2018-02-02,-0.0214366802827097
2018-02-05,-0.0418425411596273
2018-02-06,0.0172905736588325
2018-02-07,-0.00501413842107024
2018-02-08,-0.0382590522050155
2018-02-09,0.0148256452651365
2018-02-12,0.0138186656125736
2018-02-13,0.00260952182772112
2018-02-14,0.0133134400309336
2018-02-15,0.0119968616443646
2018-02-16,0.000373399821508968
2018-02-20,-0.00585851712920782
2018-02-21,-0.00551166461587016
2018-02-22,0.000973077554965229
2018-02-23,0.0159012782845682
2018-02-26,0.0116884386817349
2018-02-27,-0.0127883116733161
2018-02-28,-0.0111578060215365
2018-03-01,-0.0134139657621342
2018-03-02,0.0050587854385169
2018-03-05,0.0109716174612213
2018-03-06,0.00263538301257338
2018-03-07,-0.000483991693956298
2018-03-08,0.00445314825424248
2018-03-09,0.0172295465038514
2018-03-12,-0.00127479704060018
2018-03-13,-0.00638391043583741
2018-03-14,-0.00574097014258435
2018-03-15,-0.000782236274108783
2018-03-16,0.00170199807789562
2018-03-19,-0.0143060405804629
2018-03-20,0.00148070846611859
2018-03-21,-0.00184569184358807
2018-03-22,-0.0254848872590383
2018-03-23,-0.0211898070675298
2018-03-26,0.0267950406801321
2018-03-27,-0.0174272857817392
2018-03-28,-0.0029209188276953
2018-03-29,0.0136757774228435
2018-04-02,-0.0225906821998745
2018-04-03,0.0125359611773792
2018-04-04,0.0115001022585774
2018-04-05,0.00683942159633499
2018-04-06,-0.0221640669841525
2018-04-09,0.00333099481175125
2018-04-10,0.0165885989675969
2018-04-11,-0.00554068585564416
2018-04-12,0.00821689876343346
2018-04-13,-0.00289079967402373
2018-04-16,0.00807633677770347
2018-04-17,0.0106050717289028
2018-04-18,0.000831020407423999
2018-04-19,-0.00574258188196275
2018-04-20,-0.00857317709997663
2018-04-23,5.62299297808266e-05
2018-04-24,-0.013470887828869
2018-04-25,0.00183537394838584
2018-04-26,0.0103801441652864
2018-04-27,0.00111300538272641
2018-04-30,-0.00822119244304886
2018-05-01,0.00254580217086176
2018-05-02,-0.00723195121871711
2018-05-03,-0.00225621781074015


References
https://www.quantstart.com/articles/hidden-markov-models-an-introduction
https://www.quantstart.com/articles/hidden-markov-models-for-regime-detection-using-r



No comments:

Post a Comment

Deep Learning (Regression, Multiple Features/Explanatory Variables, Supervised Learning): Impelementation and Showing Biases and Weights

Deep Learning (Regression, Multiple Features/Explanatory Variables, Supervised Learning): Impelementation and Showing Biases and Weights ...