Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save emrul/268db90559c10b379963e99ab40304b6 to your computer and use it in GitHub Desktop.
Save emrul/268db90559c10b379963e99ab40304b6 to your computer and use it in GitHub Desktop.
DL4J Example of Time Series Regression with 2 Outputs:
/*
Problem Description:
Time series forecast for a single securities minor reversal points.
A "minor reversal point" is defined as either a period (day) with a high price greater than both the previous and next high prices, or a period with a low value lower than both the previous and next low prices.
This is a time series regression problem with 8 input features and 2 regression output dimensions
Input Features:
- period return r = (p2 - p1) / p1, descr: a linear return value, typically [-0.05,0.05]
- period volume, descr: standardized, z = (x - Mean) / SD
- High-Low spread, descr: standardized, z = (x - Mean) / SD
- overnight return ((open - previousClose) / previousClose), descr: a linear return value, typically [-0.05,0.05]
- open position in Range (open / (high - low)), descr: [0-1]
- close position in Range (close / (high - low)), descr: [0-1]
- return since last minor reversal point, descr: linear return value, typically [-0.10,0.10]
- periods (days) since last minor reversal point, descr: Standardized, z = (x - Mean) / SD
Regression Targets:
- linear return of next reversal point relative to current price, descr: linear return value, typically [-0.10,0.10]
- periods (days) until next reversal point, descr: Standardized, z = (x - Mean) / SD
NOTE: Regarding regression target "periods (days)" we'll have to adjust the standardized output of "periods (days)" to the problem domain scale when using the prediction value (i.e. adjustedPeriods = prediction * SD + Mean)
*/
@Test
public void recurrentTimeSeries_1Stock_2Outputs() throws Exception
{
String symbol="AAPL";
String featuresPath = String.format("/tmp/features_training_%s.csv", symbol);
File featuresFile = new File(featuresPath);
String labelsPath = String.format("/tmp/labels_training_%s.csv", symbol);
File labelsFile = new File(labelsPath);
String testFeaturesPath = String.format("/tmp/features_test_%s.csv", symbol);
File testFeaturesFile = new File(testFeaturesPath);
String testLabelsPath = String.format("/tmp/labels_test_%s.csv", symbol);
File testLabelsFile = new File(testLabelsPath);
int miniBatchSize = 1; //number of stocks we are learning on
DataSetIterator trainingIterator = getSequenceIterator(featuresFile, labelsFile, miniBatchSize);
//Set up network configuration:
int lstmLayerSize = 200;
int numOutputs = 2;
int tbpttLength = 125; //Length for truncated backpropagation through time. i.e., do parameter updates every x periods
int numEpochs = 400; //Total number of training epochs
MultiLayerConfiguration conf = new NeuralNetConfiguration.Builder()
.optimizationAlgo(OptimizationAlgorithm.STOCHASTIC_GRADIENT_DESCENT)
.iterations(1)
.learningRate(0.001)
.rmsDecay(0.95)
.seed(12345)
.regularization(true)
.l2(0.001)
.weightInit(WeightInit.XAVIER)
.updater(Updater.RMSPROP)
.list(3)
.layer(0, new GravesLSTM.Builder().nIn(trainingIterator.inputColumns()).nOut(lstmLayerSize)
.activation("tanh").build())
.layer(1, new GravesLSTM.Builder().nIn(lstmLayerSize).nOut(lstmLayerSize)
.activation("tanh").build())
.layer(2, new RnnOutputLayer.Builder(LossFunctions.LossFunction.MSE).activation("identity")
.nIn(lstmLayerSize).nOut(numOutputs).build())
.backpropType(BackpropType.TruncatedBPTT).tBPTTForwardLength(tbpttLength).tBPTTBackwardLength(tbpttLength)
.pretrain(false)
.backprop(true)
.build();
MultiLayerNetwork net = new MultiLayerNetwork(conf);
net.init();
net.setListeners(new ScoreIterationListener(1));
//Train the network
for( int i=0; i<numEpochs; i++ ){
System.out.println("Training epoch " + i);
net.fit(trainingIterator);
trainingIterator.reset();
}
System.out.println("Training complete.");
//Step through Test dataset making predictions and measuring Mean Square Error Deviation for each output variable
DataSetIterator testingIterator = getSequenceIterator(testFeaturesFile, testLabelsFile, miniBatchSize);
int t = 0;
while(testingIterator.hasNext())
{
DataSet dsTest = testingIterator.next();
INDArray featuresAtTimeT = dsTest.getFeatures();
INDArray prediction = net.rnnTimeStep(featuresAtTimeT);
INDArray actuals = dsTest.getLabels();
System.out.println(String.format("t= %d, Standardized Prediction: %s, Standardized Actual: %s",
t, prediction.toString(), actuals.toString()));
//convert standardized predictions and actuals to non standardized values
double[] predictionReturns = new double[testSetLength];
double[] standardPredictionPeriods = new double[testSetLength];
for(int i=0; i < testSetLength; i++ ) {
predictionReturns[i] = prediction.getDouble(0, 0, i);
standardPredictionPeriods[i] = prediction.getDouble(0, 1, i);
}
double[] adjustedPredictionPeriods = TALib.convertZScoreToRawScore(standardPredictionPeriods, colMeans[labelIndex2], colStdDevs[labelIndex2]);
double[] actualReturns = new double[testSetLength];
double[] standardActualPeriods = new double[testSetLength];
for(int i=0; i < testSetLength; i++ ) {
actualReturns[i] = actuals.getDouble(0, 0, i);
standardActualPeriods[i] = actuals.getDouble(0, 1, i);
}
double[] adjustedActualPeriods = TALib.convertZScoreToRawScore(standardActualPeriods, colMeans[labelIndex2], colStdDevs[labelIndex2]);
System.out.println(String.format("\nt= %d, Adjusted Prediction Returns: %s, \nAdjusted Actual Returns: %s", t, join(predictionReturns, "%.3f"), join(actualReturns, "%.3f")));
System.out.println(String.format("\nt= %d, Adjusted Prediction Periods: %s, \nAdjusted Actual Periods: %s", t, join(adjustedPredictionPeriods, "%.1f"), join(adjustedActualPeriods, "%.1f")));
//compute mean root square error
double rmsdReturns = TALib.calcRootMeanSquareDeviation(predictionReturns, actualReturns);
double rmsdPeriods = TALib.calcRootMeanSquareDeviation(adjustedPredictionPeriods, adjustedActualPeriods);
System.out.println(String.format("RMSD Returns = %.4f, Periods = %.4f", rmsdReturns, rmsdPeriods));
t++;
}
System.out.println("\n\nExample complete");
}
DataSetIterator getSequenceIterator(File featuresFile, File labelsFile, int miniBatchSize)
throws IOException, InterruptedException {
int numLinesToSkip = 1;
String delimiter = ",";
boolean regression = true;
int numClasses = 1; //not used for regression
SequenceRecordReader featureReader = new CSVSequenceRecordReader(numLinesToSkip, delimiter);
SequenceRecordReader labelReader = new CSVSequenceRecordReader(numLinesToSkip, delimiter);
featureReader.initialize(new FileSplit(featuresFile));
labelReader.initialize(new FileSplit(labelsFile));
return new SequenceRecordReaderDataSetIterator(featureReader, labelReader, miniBatchSize, numClasses, regression);
}
periodReturn periodVolume highLowSpread closeToOpenReturn openPIR closePIR 1PeriodReversalReturn 1PeriodReversalPeriods
-0.006046462289169407 0.046245530213759344 -0.14247955453156053 -0.00509175771719529 0.5633802816901409 0.5211267605633804 0.01198833567339886 -0.7901988167074143
0.003094983991462113 -0.4271774916235998 -0.6724655290261705 0.005229455709711846 0.7919463087248322 0.6577181208053691 0.01512042337185441 -0.0061976377780971585
0.02819448877540164 -0.06242719125039686 -0.051388215165299164 0.01095861261836366 0.18303571428571425 0.9062499999999998 0.04374122475429312 0.77780354115122
0.01531456953642384 -0.21589554602134484 -0.20044677049190837 3.104304635761589E-4 0.2524271844660194 0.9563106796116504 0.05972567231882493 1.5618047200805372
-0.01895637994292703 -0.5077254850823205 0.4123495125174843 0.007337953526294333 0.9821428571428572 0.06071428571428572 -0.02659520679542926 -0.7901988167074143
-0.002285476833575732 -0.7061528163533337 -1.1113601641545194 -0.002701018076044047 0.20833333333333334 0.25 0.002505219206680585 -0.7901988167074143
0.008746355685131196 -0.7278032141526605 -1.094798102451563 0.002811328613077884 0.3979591836734694 0.9795918367346939 -2.063983488132095E-4 -0.7901988167074143
-0.02260528488852188 -0.8446925932178414 -0.2915381098581696 -0.00495458298926507 0.9487179487179488 0.0717948717948718 -0.02280701754385965 -0.0061976377780971585
0.0148906959552223 -0.6234912609695301 0.6276563146559199 -0.007498151863977189 0.21568627450980393 0.9084967320261437 0.02978996999571367 -0.7901988167074143
0.006867845993756504 -1.0571773386978367 -0.6559034673232139 -5.202913631633715E-4 0.5298013245033113 1.0 0.03686240891555937 -0.0061976377780971585
0.001550227366680446 -0.9819751224735177 -0.713870683283562 0.00454733360892931 0.4305555555555556 0.22916666666666669 0.03846978139734248 0.77780354115122
-0.002270147559591373 -0.6867991228473054 -0.5979362513628659 -5.159426271798576E-4 0.13291139240506328 0.02531645569620253 0.03611230175739391 1.5618047200805372
0.03971455165994415 0.06939571551495992 0.86780620934879 0.009928637914986037 0.06865671641791045 0.9283582089552238 0.07726103729104158 2.345805899009854
0.002188401472197354 -0.775484577207282 -0.8712102694616493 -1.989455883815776E-4 0.696 0.8880000000000001 0.07961851693099015 3.129807077939171
0.007444168734491315 -0.5919808740489736 -0.862929238610171 -0.001687344913151365 0.10317460317460318 0.8333333333333334 0.0876553793399057 3.913808256868488
0.01487684729064039 -0.13935688548842537 0.06454621675539653 0.008571428571428572 0.42016806722689076 0.6890756302521008 -0.007132530120481928 -0.7901988167074143
-0.01106688671002815 -0.6396622371035952 -0.3577863566699957 -0.006018833122997767 0.7647058823529411 0.48663101604278075 -0.01812048192771084 -0.0061976377780971585
-0.00824580347501718 -0.8651104923770145 -0.7801189300953881 -0.01069991165210562 0.27941176470588236 0.463235294117647 -0.02621686746987952 0.77780354115122
8.908245075720083E-4 -1.070205195809823 -0.8215240843527796 0.002771454023557359 0.7938931297709924 0.648854961832061 -0.02534939759036145 1.5618047200805372
4.944620253164557E-4 -0.7564031223567094 -0.1756036779374737 0.002867879746835443 0.6028708133971292 0.48803827751196177 0.01018472291562656 -0.7901988167074143
0.01077394484530987 -1.0667353904011976 -1.2604187194811285 0.01057625778392804 0.9487179487179487 0.9743589743589743 0.02106839740389416 -0.0061976377780971585
0.002542538627029141 -1.1743142074497956 -0.9705826396793887 -0.003422648151769998 0.11504424778761063 0.6548672566371682 0.0236645032451323 0.77780354115122
0.02009364026531409 -0.4340676045034953 -0.804962022649823 0.01404603979711276 0.08270676691729323 0.5488721804511277 0.04423364952571143 1.5618047200805372
0.01329126027921209 -0.5374539462580765 -0.48200181944217 2.868617326448652E-4 0.011627906976744186 0.8023255813953488 0.0581128307538692 2.345805899009854
-0.001604227611588185 -0.7180818192560263 -0.6559034673232139 -0.00424648485420402 0.3708609271523179 0.5562913907284768 0.0564153769345981 3.129807077939171
0.00113421550094518 -0.26479455833491344 -0.8215240843527796 0.005103969754253308 0.8778625954198472 0.5572519083969465 0.05761357963055417 3.913808256868488
periodReturn periodVolume highLowSpread closeToOpenReturn openPIR closePIR 1PeriodReversalReturn 1PeriodReversalPeriods
-0.007550400871798864 -0.14564312353258288 -0.3743484183729523 0.002179497158869775 0.7297297297297297 0.05405405405405406 -0.01353965183752418 -0.7901988167074143
-0.01254901960784314 0.9498254268459729 0.776714869982529 0.005882352941176471 0.9537037037037036 0.22839506172839505 0.005912432086928731 -0.7901988167074143
0.01040508339952343 -0.5935252096944673 -0.804962022649823 0.009690230341540904 0.45112781954887216 0.5187969924812029 0.01637903483541067 -0.0061976377780971585
-0.004087728952126405 -0.7938928601098189 -0.6807465598776488 1.57220344312554E-4 0.45270270270270274 0.08783783783783784 -0.010543580131209 -0.7901988167074143
-0.02612676612203015 0.11655240043361244 0.9423354870120945 -0.001183992422448496 0.9186046511627908 0.0 -0.03639487660106217 -0.0061976377780971585
0.006970335548711298 -0.06750567962307845 -0.018264091759386373 -0.005025125628140704 0.07017543859649124 0.7192982456140351 0.0133768352365416 -0.7901988167074143
-0.007968448164842242 -0.4631476426998933 -0.42403460348182204 0.002656149388280747 0.9273743016759776 0.1899441340782123 0.005301794453507341 -0.0061976377780971585
0.02531440162271805 -0.09133398666605035 0.0811082784583531 0.006490872210953347 0.020833333333333336 0.9875 0.03075040783034258 0.77780354115122
-0.01535174487615732 -0.341511411442313 -0.14247955453156053 -0.002215715755321674 0.8122065727699531 0.03286384976525822 -0.01628587240098031 -0.7901988167074143
-0.001446596479948565 -0.4154217315016517 -0.23357089389782154 0.003134292373221892 0.8514851485148515 0.5693069306930693 0.00934199837530463 -0.7901988167074143
0.008611670020120725 -0.8232104884055236 -0.7718378992439098 0.006277665995975855 0.6131386861313868 0.8248175182481751 0.01803411860276198 -0.0061976377780971585
0.01619853175869773 -0.5875656580368566 0.7270286848736593 -0.006782636450686243 0.04402515723270441 0.949685534591195 0.03452477660438668 0.77780354115122
-0.0105221829603455 -0.6895957563078952 -0.13419852368008206 0.002277188849627012 0.7757009345794391 0.014018691588785045 -0.01646893537308773 -0.7901988167074143
-0.003253710023014047 -0.5721371509631251 -0.7221517141350403 -0.001269740496785969 0.6153846153846154 0.4405594405594406 -0.01966906025600999 -0.0061976377780971585
0.007643312101910828 -0.8240024554032127 -0.3163812024126044 0.001990445859872611 0.6197916666666666 0.9895833333333334 0.01524145676239371 -0.7901988167074143
0.004266750948166877 -0.4308502385753832 -0.2915381098581696 -0.004819848293299621 0.3538461538461538 0.9435897435897437 0.01957323921065298 -0.0061976377780971585
-0.001966955153422502 -0.6131214430935379 -0.2832570790066913 0.00999213217938631 0.8979591836734694 0.12244897959183673 -0.01337792642140468 -0.7901988167074143
-0.0043358297201419 -1.1497038329966056 -0.7635568683924318 0.001182499014584155 0.7898550724637682 0.28260869565217395 0.003097450559923755 -0.7901988167074143
0.003800475059382423 -0.9851578398454809 -0.9788636705308669 8.709422011084719E-4 0.35714285714285715 0.6875 0.006909697402906838 -0.0061976377780971585
-0.004811484461271494 -1.0323590729077534 -1.0865170716000847 -0.003943839722353684 0.17171717171717174 0.06060606060606061 0.00206496703994917 0.77780354115122
-0.01125465641594674 0.12730830222097803 -0.5151259428480832 -0.004914004914004914 0.6488095238095238 0.17261904761904762 0.002330065884621565 -0.7901988167074143
0.02284569138276553 -0.08402809111236806 0.5365649752896589 0.00657314629258517 0.13559322033898305 0.823728813559322 0.02522898923348867 -0.0061976377780971585
-0.005407523510971787 -0.8156026554339724 -0.6393414056202573 0.003918495297805643 0.9346405228758169 0.1568627450980392 0.01968503937007874 0.77780354115122
0.01347411551493184 -0.5621979651421265 0.20532374123052727 6.303679773067528E-4 0.2627450980392157 0.9019607843137255 0.0182077264091197 -0.7901988167074143
0.008163582646555746 -0.16531855363142237 -0.018264091759386373 -0.002487948997045561 0.07017543859649124 0.6710526315789475 0.02651994933502217 -0.0061976377780971585
0.004704249248091309 -0.2300915544549226 -0.7469948066894752 0.006323744890876841 0.9 0.7500000000000001 0.03134895503483217 0.77780354115122
0.01819158735032238 1.7834696877885003 -0.2666950173037347 0.01558182376420018 0.5858585858585859 0.7575757575757576 0.05011082963901203 1.5618047200805372
-0.01575574820957407 3.456381175357148 2.2093332072882714 0.01364493026762156 0.9839034205231388 0.19919517102615694 -0.02958228036271741 -0.7901988167074143
-0.01470588235294118 0.6760869838884584 0.8181200242399204 -0.003063725490196078 0.5653495440729484 0.1033434650455927 -0.04385312918091274 -0.0061976377780971585
-0.02712997512437811 1.669268046721727 1.4557593998037477 0.0 1.0 0.14039408866995073 0.00457537325413389 -0.7901988167074143
0.03036356372353176 0.41791564222927113 2.093398775367576 0.00759089093088294 0.16563146997929606 0.7556935817805382 0.03507786161502649 -0.0061976377780971585
-0.001938735944164405 0.10452935144994423 0.0065790007950486794 0.004265219077161691 0.5367965367965368 0.19047619047619047 -0.01432181971356361 -0.7901988167074143
-0.02253302253302253 0.008676595760880928 0.30469611144826675 -0.004273504273504274 0.8876404494382023 0.00749063670411985 -0.03653212836026652 -0.0061976377780971585
-0.006279809220985692 1.1418229760544976 0.9009303327547032 0.006041335453100159 0.943952802359882 0.48672566371681414 0.01337548638132296 -0.7901988167074143
0.001999840012798976 -0.23813496927520292 -0.20044677049190837 -0.001919846412287017 0.3640776699029126 0.6019417475728155 0.01540207522697795 -0.0061976377780971585
0.0188408111128852 0.336511334454299 -0.6559034673232139 0.01133642024588855 0.37748344370860926 1.0 0.0 -0.7901988167074143
-0.01018649114558847 -0.33243348973130127 -0.3081001715611261 -0.00180222535652719 0.9119170984455959 0.35751295336787564 -0.01018649114558847 -0.0061976377780971585
-0.003562381253958201 -0.0813106543515472 -0.20044677049190837 -0.005699810006333122 0.3786407766990291 0.5097087378640777 0.008412113443358436 -0.7901988167074143
0.001112258679590053 -0.7142506789047051 -0.8132430535013012 0.002224517359180106 0.21212121212121213 0.10606060606060606 0.009533728569139562 -0.0061976377780971585
0.02333148162844219 -0.21107939671664777 -0.42403460348182204 0.01111022934687723 0.13966480446927373 1.0 0.03308764621054318 0.77780354115122
-0.001395889879798371 -0.5360977027745338 -0.8463671769072144 9.305932531989143E-4 0.671875 0.43750000000000006 0.03164556962025316 1.5618047200805372
0.01102741321736429 0.07051931869293138 0.04798415505243994 -0.003028655742797235 0.00847457627118644 0.7754237288135594 0.04302195161031886 2.345805899009854
-9.217297795529611E-4 -0.21782596557821213 -0.8794913003131276 0.003840540748137338 0.8467741935483871 0.34677419354838707 0.04206056721679218 3.129807077939171
-7.688167909587145E-5 -0.6329255678295019 -0.5482500662539964 -5.381717536711002E-4 0.4024390243902439 0.43902439024390244 0.005566723364775012 -0.7901988167074143
0.01022604951560818 -0.46747871221850573 -0.41575357263034374 7.688759034291864E-5 0.13333333333333333 0.8666666666666667 0.01584969846915107 -0.0061976377780971585
0.008752568688636882 -0.17958385917729794 -0.6062172822143442 0.001598295151838039 0.12738853503184713 0.7261146496815286 -0.003233812138076258 -0.7901988167074143
-0.02203108495548514 1.0613244805331323 1.2321715668138344 4.526935264825713E-4 0.9182058047493403 0.13192612137203166 0.003872366790582404 -0.7901988167074143
0.01866995833976238 -0.15290447094264514 -0.07623130771973421 0.005554698349020213 0.13122171945701358 0.9004524886877828 0.02261462205700124 -0.0061976377780971585
-0.001969100272644653 -0.896140749305222 -1.2024515035207806 -0.001363223265677068 0.8941176470588236 0.8 0.02060099132589839 0.77780354115122
-0.01138260737592958 0.07851818536959165 -0.6227793439173008 -0.004173622704507513 0.8580645161290322 0.24516129032258063 0.002925327174749808 -0.7901988167074143
0.001995701565858152 -0.8313627986879861 -0.7966809917983447 0.0 0.17164179104477612 0.3656716417910447 0.004926866820631255 -0.0061976377780971585
-0.004443082580052091 -0.7521215507754525 -0.7966809917983447 -0.005209131300750728 0.40298507462686567 0.47761194029850745 0.004948963810702134 -0.7901988167074143
0.001231148045552478 -0.8841572986714382 -1.0451119173426933 0.00538627269929209 0.7307692307692307 0.21153846153846154 -0.006262410264243165 -0.7901988167074143
-0.005840762373193975 -0.5208473882752824 -0.5234069736995615 -0.004150015370427298 0.4011976047904192 0.2694610778443114 -0.01206659538720024 -0.0061976377780971585
-0.005488559059987631 -0.6651388254605075 -0.804962022649823 0.001082251082251082 0.857142857142857 0.21804511278195485 -0.01748892622575225 0.77780354115122
-0.006607073455110766 0.18741364755184792 0.06454621675539653 0.00194325689856199 0.8697478991596639 0.40756302521008403 -0.02398044906063846 1.5618047200805372
-0.00297339593114241 0.34745532840361576 0.13079446356722285 -0.008607198748043818 0.4390243902439025 0.7317073170731707 0.01432892851456774 -0.7901988167074143
0.01145816983205148 -0.48686210448694733 -0.6724655290261705 0.003924030764401193 0.04697986577181208 0.6912751677852349 0.02595128164305047 -0.0061976377780971585
-0.002250155183116077 -0.6678018144902372 -0.4985638811451266 0.002327746741154562 0.4117647058823529 0.06470588235294118 -0.01221385773544323 -0.7901988167074143
-0.01104284936620266 -0.5938617956684853 -0.8960533620160842 -0.003110661793296524 0.8852459016393444 0.04918032786885246 -0.02312183131049316 -0.0061976377780971585
-0.001965872454195172 -0.44099236593953967 -0.6393414056202573 -0.008413934103955335 0.2549019607843137 0.7908496732026143 0.00962532813618646 -0.7901988167074143
0.005357705641348881 -0.8586856601082614 -0.6807465598776488 8.666876772770249E-4 0.445945945945946 0.831081081081081 0.01503460345239042 -0.0061976377780971585
-0.002351097178683386 -0.7911457245865847 -0.9623016088279105 9.404388714733542E-4 0.8596491228070176 0.4912280701754387 0.0126481584599475 0.77780354115122
0.004556166535742341 -0.6687571246811997 -1.0037067630853018 -5.498821681068342E-4 0.009174311926605503 0.6055045871559633 -0.003351258670407607 -0.7901988167074143
-0.01000938379730998 0.2687437084207867 -0.7304327449865186 -0.001329371285580231 0.9225352112676057 0.14084507042253522 0.001582278481012658 -0.7901988167074143
0.007977883096366508 -0.7384304213029016 -1.094798102451563 0.00703001579778831 0.4183673469387755 0.5408163265306123 -0.003513977822895518 -0.7901988167074143
-0.004545098346524567 -0.9213945969440344 -1.30182387373852 -0.001018728939738265 0.821917808219178 0.2054794520547945 0.001182219419924338 -0.7901988167074143
0.008501928678264978 0.3075302921326121 0.3129771422997452 0.001416988113044163 0.033582089552238806 0.3694029850746268 -0.01302003081664099 -0.7901988167074143
-0.004761533057528686 -0.8382578613616172 -0.4985638811451266 0.005854343923191008 0.8 0.0 -0.01771956856702619 -0.0061976377780971585
-0.005882352941176471 -0.32871124484216235 -0.6807465598776488 0.001333333333333333 0.7837837837837838 0.16216216216216217 -0.02349768875192604 0.77780354115122
-0.01751479289940828 0.007894528350662905 -0.2584139864522564 -0.01017751479289941 0.4924623115577889 0.02512562814070352 4.016709511568123E-4 -0.7901988167074143
0.007227174174897615 -0.24264423136829544 -0.862929238610171 0.008351401268770577 0.5634920634920635 0.45238095238095233 0.007631748071979434 -0.0061976377780971585
0.00932791198277924 -0.9218153294115566 -1.119641195005998 0.01171968428605597 0.9578947368421054 0.6421052631578947 -0.002678430754687254 -0.7901988167074143
-0.001263823064770932 -1.0706110788961387 -1.1444842875604326 -0.001342812006319115 0.717391304347826 0.7282608695652174 -0.00393886875689302 -0.0061976377780971585
-0.003479911420436571 -1.032116533014711 -0.7635568683924318 -0.01186333438785195 0.06521739130434782 0.8333333333333334 -0.007405073262958878 0.77780354115122
-0.00246031746031746 -0.10076829352602218 0.06454621675539653 -8.73015873015873E-4 0.8907563025210085 0.8067226890756303 -0.009847171892232552 1.5618047200805372
-0.02482297716604344 0.5810212454033488 -0.16732264708599523 -0.009626859734266847 0.9238095238095237 0.014285714285714285 -0.034425712935245 2.345805899009854
-0.02039650811781023 1.4388897968876926 2.101679806219054 0.01044301215631884 0.9566115702479339 0.1756198347107438 0.007129676228820668 -0.7901988167074143
0.02673440493045723 0.6158677933016707 0.2798530188938321 0.01557424835512618 0.2765151515151515 0.784090909090909 0.03405468881060225 -0.0061976377780971585
0.01930564568462038 -0.5699245931633311 -0.713870683283562 0.01419532770927969 0.4930555555555555 0.9305555555555557 0.05401778225130012 0.77780354115122
-3.978990927900684E-4 -0.8521766813460038 -0.804962022649823 0.00302403310520452 0.7518796992481203 0.4285714285714285 0.05359838953195773 1.5618047200805372
0.009632991003900963 -0.7567644572994051 -0.6062172822143442 8.757264549000876E-4 0.089171974522293 0.7898089171974522 0.06374769334004363 2.345805899009854
0.01332597382116385 -0.637786265277819 -0.8960533620160842 0.007254376281343637 0.319672131147541 0.9508196721311475 0.07792316725381647 3.129807077939171
0.008637460119835032 -0.15139478385330024 -0.8215240843527796 0.004435452493969341 0.5877862595419847 1.0 0.08723368562321758 3.913808256868488
0.01890140410430489 0.2676795027676419 -0.026545122610864478 0.0104150594044129 0.11894273127753305 0.6035242290748899 -0.006768444009927051 -0.7901988167074143
-0.009994699780419475 0.5022502278956931 0.2467288954879189 0.005905958961156962 0.973076923076923 0.16538461538461538 -0.01669549522448673 -0.0061976377780971585
-0.04229445506692161 3.2639381447124234 1.0003027029724423 -0.0669980879541109 0.0 0.9202279202279203 0.02647758012951881 -0.7901988167074143
-4.791566842357451E-4 0.0958672124127193 -0.22528986304634344 0.00782622584251717 0.5615763546798029 0.049261083743842374 -0.01518608859863089 -0.7901988167074143
-0.005273250239693193 -0.3811493596766543 -0.3826294492244306 0.001278363694471077 0.7717391304347825 0.3260869565217391 -0.02037925879298135 -0.0061976377780971585
-0.01389558232931727 -0.22160760799217774 -0.6724655290261705 -0.01132530120481928 0.6510067114093959 0.43624161073825507 0.005322633475270226 -0.7901988167074143
0.004968640547364991 -0.7574673280098542 -0.7801189300953881 0.004968640547364991 0.6102941176470588 0.6102941176470588 -0.004277298038899201 -0.7901988167074143
-0.003160966120927217 -0.6354400630471649 -0.8877723311646059 -0.001864159507213487 0.7154471544715447 0.5853658536585366 -0.007424743765636349 -0.0061976377780971585
-0.005041060248800716 -0.8304025387032881 -1.1941704726693023 -0.005447597365639483 0.7093023255813954 0.7674418604651163 -0.01242837543378258 0.77780354115122
-0.008743973196044781 -0.3342550138259863 -0.4737207885906918 0.001879545640271308 0.976878612716763 0.2254335260115607 -0.0109262883235486 -0.7901988167074143
-0.02357790601813685 1.0249583459579943 2.275581454100098 0.001648804616652927 0.7881188118811882 0.1821782178217822 -0.03424657534246575 -0.0061976377780971585
-0.03208375548801081 3.682883736696241 1.7787196030114012 -0.008611955420466059 0.9370786516853932 0.3123595505617977 -0.06523157208088715 0.77780354115122
0.00209351011863224 2.4805289939065034 2.490888256238533 -0.01919050942079553 0.15819209039548024 0.6177024482109228 0.02939068100358423 -0.7901988167074143
0.002176183844011142 0.20547049509916024 0.06454621675539653 0.009488161559888578 0.777310924369748 0.4243697478991597 0.03163082437275986 -0.0061976377780971585
0.003387475028228959 -0.5113388345092772 -0.4571587268877352 -0.004777208373143403 0.045714285714285714 0.5828571428571429 0.03512544802867384 0.77780354115122
0.03635734072022161 0.28642437164419665 0.9588975487150511 0.008743074792243767 0.0 0.9219653179190751 -0.002250187515626302 -0.7901988167074143
-0.05203808887403943 2.324422745560065 2.109960837070532 -0.01595389241563649 0.9237113402061857 0.032989690721649485 -0.05417118093174431 -0.0061976377780971585
0.01541986078068552 2.596938589464897 2.888377737109491 -0.0084588950568332 0.5008635578583764 0.9689119170984456 0.05117212441849859 -0.7901988167074143
-7.809788267962514E-4 -0.02061133377241045 -0.366067387521474 0.006942034015966678 0.8064516129032258 0.3279569892473118 -0.01073883161512027 -0.7901988167074143
0.007034303082935302 -0.2998935457137489 -0.0017020300564297942 -0.007207989578810248 0.13478260869565217 0.8478260869565218 0.01710376282782212 -0.7901988167074143
0.01034839599862021 -0.3984439389886908 -0.12591749282860396 6.898930665746809E-4 0.25116279069767444 0.772093023255814 -0.00416489587760306 -0.7901988167074143
-0.005633321952884944 -0.7073506664373385 -0.7221517141350403 -0.006230795493342438 0.2937062937062937 0.34265734265734266 -0.009774755631109222 -0.0061976377780971585
-0.01278969957081545 -0.06465459843139755 -0.3826294492244306 -0.003433476394849785 0.7717391304347825 0.1793478260869565 -0.02243943901402465 0.77780354115122
-0.0205199547865403 0.9411335890463347 0.34610126570565836 -0.008086253369272238 0.9007352941176471 0.375 -0.04249893752656184 1.5618047200805372
-0.06116289391921882 3.837936025462567 3.269305156277492 -0.01970705725699068 0.7648 0.0176 -0.101062473438164 2.345805899009854
-0.02496217851739788 5.578530992571222 7.575441199046197 -0.1029689863842663 0.2506550218340612 0.97117903930131 0.1208695652173913 -0.7901988167074143
0.006012412723041117 2.6475601299984395 4.395525352078539 0.07748254460822343 1.0 0.03153745072273324 -0.06633066330663306 -0.7901988167074143
0.05735492577597841 2.349884484535771 2.101679806219054 0.0322922691343744 0.42148760330578516 0.9586776859504131 -0.01278012780127801 -0.0061976377780971585
0.02944662229920686 1.7083318188827434 0.7601528082795725 0.02315616738080044 0.686335403726708 0.9006211180124223 0.01629016290162902 0.77780354115122
0.003276656039674106 0.20514380871261348 -0.4405966651847786 -0.006641870350690755 0.3559322033898305 0.9887005649717514 0.01962019620196202 1.5618047200805372
-0.004678259334451408 0.35692428381973645 0.1887616795275707 -0.01112189954982788 0.011857707509881424 0.3003952569169961 -0.01545446607875666 -0.7901988167074143
-0.04469670095778645 1.3481402785399885 1.8366868189717487 -0.02314650585313941 0.6172566371681416 0.07964601769911504 0.003353204172876304 -0.7901988167074143
0.0428889714073524 0.6320041208795869 0.751871777428094 0.02330115113256591 0.34267912772585674 1.0 0.04638599105812221 -0.0061976377780971585
-0.01753605127292149 0.20563878808616917 0.36266332740861495 0.001335232330425494 0.8941605839416058 0.12043795620437955 -0.0213690370633091 -0.7901988167074143
-0.009966476397571804 0.059991107417401414 -0.2998191407096479 -0.0126846063241823 0.2371134020618557 0.3917525773195876 0.007003962768408442 -0.7901988167074143
0.02782099386839938 0.26542239682422786 -0.051388215165299164 0.02269607394527318 0.6383928571428571 0.8883928571428571 0.03501981384204221 -0.0061976377780971585
-0.01923248152435224 1.7617549426706114 1.6130989859818354 0.01291069361588461 0.9388235294117647 0.08941176470588236 0.003461783729616471 -0.7901988167074143
0.02197004085338175 0.6891742385252715 0.8926493019032248 0.001089423513390831 0.10946745562130178 0.7899408284023669 0.02550788011296347 -0.0061976377780971585
0.01456871280092387 0.03414823432405778 0.12251343271574473 -0.006929021941902816 0.012244897959183673 1.0 0.0404482098934135 0.77780354115122
0.009631380789773224 0.46775511535259556 -0.22528986304634344 0.02075124770160231 0.8472906403940887 0.22167487684729067 -0.01351698177773976 -0.7901988167074143
0.00841210649553378 -0.28450463698990186 -0.15904161623451712 0.005376810337351487 0.7156398104265403 0.8815165876777252 0.016255899318301 -0.7901988167074143
0.001117991056071551 -0.5861500170284872 -0.9954257322338235 -2.579979360165119E-4 0.7363636363636363 0.8818181818181817 -0.001115496825124421 -0.7901988167074143
-0.02138991495575981 0.7281538641927837 0.38750641996304963 -0.006442745468602354 0.7003610108303249 0.07220216606498195 -0.0224815513986614 -0.0061976377780971585
-0.004125702247191011 1.2209701778860556 0.10595137101278816 -0.01501053370786517 0.13991769547325103 0.6502057613168725 0.01412353624743005 -0.7901988167074143
0.01551344204495372 -0.10877705979015358 -0.4902828502936483 0.001939180255619216 0.0058479532163742695 0.9064327485380117 -0.001386842333362226 -0.7901988167074143
-0.01571044180192692 0.052323876921023464 -0.5316880045510398 -0.01588403784393716 0.5180722891566265 0.5301204819277109 0.00782083185211518 -0.7901988167074143
0.008112874779541446 -0.6487302592271358 -0.7304327449865186 0.002028218694885362 0.23239436619718312 0.7183098591549296 0.01599715606114469 -0.0061976377780971585
0.005948215535339398 0.05240307362079238 0.6856235306162677 -0.009359692092372288 0.28115015974440893 0.8402555910543131 0.02340482335142832 -0.7901988167074143
-0.002521739130434783 0.3509548325746546 0.30469611144826675 0.01252173913043478 0.9063670411985019 0.2584269662921348 -0.01696803496443568 -0.7901988167074143
-0.01978903321419231 0.14710747716320643 -0.14247955453156053 -0.007497166768372417 0.6619718309859155 0.0 -0.0364212871711372 -0.0061976377780971585
-0.03006047669868374 1.2069573118206933 2.772443305188795 0.003468516542155816 0.879646017699115 0.21238938053097342 0.01112553309846097 -0.7901988167074143
0.01136988813497158 0.858942264067409 0.4206305433689628 0.01017788373372456 0.5124555160142349 0.5587188612099644 0.02262191730020397 -0.0061976377780971585
-0.006527651858567543 0.7422756257203281 0.0065790007950486794 -0.01115140525838622 0.7619047619047619 0.9826839826839827 0.02115366694623055 -0.7901988167074143
0.007300602299689724 0.43600218853899675 0.9588975487150511 -0.01432743201314108 0.13294797687861273 0.8179190751445087 0.02860870375547479 -0.0061976377780971585
0.003623844899438304 0.14706787881332198 -0.0017020300564297942 -0.00452980612429788 0.35217391304347834 0.7434782608695653 0.03233622216009692 0.77780354115122
0.004784257086116628 -0.027476697683628155 -0.274976048155213 -0.00135403502437263 0.4365482233502538 0.7817258883248731 0.03727518404622123 1.5618047200805372
-0.004761476956248316 -0.1063863094158795 0.04798415505243994 0.003863085077710897 0.9872881355932204 0.5805084745762713 -0.008857475172228685 -0.7901988167074143
-0.01155443220797978 0.6408296031100853 -0.2666950173037347 -0.00532587109586568 1.0 0.6515151515151515 0.0119212642084835 -0.7901988167074143
0.02392694063926941 0.18719585662748342 0.40406848166600623 0.0045662100456621 0.1827956989247312 0.9426523297491038 0.03613344422881434 -0.0061976377780971585
-0.004637887977167321 -0.9225182001220058 -0.8215240843527796 0.005440599357830895 0.9847328244274809 0.12213740458015267 -0.01019955654101996 -0.7901988167074143
0.001702508960573477 -0.808197764005579 -0.4405966651847786 -0.006989247311827957 0.07909604519774012 0.6271186440677966 -0.008514412416851441 -0.0061976377780971585
-0.01413364343859021 -0.21909311277451474 -0.2832570790066913 -0.004472671974237409 0.8826530612244898 0.3316326530612245 0.005932822197882439 -0.7901988167074143
0.0149714182016151 -0.5648164060282361 -0.573093158808431 0.006532982487977498 0.27329192546583847 0.8509316770186336 -0.002140945584299732 -0.7901988167074143
-0.007330591811192562 -0.5205009027137935 -0.6890275907291271 -7.151796888968353E-4 0.8503401360544218 0.3469387755102041 -0.009455842997323818 -0.0061976377780971585
0.006213976945244957 -0.9476780016798425 -0.5482500662539964 -0.002161383285302594 0.42073170731707316 0.9878048780487806 0.01471256016710562 -0.7901988167074143
0.01825830126197082 0.0013311018573141866 0.86780620934879 -0.003490557594200304 0.15522388059701492 0.8805970149253731 0.03323948778494233 -0.0061976377780971585
-8.789663355893469E-5 -0.34434269345905166 -0.3495053258185176 0.002021622571855498 0.1595744680851064 0.031914893617021274 -0.01574666897387091 -0.7901988167074143
0.01529535864978903 -0.37020536572733753 -0.7469948066894752 0.005010548523206751 0.1642857142857143 1.0 -6.921612735767433E-4 -0.0061976377780971585
0.030995670995671 0.5141693312109146 0.49515982103226724 0.01038961038961039 0.12758620689655173 0.9482758620689655 -0.001258072632726663 -0.7901988167074143
-0.03191132012092711 0.8547101904235077 0.751871777428094 -0.008397715821296607 0.9844236760124612 0.11214953271028037 -0.03312924599513545 -0.0061976377780971585
-0.006332408049965302 0.4554647775072073 0.20532374123052727 0.001040943789035392 0.5529411764705883 0.21960784313725493 0.00491271164137205 -0.7901988167074143
0.04120471409864688 1.7953590923413085 0.776714869982529 0.02077695329550415 0.2685185185185185 0.9907407407407407 0.04631985261865076 -0.0061976377780971585
0.01056426595120315 0.07369708627115903 0.09767034016130968 -0.00477907269221095 0.17768595041322313 0.933884297520661 0.05737345381173787 0.77780354115122
-0.008545590309466522 0.0029744333775191447 -0.4405966651847786 0.003816477225586991 0.8700564971751412 0.02824858757062147 0.04833757347135714 1.5618047200805372
0.01405857740585774 -0.8410000470911159 -0.4571587268877352 0.003096234309623431 0.14857142857142858 0.8971428571428571 0.06307570839547329 2.345805899009854
0.01147053969301865 -0.1693278865572236 0.40406848166600623 -0.00321835286350883 0.03225806451612903 0.6702508960573477 -0.007449995951089157 -0.7901988167074143
-0.008892877539365261 -0.2009031652736533 -0.0927933694226908 2.447580974137228E-4 0.684931506849315 0.17351598173515984 -0.01627662158879261 -0.0061976377780971585
-0.004609812314784327 -0.4553418179789197 0.1721996178246141 0.003045768850839644 0.6653386454183268 0.2948207171314741 0.006157430520885339 -0.7901988167074143
0.001157790274561694 -0.7775931893386293 -0.920896454570519 0.00157128680119087 0.411764705882353 0.3697478991596639 0.007322349808620403 -0.0061976377780971585
-0.004047579712539237 -0.747142058277482 -0.4488776960362569 -8.260366760284157E-4 0.5170454545454546 0.29545454545454547 -0.0101797881947295 -0.7901988167074143
-0.03151696110143485 0.5135902053438544 -0.2418519247493 -0.0304387492742805 0.41791044776119407 0.35323383084577115 -0.04137591330761021 -0.0061976377780971585
-0.005652136678941509 -0.18051937019331823 -0.07623130771973421 -0.003425537381176672 0.5248868778280543 0.4072398190045249 0.007811821890460897 -0.7901988167074143
-0.00335888381707002 -0.8161867310947681 -0.9374585162734757 0.001291878391180777 0.5213675213675214 0.05982905982905984 0.004426699071261175 -0.0061976377780971585
-0.02920843415139993 -0.17758909230186842 0.8264010550913985 -0.004493605254061528 0.8878787878787879 0.021212121212121217 -0.02491103202846975 0.77780354115122
0.01637884991988606 -0.5494720454480091 0.776714869982529 -0.008545486914723162 0.11728395061728394 0.9814814814814815 0.02864864864864865 -0.7901988167074143
-0.004291469609388685 -1.064102100133881 -0.4737207885906918 0.006480994920301279 0.9248554913294799 0.2138728323699422 0.02423423423423423 -0.0061976377780971585
0.03166505409446741 -0.10281750813254283 -0.2584139864522564 0.01820740610431876 0.1306532663316583 0.8994974874371859 0.05666666666666667 0.77780354115122
0.01270355529030608 -0.2700660886632818 0.569689098695572 0.002984056611816864 0.294314381270903 0.6755852842809364 0.0700900900900901 1.5618047200805372
0.004377841387438963 -0.7159781569184145 -1.0202688247882583 0.00353594881293147 0.32710280373831774 0.4205607476635514 -0.005170113408939293 -0.7901988167074143
-0.01299245599329422 -0.805302134670278 0.07282724760687499 -2.514668901927913E-4 0.807531380753138 0.1715481171548117 -0.01809539693128753 -0.0061976377780971585
0.009596602972399152 -0.2944487726046361 -0.05966924601677764 -0.00356687898089172 0.09417040358744394 0.789237668161435 0.01502732240437158 -0.7901988167074143
-0.007150067294751009 -1.354442151280454 -0.8215240843527796 0.002775908479138627 0.9847328244274809 0.08396946564885496 0.007769808743169399 -0.0061976377780971585
-0.001863932898415657 -1.7684725980848637 -1.2355756269266938 0.002202829789036686 0.8518518518518517 0.25925925925925924 0.001785714285714286 -0.7901988167074143
0.0041592394533571 -0.5490909113303712 -0.5316880045510398 0.001527883880825057 0.14457831325301204 0.33132530120481934 -0.009295703877397202 -0.7901988167074143
-0.008114961961115807 -0.6954909606469437 -0.2915381098581696 0.003803888419273035 0.9692307692307692 0.24615384615384614 -0.01733523155514614 -0.0061976377780971585
-0.009033577637634224 -0.7698368625550114 -0.22528986304634344 0.0 0.6206896551724138 0.09852216748768475 -0.02621221003266058 0.77780354115122
-0.009287925696594427 -0.36011768609427214 0.22188580293348384 0.002321981424148607 0.906614785992218 0.3813229571984436 0.008579933461740501 -0.7901988167074143
0.03324652777777778 0.38473717481983183 1.522007646615574 7.8125E-4 0.043478260869565216 0.9468599033816426 0.04211171423568552 -0.0061976377780971585
-0.006300932538015626 -0.82962047129307 -0.20872780134338687 -4.200621692010418E-4 0.5707317073170732 0.22926829268292684 -0.01318204572000667 -0.7901988167074143
-4.227257355427798E-4 -0.7175917896762062 -0.4654397577392135 -0.006425431180250254 0.37931034482758624 0.7873563218390806 -0.01359919906557651 -0.0061976377780971585
-0.02207561532605938 -0.18483559033072403 0.255009926339397 -0.004990273196312273 0.9808429118773947 0.20689655172413796 0.004692387904066736 -0.7901988167074143
0.004756962463241654 -0.9725210164386037 -0.7221517141350403 0.003632589517384536 0.3706293706293707 0.46153846153846156 0.009471671880431005 -0.0061976377780971585
-0.02573814237755014 -0.10451033759010335 0.19704271037904916 -0.008435912886287337 0.921259842519685 0.12992125984251968 -0.01651025373653111 0.77780354115122
-0.006184838310655593 0.7705240985691525 0.4868787901807891 -0.00883548330093656 0.8269896193771626 0.930795847750865 0.02450132070316058 -0.7901988167074143
-0.01769203413940256 0.20918779019456363 0.12251343271574473 -0.004800853485064011 0.6489795918367347 0.05714285714285714 -0.02047872340425532 -0.7901988167074143
0.00769300389175491 0.3586072136898259 0.7353097157251375 0.005249343832020997 0.7115987460815048 0.7962382445141066 0.02334558823529412 -0.7901988167074143
-0.02119633554876953 -0.20776798470756008 0.8015579625369638 0.006107418717442069 0.9296636085626911 0.0 -0.02913140311804009 -0.7901988167074143
-0.02706918700679024 2.325506750388152 1.165923320002008 -6.42319691686548E-4 0.8355795148247979 0.05929919137466307 -0.05541202672605791 -0.0061976377780971585
0.01226068093935679 -0.2505243029953023 -0.41575357263034374 0.01178911628784306 0.95 0.9777777777777777 0.01667140286066117 -0.7901988167074143
-9.317059536010435E-4 -0.7949174674130792 -0.8546482077586928 6.521941675207305E-4 0.7480314960629921 0.6141732283464567 0.01572416406175997 -0.0061976377780971585
0.0128695327800056 -0.8059802564120494 -0.5399690354025181 3.730299356523361E-4 0.042424242424242434 0.8545454545454545 0.02879605948659657 0.77780354115122
-0.005340208083970168 -1.7414120757325728 -1.0368308864912148 0.003590829573704079 1.0 0.07619047619047618 -0.008899082568807339 -0.7901988167074143
-0.01120059242802925 -1.0971370235249893 -0.6559034673232139 -0.004072942701101546 0.9337748344370861 0.423841059602649 0.006027500470898474 -0.7901988167074143
0.01797416214192099 -0.8861817643092811 0.22188580293348384 0.001310615989515072 0.03891050583657588 0.7315175097276264 -0.006305400712784428 -0.7901988167074143
-0.01305867206179879 -1.1701959790618122 -0.6476224364717357 -0.001471399668935074 0.9210526315789473 0.09210526315789475 -0.01928173261445673 -0.0061976377780971585
-0.01919493104733507 -0.40175535099777854 -0.07623130771973421 -0.002888557584793142 0.9909502262443439 0.1990950226244344 -0.03810655213378415 0.77780354115122
8.55025650769523E-4 0.9171617379850316 0.8843682710517466 -0.02517575527265818 0.1810089020771513 0.9940652818991098 0.03284313725490196 -0.7901988167074143
-0.0250593260560038 0.3217411499473966 0.9423354870120945 0.003796867584243 0.9709302325581395 0.0872093023255814 -0.02966461974492206 -0.7901988167074143
-0.01956966215558368 0.9621504132475102 0.163918586973136 -0.02093272320124623 0.27599999999999997 0.33199999999999996 -0.04865375531412376 -0.0061976377780971585
-0.04220456802383317 1.5580907296273787 1.15764228915053 -0.02005958291956306 0.6081081081081081 0.005405405405405405 2.074043347505963E-4 -0.7901988167074143
0.005287713841368585 1.0773618122363373 0.03970312420096184 0.02177293934681182 0.7617021276595745 0.0851063829787234 0.005496214870890802 -0.0061976377780971585
0.01619224422442244 0.040409723399537516 -0.48200181944217 0.02073019801980198 0.9476744186046511 0.6918604651162791 0.02177745514881261 0.77780354115122
0.01451334618897798 0.004825656234617502 -0.3743484183729523 0.02050137014107378 0.9243243243243242 0.6054054054054054 0.03660686508348024 1.5618047200805372
-0.02571028411364546 0.6431312571971193 1.3149818753286173 0.003601440576230492 0.7763496143958869 0.02313624678663239 -0.0375531178970254 -0.7901988167074143
0.02187082862716911 0.6767502562490232 2.0188694977042716 0.005852756956566383 0.46835443037974683 0.7974683544303797 -0.016503607075798 -0.0061976377780971585
-0.02401527331189711 1.497713145641053 0.03970312420096184 -0.03336012861736334 0.35744680851063826 0.7531914893617021 0.01856124161073826 -0.7901988167074143
-0.00483887573355297 0.2024164723643215 0.7021855923192243 0.01317821476371873 0.9238095238095239 0.3682539682539682 -0.02017232640648758 -0.7901988167074143
0.001344920339333747 1.1511434376585514 2.0437125902587057 -0.01613904407200497 0.35220125786163525 0.7064989517819708 0.0360736459002355 -0.7901988167074143
-0.005062506457278644 0.1634714952529582 0.5282839444381804 0.002789544374418845 0.7210884353741497 0.46258503401360546 0.03082851637764933 -0.0061976377780971585
0.04745586708203531 0.8262823865476441 0.635937345507398 0.01869158878504673 0.08469055374592835 0.9869706840390879 0.07974737743523871 0.77780354115122
-0.01953008823237831 0.13675790394359272 0.0065790007950486794 9.91375037176564E-4 0.9956709956709956 0.09956709956709957 -0.02059813824519707 -0.7901988167074143
0.005561172901921132 1.2829705022506461 0.4123495125174843 0.004954499494438827 0.6607142857142858 0.6821428571428572 -0.01515151515151515 -0.0061976377780971585
-0.06566113624937155 4.152757904919017 0.8015579625369638 -0.03951734539969834 0.8195718654434251 0.024464831804281346 -0.07981778570013864 0.77780354115122
0.007102884201463625 0.3279845227778042 -0.15076058538303863 0.003874300473525613 0.6556603773584905 0.7971698113207547 0.01839155512025248 -0.7901988167074143
0.03451592220559949 0.758147139333392 0.5531270369926155 0.007480230818550972 0.14814814814814814 1.0 0.0 -0.7901988167074143
-0.009296560272699102 -0.3974438331644215 -0.8215240843527796 -0.008883379816134697 0.816793893129771 0.7862595419847328 -0.009296560272699102 -0.0061976377780971585
-0.02022729642373058 -0.5739997088478779 -0.4571587268877352 -0.01053070587008654 0.6457142857142857 0.1142857142857143 -0.02933581241607272 0.77780354115122
0.01979355113334043 -0.15026662686509207 0.37094435826009303 0.005533680962009152 0.33454545454545453 0.8218181818181818 0.02415304050443518 -0.7901988167074143
0.008035062089116142 -0.11286558941572374 -0.13419852368008206 3.130543671084212E-4 0.3130841121495327 0.6588785046728971 -0.007500256858111579 -0.7901988167074143
-0.02670807453416149 -0.11551867885798235 0.7684338391310506 -8.281573498964803E-4 0.8761609907120743 0.1021671826625387 -0.03400801397308127 -0.0061976377780971585
0.01052967453733248 0.2608289882376309 0.2964150805967886 -0.00946607104871304 0.03383458646616541 0.7406015037593985 0.02117368873602752 -0.7901988167074143
-2.105041574571098E-4 -0.22219663344670904 -0.2418519247493 -0.007578149668455952 0.17910447761194032 0.527363184079602 0.02095872742906277 -0.0061976377780971585
-0.007579745236340667 -0.3220785212365158 -0.04310718431382106 0.009790504263606696 0.8088888888888889 0.07555555555555556 -0.02158796056045667 -0.7901988167074143
nextReversalReturn nextReversalPeriods
0.05538954108858058 1.5618047200805354
0.05213320566017661 0.7778035411512185
0.02328228476821192 -0.006197637778098375
0.007847533632286996 -0.7901988167074152
-0.004778724288385622 -0.7901988167074152
0.00895460224906289 -0.7901988167074152
-0.03674649050371594 -0.006197637778098375
-0.01446826486429401 -0.7901988167074152
0.07960457856399585 3.9138082568684864
0.0722405952873088 3.129807077939169
0.07058095139820451 2.3458058990098523
0.07301685799979316 1.5618047200805354
0.032030239729434 0.7778035411512185
0.02977667493796526 -0.006197637778098375
0.02216748768472906 -0.7901988167074152
-0.02776429472866712 1.5618047200805354
-0.01688426425836851 0.7778035411512185
-0.008710284074037416 -0.006197637778098375
-0.009592563291139241 -0.7901988167074152
0.06405060788771375 3.9138082568684864
0.05270878153725797 3.129807077939169
0.0500390167772142 2.3458058990098523
0.02935551730732454 1.5618047200805354
0.01585354345569501 0.7778035411512185
0.01748582230623819 -0.006197637778098375
0.01633308157099698 -0.7901988167074152
nextReversalReturn nextReversalPeriods
-0.01835294117647059 -0.7901988167074152
0.01699761715647339 -0.006197637778098375
0.006524644288970993 -0.7901988167074152
-0.03228352671876233 -0.006197637778098375
-0.006321932241854433 -0.7901988167074152
0.01811010946555055 0.7778035411512185
0.02628803245436105 -0.006197637778098375
9.495924665664319E-4 -0.7901988167074152
-0.01068874065739773 -0.7901988167074152
0.03114688128772636 0.7778035411512185
0.02234280242578998 -0.006197637778098375
0.006046329014526894 -0.7901988167074152
-0.01071343544163162 -0.006197637778098375
-0.007484076433121019 -0.7901988167074152
0.01588179519595449 -0.006197637778098375
0.01156569630212431 -0.7901988167074152
-0.007410327158060702 -0.7901988167074152
-0.01456848772763262 0.7778035411512185
-0.01829941631172109 -0.006197637778098375
-0.01355314258540065 -0.7901988167074152
0.01258517034068136 0.7778035411512185
-0.01003134796238245 -0.006197637778098375
-0.004648963832637302 -0.7901988167074152
0.04602705644534287 1.5618047200805354
0.03755687514459783 0.7778035411512185
0.03269880257906049 -0.006197637778098375
0.01424802110817942 -0.7901988167074152
-0.04580269607843137 -0.006197637778098375
-0.03156094527363184 -0.7901988167074152
0.04330803036356372 -0.006197637778098375
0.01256300891818534 -0.7901988167074152
-0.04149184149184149 -0.006197637778098375
-0.01939586645468998 -0.7901988167074152
0.02087832973362131 -0.006197637778098375
0.0188408111128852 -0.7901988167074152
-0.02194013477511362 -0.006197637778098375
-0.01187460417986067 -0.7901988167074152
0.02756812584412489 3.129807077939169
0.02642647408935799 2.3458058990098523
0.003024428072896472 1.5618047200805354
0.004426496854857498 0.7778035411512185
-0.006528919271833474 -0.006197637778098375
-0.005612362573998616 -0.7901988167074152
0.02237428878978933 -0.006197637778098375
0.01202526828525763 -0.7901988167074152
-0.02580353100950656 -0.7901988167074152
0.002160160469063416 0.7778035411512185
-0.01620720993638291 -0.006197637778098375
-0.01426620124449841 -0.7901988167074152
-0.00736874424316856 -0.006197637778098375
-0.009345794392523364 -0.7901988167074152
0.007540781779008926 -0.7901988167074152
-0.03458346142022748 1.5618047200805354
-0.02891156462585034 0.7778035411512185
-0.02355227361057132 -0.006197637778098375
-0.01705790297339593 -0.7901988167074152
0.02166064981949458 -0.006197637778098375
0.0100869025450031 -0.7901988167074152
-0.02239676491173497 -0.006197637778098375
-0.0114806951324998 -0.7901988167074152
0.01095178064922786 0.7778035411512185
0.005564263322884013 -0.006197637778098375
0.00793401413982718 -0.7901988167074152
-0.01157335001563966 -0.7901988167074152
0.01153238546603476 -0.7901988167074152
-0.005720554815453334 -0.7901988167074152
0.02180587262851295 -0.7901988167074152
-0.02833502458824448 0.7778035411512185
-0.02368627450980392 -0.006197637778098375
-0.01790927021696252 -0.7901988167074152
0.01935276640167028 -0.006197637778098375
0.0120385872598262 -0.7901988167074152
-0.05829383886255924 2.3458058990098523
-0.05710218285352736 1.5618047200805354
-0.05380952380952381 0.7778035411512185
-0.05147585328984008 -0.006197637778098375
-0.02733132087786571 -0.7901988167074152
0.107437328225202 3.9138082568684864
0.0786015574302401 3.129807077939169
0.05817284736590801 2.3458058990098523
0.05859406098240586 1.5618047200805354
0.04849392840246018 0.7778035411512185
0.03470547039140923 -0.006197637778098375
0.02584477704058016 -0.7901988167074152
-0.0763231619595669 -0.006197637778098375
-0.0669980879541109 -0.7901988167074152
0.01493371665868072 -0.7901988167074152
-0.02428891019495046 -0.006197637778098375
-0.01911646586345382 -0.7901988167074152
0.009285656104911623 -0.7901988167074152
-0.005997730588426001 0.7778035411512185
-0.002845759817871372 -0.006197637778098375
0.002206423142927188 -0.7901988167074152
-0.07996702390766694 0.7778035411512185
-0.05775075987841945 -0.006197637778098375
-0.02651779483600837 -0.7901988167074152
0.04448119777158774 0.7778035411512185
0.04221315035177625 -0.006197637778098375
0.03869459833795014 -0.7901988167074152
-0.08427998663548279 -0.006197637778098375
-0.0340118072076835 -0.7901988167074152
0.01006594932315168 -0.7901988167074152
-0.009900130264871906 -0.7901988167074152
0.01457399103139013 -0.7901988167074152
-0.2147490611130079 2.3458058990098523
-0.2103004291845494 1.5618047200805354
-0.2000695591687679 0.7778035411512185
-0.1833111407012872 -0.006197637778098375
-0.1301059001512859 -0.7901988167074152
0.07748254460822343 -0.7901988167074152
0.1040100250626566 1.5618047200805354
0.04412435044215516 0.7778035411512185
0.01425788168614949 -0.006197637778098375
0.01094536146173537 -0.7901988167074152
-0.0478893224547712 -0.7901988167074152
0.04697363535090977 -0.006197637778098375
0.003916681502581449 -0.7901988167074152
-0.01685240554498505 -0.7901988167074152
0.04347030291937403 -0.006197637778098375
0.01522571454011219 -0.7901988167074152
0.06118928733545166 0.7778035411512185
0.03837612152438483 -0.006197637778098375
0.02346554592417477 -0.7901988167074152
-0.007718324516520683 -0.7901988167074152
0.002235982112143103 -0.7901988167074152
-0.03900008590327291 -0.006197637778098375
-0.01799508426966292 -0.7901988167074152
0.01692375495813134 -0.7901988167074152
-0.02334866765037757 -0.7901988167074152
-0.00908289241622575 -0.006197637778098375
-0.01705738278516445 -0.7901988167074152
0.01469565217391304 -0.7901988167074152
-0.05971580507366402 -0.006197637778098375
-0.04073283528993241 -0.7901988167074152
-0.01604621309370988 -0.006197637778098375
-0.0271078875793291 -0.7901988167074152
0.01998539879540062 1.5618047200805354
0.01259286102554811 0.7778035411512185
0.008936631160859361 -0.006197637778098375
0.004132602641272123 -0.7901988167074152
-0.0231991334175844 -0.7901988167074152
0.02968036529680365 -0.006197637778098375
0.005618979664645023 -0.7901988167074152
-0.01827956989247312 -0.006197637778098375
-0.01994811700509885 -0.7901988167074152
0.01714907903094093 -0.7901988167074152
-0.01564455569461827 -0.006197637778098375
-0.00837536023054755 -0.7901988167074152
0.03445806855813121 -0.006197637778098375
0.01590929067416718 -0.7901988167074152
0.04808368495077356 -0.006197637778098375
0.03229437229437229 -0.7901988167074152
-0.04274437353039973 -0.006197637778098375
-0.01119014573213046 -0.7901988167074152
0.07804452204277608 2.3458058990098523
0.03538190659847405 1.5618047200805354
0.0245582012776902 0.7778035411512185
0.03338912133891213 -0.006197637778098375
0.01906255157616768 -0.7901988167074152
-0.01949906176062658 -0.006197637778098375
-0.01070135001646362 -0.7901988167074152
0.007360238173999338 -0.006197637778098375
0.006195275070213117 -0.7901988167074152
-0.04445550302728705 -0.006197637778098375
-0.01335959578658902 -0.7901988167074152
-0.04400999052622513 0.7778035411512185
-0.04078810922917387 -0.006197637778098375
-0.01192807548513441 -0.7901988167074152
0.05027150113855316 1.5618047200805354
0.05479813528014777 0.7778035411512185
0.02242305396879529 -0.006197637778098375
0.009597575349385419 -0.7901988167074152
-0.01827326068734283 -0.006197637778098375
-0.00535031847133758 -0.7901988167074152
-0.0107671601615074 -0.006197637778098375
-0.003643141574176057 -0.7901988167074152
0.01358119005177829 -0.7901988167074152
-0.03448858833474218 0.7778035411512185
-0.02658939832964036 -0.006197637778098375
-0.01771585827313381 -0.7901988167074152
0.04045138888888889 -0.006197637778098375
0.006973032008737293 -0.7901988167074152
-0.02705444707473791 -0.006197637778098375
-0.02664298401420959 -0.7901988167074152
-0.05042380211036153 0.7778035411512185
-0.05491951450460532 -0.006197637778098375
-0.02995228839017494 -0.7901988167074152
0.002844950213371266 -0.7901988167074152
-0.01529550185537153 -0.7901988167074152
0.00817316328363571 -0.7901988167074152
-0.03129014498073041 -0.006197637778098375
-0.004338394793926247 -0.7901988167074152
0.01555948942513743 0.7778035411512185
0.01650657465261587 -0.006197637778098375
0.003590829573704079 -0.7901988167074152
-0.01712487272054059 -0.7901988167074152
0.02443362666167384 -0.7901988167074152
-0.06198271105389001 0.7778035411512185
-0.04957137532612747 -0.006197637778098375
-0.03097092912787384 -0.7901988167074152
0.004746084480303749 -0.7901988167074152
-0.06114302404829131 -0.006197637778098375
-0.04240317775571003 -0.7901988167074152
0.04914463452566096 1.5618047200805354
0.04362623762376238 0.7778035411512185
0.02699685375012686 -0.006197637778098375
0.01230492196878752 -0.7901988167074152
-0.02084402916110484 -0.006197637778098375
-0.04180064308681672 -0.7901988167074152
0.01564913003191599 -0.7901988167074152
-0.0335195530726257 -0.7901988167074152
0.043289596032648 0.7778035411512185
0.0485981308411215 -0.006197637778098375
0.00109051254089422 -0.7901988167074152
-0.07087967644084935 0.7778035411512185
-0.0760180995475113 -0.006197637778098375
-0.01108480413258717 -0.7901988167074152
0.03451592220559949 -0.7901988167074152
-0.03346761698171676 0.7778035411512185
-0.02439787300594307 -0.006197637778098375
-0.004256677663083963 -0.7901988167074152
0.01565271835542106 -0.7901988167074152
-0.03685300207039337 -0.006197637778098375
-0.01042331418847054 -0.7901988167074152
0.01410377854962636 -0.006197637778098375
0.01431729655753237 -0.7901988167074152
-0.01782115201018352 -0.7901988167074152
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment