Scale the data before learning to normalize the output
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import os
|
||||
import json
|
||||
import joblib
|
||||
import numpy as np
|
||||
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
|
||||
import yfinance as yf
|
||||
@@ -31,11 +32,21 @@ def Predict():
|
||||
# Verify it loaded correctly
|
||||
reconstructed_model.summary()
|
||||
|
||||
# Load the scalers
|
||||
feature_scaler = joblib.load(os.path.join(DATA_DIR, "feature_scaler.pkl"))
|
||||
target_scaler = joblib.load(os.path.join(DATA_DIR, "target_scaler.pkl"))
|
||||
|
||||
# Scale the data
|
||||
scaled_data = feature_scaler.transform(df)
|
||||
|
||||
# Predict
|
||||
predictions = reconstructed_model.predict(df)
|
||||
scaled_predictions = reconstructed_model.predict(scaled_data)
|
||||
|
||||
# Use the loaded target scaler to get back to % change
|
||||
actual_prediction = target_scaler.inverse_transform(scaled_predictions)
|
||||
|
||||
# 'predictions' will be a 2D array, flatten it if you want a simple list
|
||||
flat_predictions = predictions.flatten().tolist()
|
||||
flat_predictions = actual_prediction.flatten().tolist()
|
||||
|
||||
print(f"Predicted Target_Close: {flat_predictions}")
|
||||
|
||||
|
||||
@@ -2,6 +2,8 @@ import pandas as pd
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
import datapuller
|
||||
import features
|
||||
import joblib
|
||||
import os
|
||||
os.environ["CUDA_VISIBLE_DEVICES"] = "-1"
|
||||
from sklearn.model_selection import train_test_split
|
||||
@@ -20,13 +22,12 @@ def TrainAI(include_pull):
|
||||
# Load the dataset
|
||||
dataset = pd.read_parquet(os.path.join(DATA_DIR, "stocks.parquet"))
|
||||
|
||||
# Replace Infinity with 0 -> This fixes the AI mental breakdown
|
||||
dataset['Volume_Chg'] = dataset['Volume_Chg'].replace([np.inf, -np.inf], 0)
|
||||
# Create the X, Y vareables
|
||||
X, Y, X_Scaler, Y_Scaler = features.Prepare(dataset)
|
||||
|
||||
# Remove indicators and set the target
|
||||
X = dataset.drop('Target_Close', axis=1)
|
||||
X = dataset.drop('Target_Direction', axis=1)
|
||||
Y = dataset['Target_Close']
|
||||
# Save the scalers for future use
|
||||
joblib.dump(X_Scaler, os.path.join(DATA_DIR, "feature_scaler.pkl"))
|
||||
joblib.dump(Y_Scaler, os.path.join(DATA_DIR, "target_scaler.pkl"))
|
||||
|
||||
# Show the datatypes
|
||||
print(dataset.dtypes)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,201 +1,201 @@
|
||||
Date,Close,High,Low,Open,Volume,Symbol,Spread,Return,Volatility_5,Volatility_20,RSI,Moving_Average_5,Moving_Average_20,Trend_Signal,Dist_From_MA20,BB_Pos,Log_Return,Target_Close,Target_Direction,Volume_Chg
|
||||
-249955200,0.5309499502182007,0.5340793982846871,0.5267774162512139,0.5267774162512139,170310,0,0.007301982033473209,0.00792023955109511,0.010200076284055561,0.011124590561047922,46.96967860463748,0.5324103951454162,0.5365307688713074,0,-0.010401674939998218,0.3491923187055057,0.007889039088967537,0.0017899616790169048,0,-0.21239195882295814
|
||||
-249868800,0.5507692694664001,0.5591141834054576,0.534079289296328,0.534079289296328,327226,0,0.025034894109129624,0.037328036738782044,0.019967820772104863,0.014089691406813062,60.241026064686686,0.535331130027771,0.5361135125160217,0,0.02733704077257415,0.9403372979801028,0.03664821166338882,-0.0017867634409282074,0,0.9213551758557923
|
||||
-249782400,0.5674591064453125,0.5705883627186048,0.5486827692729858,0.5507691304867457,319571,0,0.021905593445619043,0.03030277450861041,0.021312919958663676,0.01570129216082923,74.15762943977647,0.5422156929969788,0.5365307480096817,1,0.05764508101420618,1.3021234797393308,0.02985271487859573,-0.0017885306092033648,0,-0.02339361786655092
|
||||
-249696000,0.5737179517745972,0.5758041231413228,0.5695454186762002,0.5695454186762002,239200,0,0.006258704465122555,0.011029597125494117,0.020804862968592602,0.014492880446518662,74.4447273302151,0.5499348044395447,0.5379911035299301,1,0.06640787925720693,1.2058768057958824,0.010969214709227714,-0.0017914279751538587,0,-0.25149653754564716
|
||||
-249436800,0.583105742931366,0.583105742931366,0.5716312364179468,0.5737175968589447,233459,0,0.011474506513419191,0.016363077236350998,0.01269144262539286,0.01465579115332346,74.44469487979632,0.5612004041671753,0.5400773257017135,1,0.07967084560298154,1.1645205402478302,0.01623064480319519,-0.00897690784681826,-1,-0.02400083612040138
|
||||
-249350400,0.5841494798660278,0.5841494798660278,0.5778907722881246,0.583106393663884,210496,0,0.006258707577903255,0.0017899616790169048,0.014402066056040969,0.014636686967503514,78.16130229319987,0.5718403100967407,0.5422157347202301,1,0.07733775038349733,1.0530096465194634,0.0017883616067049404,-0.014493197689452453,-1,-0.09835988331998335
|
||||
-249264000,0.583105742931366,0.5862350361185866,0.579976297452283,0.584148827969451,221978,0,0.006258738666303665,-0.0017867634409282074,0.012730182275679593,0.014251035868534318,76.19034661968429,0.5783076047897339,0.54461490213871,1,0.0706753352534093,0.9594435130238214,-0.0017883616067049727,-0.029411523736857625,-1,0.05454735481909401
|
||||
-249177600,0.582062840461731,0.5841491640300238,0.5810197548235596,0.5831060783918524,116730,0,0.0031294092064642065,-0.0017885306092033648,0.00818306856829537,0.014194081883091866,81.01273879821895,0.5812283515930176,0.5470662295818329,1,0.06397143341611256,0.8916309159931848,-0.0017901319397106616,0.0037878332859868635,0,-0.47413707664723537
|
||||
-249091200,0.5810201168060303,0.5862357386112195,0.5716319214106673,0.5820632030940569,153088,0,0.01460381720055215,-0.0017914279751538587,0.007871735181274745,0.013123400456746207,79.22115508773804,0.5826887845993042,0.5499869912862778,1,0.05642519916184563,0.840454369029805,-0.0017930345011860928,0.0,0,0.311470915788572
|
||||
-248832000,0.5758043527603149,0.5799768875226332,0.5737181805616666,0.5799768875226332,110989,0,0.006258706960966642,-0.00897690784681826,0.003932890152491272,0.01345504209786977,76.25005267702875,0.581228506565094,0.5523861706256866,1,0.04239458440478794,0.756134727800381,-0.009017443053621572,-0.014004284031181036,-1,-0.2749986935618729
|
||||
-248745600,0.5674591064453125,0.5799765122682783,0.5674591064453125,0.5758039802056569,183706,0,0.012517405822965788,-0.014493197689452453,0.005786313777287126,0.013704201772565837,67.85707483252338,0.5778904318809509,0.5538986921310425,1,0.02448175904170924,0.6486828803593688,-0.014599250017904485,0.04030744801722297,1,0.6551730351656471
|
||||
-248659200,0.5507692694664001,0.5674592496364722,0.547639822038533,0.5674592496364722,179878,0,0.0198194275979392,-0.029411523736857625,0.011450996217928661,0.015341967106059198,58.76285076733484,0.5714231371879578,0.5547853410243988,1,-0.0072389648049875355,0.4549483037218887,-0.029852714878595588,-0.0036906229399022994,0,-0.020837642755272
|
||||
-248572800,0.5528554916381836,0.5612005586359451,0.5497260819957749,0.5507693200712253,187533,0,0.011474476640170206,0.0037878332859868635,0.012800108143425583,0.01528420834184638,58.7628993511887,0.5655816674232483,0.5555676817893982,1,-0.00488183571527967,0.4690500039017834,0.0037806775097183457,-0.009259100037883772,-1,0.04255662171027019
|
||||
-248486400,0.5528554916381836,0.5612005586359451,0.5507693200712253,0.5528554916381836,218150,0,0.010431238564719836,0.0,0.013114714087586635,0.014973609906396011,64.04473389891663,0.559948742389679,0.5566629588603973,1,-0.006839807035137313,0.4549873748016093,0.0,-0.0037379547220215414,0,0.16326193256653498
|
||||
-248227200,0.5451131463050842,0.5503445602901758,0.5451131463050842,0.5503445602901758,197101,0,0.0052314139850915264,-0.014004284031181036,0.013226279754471689,0.015366214628590462,57.34542304831703,0.5538105010986328,0.5572146326303482,0,-0.021717818622491225,0.35359879223509066,-0.014103269248150538,-0.007504493311763172,-1,-0.09648865459546185
|
||||
-248140800,0.5670852661132812,0.5670852661132812,0.54720600118734,0.54720600118734,174138,0,0.019879264925941276,0.04030744801722297,0.02598125963822912,0.017618276340229062,58.27709679779823,0.5537357330322266,0.5589692175388337,0,0.014519669992173911,0.6020328629271549,0.039516292558868106,0.009451518778709422,1,-0.11650372144230625
|
||||
-248054400,0.564992368221283,0.5681312535361481,0.5608072005308881,0.5670848565957914,126298,0,0.007324053005260067,-0.0036906229399022994,0.020672341199044233,0.017652040373386763,48.53107685536511,0.5565803527832032,0.5604105561971664,0,0.008175813202391913,0.5597269615909102,-0.003697450091549223,-0.003744953556665709,0,-0.27472464367340843
|
||||
-247881600,0.5597610473632812,0.5649924986367659,0.5587148029345257,0.5649924986367659,124384,0,0.006277695702240238,-0.009259100037883772,0.021705408834729434,0.01775613753780663,41.58580354537653,0.5579614639282227,0.5617467939853669,0,-0.003534949630949469,0.4725261830496328,-0.009302231952900707,-0.00563918892567894,-1,-0.015154634277660728
|
||||
-247622400,0.5576686859130859,0.5639463448612618,0.5524372716326951,0.559761175248656,170310,0,0.011509073228566757,-0.0037379547220215414,0.021884028184288463,0.01780863724058096,33.185716233179335,0.5589241027832031,0.5628741085529327,0,-0.009247934059765539,0.423414430062193,-0.0037449583330079967,-0.009452811058468624,-1,0.3692275533830718
|
||||
-247536000,0.5534836649894714,0.5608076087612449,0.5534836649894714,0.5576688357263903,124384,0,0.007323943771773478,-0.007504493311763172,0.020870980401226993,0.01747155169248724,30.5376731320801,0.5605982065200805,0.5642094045877457,0,-0.019010210590359344,0.32040648908619496,-0.007532793697299797,0.0,0,-0.2696612060360519
|
||||
-247449600,0.5587149262428284,0.5587149262428284,0.5482520977632833,0.5534835120030559,116730,0,0.01046282847954505,0.009451518778709422,0.007340217948748493,0.017499337651094855,35.30142829844125,0.55892413854599,0.565597653388977,0,-0.012168945724771674,0.3657444433387689,0.009407132633575552,0.007634263329628688,1,-0.06153524569076407
|
||||
-247363200,0.5566225647926331,0.5639466247973388,0.5524375458558086,0.5587152079201377,139693,0,0.011509078941530193,-0.003744953556665709,0.007341631966794953,0.015519171859193766,34.86049007777312,0.55725017786026,0.5658903181552887,0,-0.016377296209744374,0.3149930396396939,-0.0037519834518120214,0.005681588907118229,1,0.19671892401267876
|
||||
-247276800,0.5534836649894714,0.5608076087612449,0.5482522493037022,0.5566224380243261,267904,0,0.012555359457542714,-0.00563918892567894,0.0067169490062130265,0.013900319137230157,34.01193675719712,0.555994701385498,0.5651915460824967,0,-0.020714890684717213,0.2716482480331139,-0.005655149181763565,0.0018839145985893868,0,0.9178054734310237
|
||||
-247017600,0.5482516884803772,0.5555755865720092,0.5482516884803772,0.5534830988147778,202842,0,0.007323898091632031,-0.009452811058468624,0.0074795631358172306,0.013708568924748591,34.00553474509239,0.5541113018989563,0.5639182329177856,0,-0.02778158875329806,0.20296660788575135,-0.009497772442228812,0.015036766308185845,1,-0.24285564978499763
|
||||
-246931200,0.5482516884803772,0.5482516884803772,0.5440665220245925,0.5482516884803772,216237,0,0.004185166455784706,0.0,0.007191917266587279,0.013014407263728652,37.653778457874566,0.5530649065971375,0.5621755301952363,0,-0.024767783311421376,0.2283570949127671,0.0,0.029629816397279907,1,0.06603661963498686
|
||||
-246844800,0.5524371862411499,0.5524371862411499,0.5461595282633267,0.5482520172754557,130125,0,0.006277657977823203,0.007634263329628688,0.0064877324386250065,0.013191953324756922,51.27746506521312,0.5518093585968018,0.5605899155139923,0,-0.014543125103075316,0.32844053440833,0.007605269810610924,0.0035969778255016127,0,-0.39822972016814884
|
||||
-246758400,0.5555759072303772,0.5597610761016905,0.5524371737829663,0.5524371737829663,310003,0,0.007323902318724151,0.005681588907118229,0.007264426639076365,0.01332435134958438,52.05051967224752,0.5516000270843506,0.5592134237289429,0,-0.006504701683142766,0.4147497694722099,0.005665509556288708,0.0035852089736707615,0,1.3823477425552353
|
||||
-246672000,0.5566225647926331,0.5597614531072659,0.5545300362300648,0.5555762814171928,177965,0,0.005231416877201078,0.0018839145985893868,0.006649468025286538,0.013357493188845056,52.79533434235049,0.5522278070449829,0.557941409945488,0,-0.002363769975388341,0.4642293735442424,0.001882142257092901,-0.0035724011689423074,0,-0.42592491040409286
|
||||
-246412800,0.564992368221283,0.564992368221283,0.5587146739681039,0.5587146739681039,176051,0,0.006277694253179034,0.015036766308185845,0.005860168875755847,0.0139001312654129,64.61516213847503,0.555575942993164,0.5571400225162506,0,0.014094025537006338,0.7558592592556475,0.014924834801444842,-0.001792145067170181,0,-0.010754923720956322
|
||||
-246326400,0.581732988357544,0.5827792709854409,0.5670849933787023,0.5670849933787023,325312,0,0.015694277606738583,0.029629816397279907,0.010969799024886371,0.015380716692620477,61.6663976529343,0.5622722029685974,0.5574364542961121,1,0.04358619511548034,1.2144909264863653,0.02919933608528749,-0.0017951580643221776,0,0.8478281861506041
|
||||
-246240000,0.5838254690170288,0.5859181104830491,0.5827792246605822,0.5827792246605822,340621,0,0.003138885822466908,0.0035969778255016127,0.011504578639640566,0.014971407295703527,65.00000474733271,0.5685498595237732,0.5582547724246979,1,0.04580470755542021,1.1300953231406148,0.0035905241718990183,0.005395671659224721,1,0.04705943832382453
|
||||
-246153600,0.5859186053276062,0.5869648505676718,0.5848723600875407,0.5848723600875407,137779,0,0.0020924904801310484,0.0035852089736707615,0.011789096653612606,0.01308120248548311,71.92998411909976,0.574618399143219,0.5600122392177582,1,0.04626035699868769,1.0533113995719028,0.0035787974318866895,-0.005366714629196689,-1,-0.5955064426444641
|
||||
-246067200,0.5838254690170288,0.5869643548394957,0.5838254690170288,0.5859181104830491,135866,0,0.003138885822466908,-0.0035724011689423074,0.013004449582553031,0.013166400812066202,71.9290495769479,0.5800589799880982,0.5615607380867005,1,0.03964794797831961,0.9378121182144027,-0.003578797431886679,0.0017983864522645998,0,-0.013884554249921965
|
||||
-245808000,0.5827791690826416,0.5859180546057622,0.5817328866376941,0.5838254133393109,162656,0,0.004185167968068115,-0.001792145067170181,0.013434129268375698,0.013192604487356652,75.92483387433842,0.5836163401603699,0.5630569219589233,1,0.03502709291824857,0.868540377709333,-0.0017937528803845801,-0.0017951580643221776,0,0.19717957399202146
|
||||
-245721600,0.581732988357544,0.5848719126178044,0.581732988357544,0.5827792709854409,225805,0,0.0031389242602604117,-0.0017951580643221776,0.0033536658412486897,0.012649259663219609,71.999161457105,0.5836163401603699,0.5648879140615464,1,0.029820206587323428,0.816654736749348,-0.0017967712915144282,-0.005395056896307926,-1,0.38823652370647266
|
||||
-245635200,0.5848718285560608,0.5859180728452996,0.5806866604577091,0.5817329047469478,135866,0,0.005231412387590506,0.005395671659224721,0.0038890900581566145,0.009222770895642718,76.46933327376098,0.5838256120681763,0.5657772421836853,1,0.033749300870917986,0.8402792715852764,0.005381167173799264,0.005424321418987299,1,-0.3983038462390115
|
||||
-245548800,0.581732988357544,0.5859181570574165,0.5785941022855684,0.5848719126178044,195187,0,0.007324054771848054,-0.005366714629196689,0.004090898855021219,0.009280668611764662,76.46941868868463,0.5829884886741639,0.5666142731904984,1,0.026682552633054746,0.7611764697032177,-0.005381167173799135,0.005395671659224721,1,0.43661401675179956
|
||||
-245462400,0.5827791690826416,0.5838254133393109,0.577547718669626,0.5817328866376941,114816,0,0.0062776946696849745,0.0017983864522645998,0.0040915760173007975,0.008928572480550952,85.10574600354164,0.5827792286872864,0.5677651792764664,1,0.026444013043047665,0.7534539319256531,0.0017967712915142999,0.0,0,-0.411764103142115
|
||||
-245203200,0.581732988357544,0.5848719126178044,0.5796404994783199,0.5827792709854409,130125,0,0.005231413139484498,-0.0017951580643221776,0.004091841359294374,0.008872629908942295,83.33291794990475,0.5825699925422668,0.5689683943986893,1,0.022434627449464672,0.7138403318184599,-0.0017967712915144282,-0.0017890407572120903,0,0.1333350752508362
|
||||
-245116800,0.5785945057868958,0.5817333940478752,0.5754557320908508,0.5817333940478752,135866,0,0.006277661957024394,-0.005395056896307926,0.004683114500221798,0.00876367282645687,76.5958529942584,0.5819422960281372,0.5702239364385605,1,0.014679442256695152,0.6432863084229787,-0.0054096627724734975,-0.02150523033974794,-1,0.04411911623438991
|
||||
-245030400,0.581732988357544,0.581732988357544,0.5765015752180594,0.5785941022855684,88026,0,0.005231413139484498,0.005424321418987299,0.004693014215861808,0.008634988151362766,76.59573952304476,0.5813145279884339,0.5713748395442962,1,0.018128465057209997,0.6778917976130636,0.005409662772473573,-0.0109891955853324,-1,-0.35211163940941814
|
||||
-244944000,0.5848718285560608,0.5859180728452996,0.582779187224466,0.582779187224466,166483,0,0.0031388856208336424,0.005395671659224721,0.004695928199333092,0.00855332584895867,77.55084720145653,0.5819422960281372,0.5727873027324677,1,0.021097754377487288,0.7095108593499139,0.005381167173799264,0.01481538293231166,1,0.8912934814713835
|
||||
-244857600,0.5848718285560608,0.5848718285560608,0.5806866604577091,0.5848718285560608,166483,0,0.004185168098351677,0.0,0.004696560152504442,0.008361247232169923,73.17077576336938,0.5823608279228211,0.5743567109107971,1,0.01830764304745247,0.6890202741491569,0.0,0.00364979893827444,0,0.0
|
||||
-244598400,0.5838254690170288,0.5848718661266026,0.5806866977594072,0.5848718661266026,116730,0,0.004185168367195402,-0.0017890407572120903,0.004695739934987651,0.007935170846231214,53.84598530230194,0.582779324054718,0.5761353999376297,1,0.013347676744445147,0.6524956504173158,-0.001790643001900115,-0.007273259852900393,-1,-0.2988473297573927
|
||||
-244512000,0.5712701678276062,0.581732994211869,0.5639462275469075,0.581732994211869,176051,0,0.017786766664961484,-0.02150523033974794,0.011102821847276284,0.009658384907228803,33.33349157745654,0.5813144564628601,0.5772863239049911,1,-0.010421442234573086,0.3614642178892601,-0.021739837423192392,0.01648410638915232,1,0.5081898398012508
|
||||
-244425600,0.564992368221283,0.5712700242861863,0.564992368221283,0.5712700242861863,168397,0,0.006277656064903381,-0.0109891955853324,0.010590684005347293,0.009989091791206071,24.999074261331756,0.5779663324356079,0.5779140830039978,1,-0.022359231523737533,0.1648554448502764,-0.011050022833994042,-0.010810986139635048,-1,-0.043476038193478006
|
||||
-244339200,0.5733629465103149,0.5744093824307596,0.5566224540229949,0.5649927957374162,223891,0,0.017786928407764635,0.01481538293231166,0.013510480495351088,0.010406228129567688,39.13060708889605,0.5756645560264587,0.5788034349679947,0,-0.00939954417855271,0.33371464616405144,0.014706707213349525,0.010929140930755477,1,0.32954268781510354
|
||||
-244252800,0.5754556059837341,0.5806870216250855,0.5691779454024157,0.5733629251622844,114816,0,0.011509076222669723,0.00364979893827444,0.013867326664260845,0.010415999835282158,42.553529329769766,0.5737813115119934,0.5797450870275498,0,-0.007398908830445694,0.3318367053405743,0.003643154584259358,-0.003603559401505474,0,-0.4871790290811153
|
||||
-243993600,0.5712701678276062,0.580686749761728,0.5712701678276062,0.5754553365695966,168397,0,0.00941658193412176,-0.007273259852900393,0.013948072713121202,0.010104357430204543,39.999977212729426,0.5712702512741089,0.5800589770078659,0,-0.015151578595671844,0.11686093840930258,-0.0072998389636148376,-0.005425042532840263,-1,0.46666840858416947
|
||||
-243907200,0.5806870460510254,0.5817332910350016,0.5691779693442394,0.5712704593121919,160742,0,0.012555321690762233,0.01648410638915232,0.012475125427702913,0.00840056499559758,46.428880246507916,0.5731536269187927,0.58000667989254,0,0.001173031590966378,0.5297184777947556,0.01634971834095957,0.0036363191919079885,0,-0.04545805447840523
|
||||
-243820800,0.5744092464447021,0.5859183203712232,0.5744092464447021,0.5806869057735793,116730,0,0.011509073926521007,-0.010810986139635048,0.01242411130860109,0.008683787294648469,44.06801754219958,0.5750370025634766,0.5795358687639236,0,-0.00884608286654609,0.2782515421488302,-0.010869849481905837,-0.014493402754485407,-1,-0.27380522825397224
|
||||
-243734400,0.5806870460510254,0.5848722169284539,0.5744093852056442,0.5744093852056442,221978,0,0.010462831722809707,0.010929140930755477,0.01162519673118609,0.009026452906845657,48.437842139275055,0.5765018224716186,0.5792742908000946,0,0.0024388364430596443,0.5631709205955348,0.01086984948190575,0.01103012247919044,1,0.9016362546046433
|
||||
-243648000,0.5785945057868958,0.5796409037093861,0.5744094869216062,0.5796409037093861,145434,0,0.005231416787779941,-0.003603559401505474,0.011909860604172536,0.009027030189526749,47.69259623786483,0.577129602432251,0.5790127426385879,0,-0.0007223275428900333,0.4809487139060756,-0.0036100678621396425,0.0,0,-0.34482696483435293
|
||||
-243388800,0.5754556059837341,0.5817332665650526,0.5733629251622844,0.5785943789919388,103334,0,0.008370341402768267,-0.005425042532840263,0.011608121835736488,0.009092594649362878,47.69230364730133,0.5779666900634766,0.5786465644836426,0,-0.0055145207727206325,0.3541091186532774,-0.005439811515205116,-0.0018183149632250428,0,-0.28947838882242116
|
||||
-243302400,0.5775481462478638,0.5806870722831147,0.5733629751813732,0.5754556561853846,110989,0,0.0073240971017414225,0.0036363191919079885,0.008461675392247462,0.009135802808704425,46.87527815854592,0.5773389101028442,0.5784373223781586,0,-0.0015372039387760994,0.4590137410484996,0.003629723767152716,-0.005464881765962604,-1,0.07408016722472754
|
||||
-243216000,0.569177508354187,0.5785939347132197,0.569177508354187,0.577547652388347,149261,0,0.009416426359032726,-0.014493402754485407,0.00960599358322231,0.009553682197825333,39.13063938872308,0.5762925624847413,0.5776526063680649,0,-0.014671617370800583,0.12007682241928751,-0.014599458098715098,-0.016482750007486224,-1,0.34482696483435293
|
||||
-243129600,0.5754556059837341,0.5754556059837341,0.5702241903423829,0.5702241903423829,101421,0,0.005231415641351211,0.01103012247919044,0.009639471849460981,0.009885526470516423,44.000367623602045,0.575246274471283,0.5773387372493743,0,-0.0032617441791833457,0.41457986336993524,0.010969734331562534,-0.0018625454802374541,0,-0.32051239104655604
|
||||
-242784000,0.5754556059837341,0.5806870216250855,0.5733629251622844,0.5754556059837341,141606,0,0.007324096462801077,0.0,0.009602857916543108,0.009871729257726546,44.594995107809105,0.5746184945106506,0.576972559094429,0,-0.0026291598912013825,0.4294102844092238,0.0,-0.05223870444552381,-1,0.39621971780992093
|
||||
-242697600,0.5744092464447021,0.5785942635579308,0.5723165660407582,0.5754554911759354,97594,0,0.0062776975171725535,-0.0018183149632250428,0.009323492173358146,0.009871879930204991,52.38104710915155,0.5744092226028442,0.576606371998787,0,-0.0038104427227686477,0.395962993667551,-0.0018199701045609393,0.025590070163716838,1,-0.31080603929212036
|
||||
-242611200,0.5712701678276062,0.5765015810197376,0.5670849990856159,0.5744090921194555,199014,0,0.009416581934121648,-0.005464881765962604,0.009243865178180757,0.009873682035412676,54.99989556254759,0.5731536269187927,0.5762401551008225,0,-0.008624854115462877,0.2693712456383812,-0.005479868859053846,0.028791159262153698,1,1.0392032297067444
|
||||
-242524800,0.5618540644645691,0.5681318802072448,0.5576690449110407,0.5681318802072448,166483,0,0.010462835296204065,-0.016482750007486224,0.009925668841861073,0.010373793291929004,40.984009196836396,0.5716889381408692,0.5752462089061737,0,-0.023280717428924347,-0.04827553438207071,-0.01662010191434678,0.014924767159220309,1,-0.16346086204990606
|
||||
-242438400,0.5608075857162476,0.5670852460929023,0.5566224151513081,0.5618538306221051,191360,0,0.010462830941594281,-0.0018625454802374541,0.006651266849898249,0.010239106426597507,38.333597594495515,0.5687593340873718,0.574042996764183,0,-0.023056480302942495,-0.01141344802213922,-0.0018642821748539428,-0.007352961196596897,-1,0.1494266681883436
|
||||
-242179200,0.5315117239952087,0.5639465015451374,0.5315117239952087,0.5608076139165179,621920,0,0.03243477754992863,-0.05223870444552381,0.021357337757959192,0.015166350261402558,27.381464245653206,0.5599705576896667,0.5713749915361405,0,-0.0697672599106226,-0.39712197145263145,-0.05365260637185489,-0.011110666854168838,-1,2.25
|
||||
-242092800,0.5451131463050842,0.5482520710727211,0.5273263769440639,0.5315115463204282,359757,0,0.02092569412865719,0.025590070163716838,0.028193663547892482,0.01660646980782847,30.68181744618346,0.5541113376617431,0.5694393754005432,0,-0.042719611860960516,-0.0005796916674250626,0.025268125159742704,-0.003744953556665709,0,-0.4215381399536918
|
||||
-242006400,0.5608075857162476,0.5629002282811701,0.5555761320571486,0.5555761320571486,273645,0,0.007324096224021526,0.028791159262153698,0.03329905762120654,0.017488052177517106,43.299031434336975,0.5520188212394714,0.5689162462949753,0,-0.014252819516993531,0.3350621641583735,0.028384481212112265,-0.013158428741338213,-1,-0.23936156905911488
|
||||
-241920000,0.569177508354187,0.5765014082517481,0.5576684027805876,0.560807173378658,199014,0,0.018833005471160513,0.014924767159220309,0.033138518641519926,0.017650821258536304,44.44425902738137,0.553483510017395,0.5691255033016205,0,9.137712554574406e-05,0.5010608309806067,0.014814488721252995,-0.0171427095685448,-1,-0.27272926601984326
|
||||
-241833600,0.564992368221283,0.564992368221283,0.554529506277709,0.564992368221283,110989,0,0.010462861943573931,-0.007352961196596897,0.03343129466821144,0.01740006358998208,43.56416376939443,0.554320466518402,0.5687069743871689,0,-0.006531669793374273,0.42416901708982263,-0.007380127466046303,-0.025193332445692107,-1,-0.4423055664425618
|
||||
-241574400,0.5587149262428284,0.5681315100627119,0.5587149262428284,0.5649926233305554,141606,0,0.009416583819883528,-0.011110666854168838,0.018486852666601678,0.01752338349152841,42.30762910360936,0.559761106967926,0.5678699404001236,0,-0.016121674182726697,0.3144142980900797,-0.01117285134963283,0.0019869709791697776,0,0.275856165926353
|
||||
-241488000,0.5566225647926331,0.5566225647926331,0.5482523741657356,0.5566225647926331,103334,0,0.008370190626897478,-0.003744953556665709,0.016961014000281976,0.017478077208782427,40.384643826499456,0.5620629906654357,0.5671375602483749,0,-0.01854046741523674,0.29058805449064123,-0.0037519834518120214,0.027778707150756476,1,-0.2702710337132608
|
||||
-241401600,0.5492982864379883,0.5587148692981254,0.5461595527789058,0.5566222274389145,145434,0,0.012555316519219595,-0.013158428741338213,0.011223340565739004,0.017157810417660017,40.776757022837,0.559761130809784,0.5655681222677231,0,-0.0287672433950108,0.18050125611310744,-0.013245767874723102,-0.009652996692776639,-1,0.40741672634370096
|
||||
-241315200,0.5398818254470825,0.5513909381995521,0.5367430528911861,0.5492984104328552,243027,0,0.014647885308366027,-0.0171427095685448,0.00517446215992446,0.01737369885934336,33.96209886369682,0.5539019942283631,0.5638417512178421,0,-0.042494061000286854,0.06492141771671973,-0.017291346961789376,-0.011695658358847671,-1,0.6710466603407732
|
||||
-241228800,0.526280403137207,0.5451134267976404,0.526280403137207,0.5398820101206807,214323,0,0.01883302366043338,-0.025193332445692107,0.00789565177285883,0.01772890304630231,30.251996647002187,0.5461596012115478,0.5611214190721512,0,-0.06209175902170316,-0.060986839991811335,-0.025516117334178603,-0.011834402635315655,-1,-0.11811033341974353
|
||||
-240969600,0.5273261070251465,0.5273261070251465,0.5032616913880003,0.5262798629519532,476486,0,0.02406441563714623,0.0019869709791697776,0.010771777781476772,0.01779198931942162,31.09203749785769,0.5398818373680114,0.5585579991340637,0,-0.055915217680771234,0.03187992787862238,0.001984999563332505,0.015968215256785934,1,1.2232144940113754
|
||||
-240883200,0.5419745445251465,0.5513909774276504,0.5336042037330748,0.5336042037330748,304262,0,0.017786773694575597,0.027778707150756476,0.020886186874680714,0.019192809271407412,39.23077563551699,0.5369522333145141,0.5568839460611343,0,-0.02677290599135196,0.27510946524494856,0.02739987844249569,-0.02947025682275861,-1,-0.3614460865586817
|
||||
-240796800,0.5367428660392761,0.5419743172938775,0.53046520854798,0.5419743172938775,189446,0,0.0115091087458975,-0.009652996692776639,0.02060695216300255,0.01918770038561266,40.475992400615254,0.5344411492347717,0.554843682050705,0,-0.03262327137713483,0.22419308115614664,-0.009699888876082597,-0.0607280586222011,-1,-0.3773589866628103
|
||||
-240710400,0.530465304851532,0.5356967188675883,0.5252338908354757,0.5356967188675883,164570,0,0.010462828032112625,-0.011695658358847671,0.019899676396604286,0.019113241296122862,38.93119480100422,0.5325578451156616,0.5529080718755722,0,-0.04059041306434541,0.1680681313660258,-0.011764590569931198,0.0,0,-0.13130918573102623
|
||||
-240624000,0.5241875648498535,0.5262800537548723,0.514770982894416,0.5262800537548723,183706,0,0.011509070860456272,-0.011834402635315655,0.016906291605232503,0.018890933331523946,46.78888917344059,0.5321392774581909,0.5503446698188782,0,-0.047528587816855095,0.11956253975498994,-0.011904986610323971,-0.008621261198081487,-1,0.11627878714224948
|
||||
-240364800,0.5325579047203064,0.533604187740883,0.5210488296822627,0.5241877551205909,118643,0,0.012555358058620292,0.015968215256785934,0.018536068064856078,0.019420445201384574,44.230813473869645,0.5331856369972229,0.5481997847557067,0,-0.028533174346959678,0.26379306233564476,0.015842064470852645,-0.12391236705005537,-1,-0.35416916159515743
|
||||
-240278400,0.5168632864952087,0.5304650323256545,0.5158170424177956,0.5304650323256545,153088,0,0.014647989907858872,-0.02947025682275861,0.016260397385734055,0.0202472174912811,29.807442123904664,0.5281633853912353,0.5453224867582321,0,-0.05218783555434192,0.07548417781987934,-0.029913229570931888,0.1464028807996216,1,0.2903247557799449
|
||||
-240192000,0.48547518253326416,0.514771224807859,0.48547518253326416,0.514771224807859,531981,0,0.029296042274594813,-0.0607280586222011,0.028181592959812613,0.023768843569723228,18.25399839584911,0.517909848690033,0.541032737493515,0,-0.10268797266804353,-0.18213619131415032,-0.06265023427091554,-0.04762052437029296,-1,2.475001306438127
|
||||
-240105600,0.48547518253326416,0.5022158654062971,0.48547518253326416,0.48547518253326416,507104,0,0.016740682873032986,0.0,0.029453397071440575,0.02373882270768854,18.852493080936355,0.5089118242263794,0.5372137933969497,0,-0.09630916312950233,-0.05719660905677905,0.0,-0.03408967689214981,-1,-0.0467629483007852
|
||||
-240019200,0.4812897741794586,0.49175263520590484,0.4624566166942009,0.4854747887499114,478400,0,0.029296018511703936,-0.008621261198081487,0.029634581014594534,0.023709819054311753,19.166620973643546,0.5003322660923004,0.5332379028201103,0,-0.09742017280826443,-0.006461292819568074,-0.008658639256128177,-0.04941260996074903,-1,-0.05660377358490565
|
||||
-239760000,0.42165201902389526,0.4729198152890382,0.4206057740970601,0.4729198152890382,685069,0,0.05231404119197808,-0.12391236705005537,0.05015747762186883,0.03402520217446286,13.142843191510138,0.47815108895301817,0.5277449175715446,0,-0.2010306400217804,-0.24106668908138687,-0.13228915543508202,0.04703055601070427,1,0.4320004180602006
|
||||
-239673600,0.48338308930397034,0.48547558090941795,0.4519945313838842,0.4519945313838842,1416064,0,0.03348104952553377,0.1464028807996216,0.10013884351460264,0.048496577504250175,36.12348449799602,0.4714550495147705,0.524658414721489,0,-0.07867085375811489,0.22005142319422616,0.1366291104383167,-0.007093320882082366,-1,1.06703850269097
|
||||
-239500800,0.46036413311958313,0.48442854951215364,0.46036413311958313,0.48338230540611693,757786,0,0.02406441639257051,-0.04762052437029296,0.09861831603516363,0.04871304119095165,34.166685161420034,0.4664328396320343,0.5196362420916557,0,-0.11406461707422233,0.11493814230773143,-0.04879171475944177,-0.002380450196709294,0,-0.4648645823917563
|
||||
-239414400,0.4446704685688019,0.47187384541933886,0.44467046856880194,0.46036476263243653,694637,0,0.02720337685053692,-0.03408967689214981,0.09921157430780654,0.04869440949569699,33.88436016547517,0.4582718968391418,0.5134108901023865,0,-0.13388968340713636,0.07126798710726298,-0.034684282300576456,0.0023861302609584634,0,-0.08333355327229586
|
||||
-239155200,0.42269814014434814,0.4499014931701892,0.4185129707213119,0.4446700791267582,621920,0,0.0313885224488773,-0.04941260996074903,0.10037343951282898,0.04942411437834119,30.916196846382306,0.44655357003211976,0.5062961786985397,0,-0.16511686651296598,0.013631928629428216,-0.05067518015504412,-0.026189224766719255,-1,-0.10468345337204898
|
||||
-239068800,0.44257786870002747,0.45617947740507137,0.4101430811975721,0.42269840643479484,801798,0,0.046036396207499275,0.04703055601070427,0.0847652351025144,0.05123410010331341,32.20986392718119,0.4507387399673462,0.5004893258213997,0,-0.11570967477943384,0.16609680513756803,0.04595811580896747,-0.02934142733446954,-1,0.2892301260612298
|
||||
-238982400,0.43943852186203003,0.44780885798005216,0.43002194146460393,0.4425774456416371,346362,0,0.017786916515448226,-0.007093320882082366,0.040220184538731316,0.051216829674328904,32.45292858920985,0.44194982647895814,0.4946301236748695,0,-0.11158156200190927,0.18128617213190107,-0.007118598086457171,-0.020150046977123415,-1,-0.5680183786938855
|
||||
-238896000,0.4383924603462219,0.4467626090123217,0.43734621563064374,0.43943870506180005,239200,0,0.009416393381677934,-0.002380450196709294,0.036909921455284905,0.05124433459173099,33.07702993344422,0.4375554919242859,0.4890848323702812,0,-0.10364740157323182,0.20543843336378145,-0.0023832879726294557,-0.02570721042739832,-1,-0.30939306274937783
|
||||
-238809600,0.43943852186203003,0.44780885798005216,0.43943852186203003,0.43943852186203003,181792,0,0.008370336118022126,0.0023861302609584634,0.034268132280251315,0.05128678886267318,34.117700675503144,0.4365091025829315,0.4840626671910286,0,-0.09218671125362421,0.2383831443953089,0.002383287972629553,0.021108000751256295,1,-0.24
|
||||
-238550400,0.42792996764183044,0.44257801749255904,0.42792996764183044,0.43943908965717265,260250,0,0.014648049850728595,-0.026189224766719255,0.027025873040419555,0.05130381143325382,30.62026847980495,0.43755546808242796,0.47914514541625974,0,-0.1068886500559989,0.20351493243215346,-0.026538270154807364,-0.049095246261565695,-1,0.4315811476852667
|
||||
-238464000,0.41537389159202576,0.4279291984834243,0.41432745689999384,0.4279291984834243,371238,0,0.013601741583430471,-0.02934142733446954,0.014354965100834147,0.051426970465625534,30.980470435558985,0.43211467266082765,0.47354753464460375,0,-0.12284647009351901,0.16842572871227685,-0.029780496968508114,0.0,0,0.4264668587896254
|
||||
-238377600,0.40700408816337585,0.4268835090042244,0.40595784305418303,0.4153744309200109,558771,0,0.02092566595004136,-0.020150046977123415,0.014307670191993936,0.0506541795971251,33.90566402866679,0.4256277859210968,0.4667990118265152,0,-0.12809565176492266,0.15361998419423598,-0.020355828200253504,-0.04619586124391173,-1,0.5051557222051621
|
||||
-238291200,0.39654114842414856,0.4206057746700045,0.39340241363936773,0.40700401777808076,575994,0,0.027203361030636752,-0.02570721042739832,0.012836501391943277,0.050725165967218065,32.51035998827355,0.4172575235366821,0.4597889259457588,0,-0.13755828805905512,0.12865958244992198,-0.026043415201646464,-0.017094055241929418,-1,0.030823002625404605
|
||||
-238204800,0.4049113392829895,0.409096508382488,0.35678233380407465,0.3965410010839926,2893363,0,0.052314174578413364,0.021108000751256295,0.021037198356927463,0.05132438006706739,35.22275180800864,0.410352087020874,0.4535112276673317,0,-0.10716358365440981,0.2024383605520811,0.020888312972472286,-0.020290437795057126,-1,4.023251978319219
|
||||
-237945600,0.38503211736679077,0.4038652920444127,0.3714305116371217,0.4038652920444127,1197914,0,0.032434780407290975,-0.049095246261565695,0.025759600540763806,0.05198311471903126,41.626827840940535,0.4017725169658661,0.4465534552931786,0,-0.13776925740278245,0.11551368535002733,-0.05034137525012381,0.041421164017329426,1,-0.5859786691127246
|
||||
-237859200,0.38503211736679077,0.3892172885108774,0.3798007011720664,0.38503211736679077,340621,0,0.009416587338811011,0.0,0.02660908604306961,0.051619220438358704,18.666645398680743,0.3957041621208191,0.43917716592550277,0,-0.12328748568839887,0.13197252571217968,0.0,-0.019886764790253864,-1,-0.7156548800665157
|
||||
-237772800,0.36724522709846497,0.39026341305960327,0.35992128487557684,0.38503199848018654,621920,0,0.03034212818402643,-0.04619586124391173,0.030229100515460204,0.05200270848029789,19.31040362458286,0.3877523899078369,0.4316962629556656,0,-0.14929718273660297,0.044004963142203424,-0.0472969338989852,0.02318821075853328,1,0.8258416245621967
|
||||
-237686400,0.3609675168991089,0.37456911651132946,0.3609675168991089,0.3672451753210345,495622,0,0.013601599612220572,-0.017094055241929418,0.030065973963375067,0.050917306620171215,20.58821373406289,0.38063766360282897,0.4254708796739578,0,-0.15160464759486814,0.05596021733787223,-0.017241845245861084,0.07082150231458817,1,-0.20307756624646256
|
||||
-237600000,0.3536433279514313,0.3756152601845542,0.3536433279514313,0.3609674199273114,524326,0,0.021971932233122937,-0.020290437795057126,0.020783084445162633,0.05083626678036181,22.950819672131146,0.37038406133651736,0.4188792869448662,0,-0.15573928104499812,0.05697250845062202,-0.02049911633933061,-0.007936188576825653,-1,0.057915104656371286
|
||||
-237340800,0.3682916462421417,0.3703841748765958,0.3442272041569422,0.3536436402944557,849638,0,0.026156970719653616,0.041421164017329426,0.032396757362468026,0.05235050448419051,19.658129437834177,0.36703596711158754,0.41322938054800035,0,-0.10874767482957015,0.18240120418065328,0.04058628419939622,0.026666496522216976,1,0.6204384295266685
|
||||
-237254400,0.3609675168991089,0.3714303445828016,0.35782859221742114,0.36829141990111386,392288,0,0.01360175236538047,-0.019886764790253864,0.03232345248136849,0.04534662714695328,19.00832769145734,0.36222304701805114,0.410195155441761,0,-0.12001028751701426,0.168898572338853,-0.020087167860065615,0.033766349450990996,1,-0.5382880709196152
|
||||
-237168000,0.36933770775794983,0.37143038810476586,0.35887487884828617,0.3609675591951022,273645,0,0.012555509256479691,0.02318821075853328,0.02890513950413675,0.028779242736888585,24.218732093196934,0.3626415431499481,0.40449288636446,0,-0.08691173514194839,0.2412027650188225,0.022923449283488193,0.002512031629555711,0,-0.3024385145607309
|
||||
-237081600,0.3954947590827942,0.39863368366292445,0.38084676261125877,0.38084676261125877,782662,0,0.017786921051665683,0.07082150231458817,0.03956521172450495,0.03313110664666735,36.18427093636122,0.3695469915866852,0.40124941766262057,0,-0.014341849050769295,0.454094697494599,0.06842611307001975,-0.04010021806338071,-1,1.8601363079902793
|
||||
-236995200,0.3923560380935669,0.40386530689849764,0.3871247744596663,0.3954949643024649,468832,0,0.016740532438831335,-0.007936188576825653,0.03678200847617867,0.032518091184247366,38.19439568010479,0.3772895336151123,0.3986336961388588,0,-0.01574793627858584,0.4470924930933933,-0.007967847734668947,0.03655317780513312,1,-0.40097768896407393
|
||||
-236736000,0.40281879901885986,0.4049114413786875,0.3913096861110869,0.3923559309144045,195187,0,0.013601755267600601,0.026666496522216976,0.03535039394956746,0.03157673438355779,45.7747480418747,0.38419496417045595,0.3976397290825844,0,0.013024528379556921,0.5444279830574572,0.02631714259224634,-0.005037583492464859,-1,-0.5836738959797966
|
||||
-236649600,0.41642051935195923,0.41746676406750494,0.4017725205098963,0.40281876522544197,357843,0,0.015694243557608623,0.033766349450990996,0.0281727105182953,0.030618901984569232,53.061178222708186,0.395285564661026,0.39633186161518097,0,0.050686456685340664,0.6821975622061967,0.0332087829027566,0.012658155736649856,1,0.833334187215337
|
||||
-236476800,0.41746658086776733,0.41746658086776733,0.40805000067725006,0.41642033661135225,267904,0,0.009416580190517276,0.002512031629555711,0.030698532389949875,0.0306200468368584,57.24629290321701,0.4049113392829895,0.3952332645654678,1,0.056253656500151905,0.7124914926256121,0.0025088817520602493,0.00250082621476011,0,-0.25133647996467723
|
||||
-236390400,0.4007260799407959,0.4080500191977887,0.398633591332992,0.4080500191977887,264077,0,0.00941642786479674,-0.04010021806338071,0.029513288411718352,0.03177673709993176,48.63009663089262,0.40595760345458987,0.39334994554519653,1,0.018752092072558346,0.5763032633642073,-0.04092639378569037,-0.002494587684483629,0,-0.014284967749641608
|
||||
-236131200,0.41537389159202576,0.41537389159202576,0.39758698406436294,0.4007258680696021,256422,0,0.01778690752766282,0.03655317780513312,0.032000470211650714,0.033032094969820465,60.28353063026537,0.4105611741542816,0.3921467140316963,1,0.05923083562661713,0.7606646212754888,0.035900956744186086,0.025001354771455153,1,-0.028987757358649224
|
||||
-236044800,0.4132814109325409,0.43525334216646167,0.4111889224296758,0.4153740903767958,717600,0,0.024064419736785858,-0.005037583492464859,0.03147470159895679,0.032562159245664184,59.44043909157999,0.41265369653701783,0.39141428619623186,1,0.05586695608076542,0.757189172377121,-0.005050314891173658,-0.03658657061958648,-1,1.7985118281582704
|
||||
-235958400,0.4185127913951874,0.420605470680754,0.39967978528506454,0.4132813795933338,359757,0,0.020925685395689453,0.012658155736649856,0.027961602349303685,0.0320039902077087,68.70218600622039,0.41307215094566346,0.3915712311863899,1,0.06880372729929474,0.8139636304400963,0.012578710996799317,-0.01772052384931211,-1,-0.4986663879598662
|
||||
-235872000,0.41955941915512085,0.4289760453842845,0.4164206837692029,0.41851317402648147,296608,0,0.01255536161508164,0.00250082621476011,0.02796148308426884,0.03161983570101389,72.22219459230219,0.41349071860313413,0.39219899773597716,1,0.06976157913988934,0.8094786745434034,0.0024977043526217585,-0.0025778749104827803,0,-0.1755323732408265
|
||||
-235785600,0.4185127913951874,0.4185127913951874,0.4101426470770468,0.4185127913951874,158829,0,0.008370144318140593,-0.002494587684483629,0.016910379823084232,0.030968897332186676,75.83321346358073,0.4170480608940125,0.3932975798845291,1,0.06411229766036541,0.7757304987302448,-0.002497704352621652,0.012919522734582856,1,-0.4645154547416118
|
||||
-235526400,0.4289761781692505,0.4321150672800178,0.41537456721529703,0.4185133035727771,204755,0,0.016740500064720776,0.025001354771455153,0.01235143267599611,0.03109965996228792,74.9999201961064,0.4197685182094574,0.39450082182884216,1,0.08738982134583684,0.8575528301453244,0.024693934317746948,-0.01530580139574611,-1,0.2891537439636338
|
||||
-235440000,0.4132814109325409,0.4321145712238861,0.41014267817824324,0.42897568571647654,246854,0,0.021971893045642843,-0.03658657061958648,0.023109078145955544,0.030099171822227516,70.16103671765799,0.4197685182094574,0.39591328650712965,1,0.04386850610303639,0.6783359658990575,-0.03727264531454631,-0.012952845973371763,-1,0.2056067006910698
|
||||
-235353600,0.4059578478336334,0.41223550950424515,0.40177267640604275,0.41223550950424515,271731,0,0.010462833098202395,-0.01772052384931211,0.023013293991447813,0.03048069151586769,64.22766148028964,0.4172575294971466,0.3969595730304718,1,0.022667987912388554,0.5925563512678145,-0.017879412186810786,0.013122823889953894,1,0.10077616728916694
|
||||
-235267200,0.4049113392829895,0.4226981074673435,0.40281869745080756,0.40595762201079205,304262,0,0.019879410016535926,-0.0025778749104827803,0.02266141050222983,0.0282475096751084,54.54543100516563,0.41432791352272036,0.39884287863969803,1,0.015215166092443999,0.5650547611161566,-0.0025812033514433135,0.00518195010988487,1,0.1197176619524456
|
||||
-235180800,0.41014260053634644,0.4132813326964675,0.40491115113985354,0.40491115113985354,176051,0,0.008370181556613954,0.012919522734582856,0.024389003701625275,0.02779051750221254,58.41565422405722,0.41265387535095216,0.4013016328215599,1,0.022030729485513323,0.6020917096690607,0.012836777623580879,0.02061756676945614,1,-0.42138354444524784
|
||||
-234921600,0.4038650393486023,0.4122352236463754,0.4017723978034509,0.410142734854357,252595,0,0.010462825842924461,-0.01530580139574611,0.018424202896250304,0.027556436564521405,50.515438791019555,0.4076316475868225,0.40381271839141847,1,0.00012956738309832794,0.5007064008329168,-0.015424144281986579,0.02020243652037168,1,0.4347831026236715
|
||||
-234835200,0.39863383769989014,0.40595778148328576,0.3975874399961656,0.40386525339396095,147347,0,0.008370341487120181,-0.012952845973371763,0.012605689515821503,0.02665099152633389,40.44956442145824,0.40470213294029234,0.4053298279643059,0,-0.01651985568899561,0.3991367752699697,-0.013037465586882548,0.0074253725976487495,1,-0.41666699657554584
|
||||
-234748800,0.4038650393486023,0.4038650393486023,0.38921704498022475,0.39863362642714006,193274,0,0.014647994368377548,0.013122823889953894,0.013630984600569357,0.02609056093189021,43.01086367269932,0.4042835712432861,0.40747470408678055,0,-0.008858622883764378,0.4301984680168244,0.013037465586882423,-0.02211248836756674,-1,0.311692806775842
|
||||
-234662400,0.4059578478336334,0.41014301926122415,0.4038653194023027,0.4038653194023027,158829,0,0.006277699858921459,0.00518195010988487,0.0138407003202675,0.025773149641485305,53.16473860786763,0.4044928729534149,0.40930571109056474,0,-0.008179370984126244,0.4103627963774691,0.005168570009849163,0.02010054710760678,1,-0.17821848774279003
|
||||
-234576000,0.4143277108669281,0.41642039059242564,0.4059575647891846,0.4059575647891846,189446,0,0.010462825803241038,0.02061756676945614,0.01583860850162018,0.021040370078108116,49.315140651349935,0.40532989501953126,0.4102473586797714,0,0.009946077898679961,0.6158447998789025,0.020407901697779604,-0.019704476352453537,-1,0.1927670639492789
|
||||
-234316800,0.42269814014434814,0.4247906675734291,0.41223531205748615,0.4143278012982757,265990,0,0.012555355515942945,0.02020243652037168,0.013907645246008323,0.02124283397138718,55.696255473649856,0.4090965151786804,0.41176446378231046,0,0.026553229634255215,0.8353741170932637,0.020001074781009986,-0.007538313492100435,-1,0.40404125713923755
|
||||
-234230400,0.42583683133125305,0.4310682425047116,0.42269790825063697,0.42269790825063697,386547,0,0.00837033425407463,0.0074253725976487495,0.007099916951095168,0.02058523845339675,54.545451182556405,0.414537113904953,0.41291536539793017,1,0.03129325526762705,0.882714437431566,0.007397940231869116,-0.012658155736649856,-1,0.45323884356554767
|
||||
-234144000,0.41642051935195923,0.4226981785867078,0.4143278389793934,0.4226981785867078,177965,0,0.00837033960731437,-0.02211248836756674,0.017378503939188557,0.019970344260142395,48.23526809770064,0.4170482099056244,0.41291536539793017,1,0.00848879515697143,0.6038174020308149,-0.022360634343230018,0.020513388695071688,1,-0.5396032047849291
|
||||
-234057600,0.42479079961776733,0.4258371973165959,0.4143279300902773,0.41642061092302457,156915,0,0.01150926722631862,0.02010054710760678,0.01839732792694406,0.02045924933237446,53.26103749461667,0.42081480026245116,0.41328157633543017,1,0.027848382171761665,0.8269750556954898,0.01990119803361787,-0.005025709319723237,-1,-0.11828168460090471
|
||||
-233971200,0.41642051935195923,0.42583710367481936,0.41642051935195923,0.42479070620609405,189446,0,0.009416584322860133,-0.019704476352453537,0.020841942170910673,0.01873476811277725,43.333141328580055,0.4212333619594574,0.4140662983059883,1,0.0056856137666900786,0.5708488545120901,-0.019901198033617843,-0.002525295573877928,0,0.20731606283656756
|
||||
-233712000,0.4132814109325409,0.419559067382526,0.41014267817824324,0.41642033462822836,118643,0,0.009416389204282782,-0.007538313492100435,0.018013319197958334,0.016977679218325648,50.0,0.41935001611709594,0.41396167427301406,1,-0.0016433002926365958,0.4795176319253947,-0.007566870180617888,-0.005062800781370891,-1,-0.3737371071439882
|
||||
-233625600,0.4080500304698944,0.41328144307531767,0.40805003046989435,0.41328144307531767,118643,0,0.005231412605423313,-0.012658155736649856,0.016933528755413877,0.01717829892363404,51.315558680491016,0.41579265594482423,0.41370010524988177,1,-0.013657416829939262,0.3319898287589721,-0.012738952741475228,0.01526677666471099,1,0.0
|
||||
-233539200,0.41642051935195923,0.4185130087830506,0.40281876522544197,0.40805017974464486,133952,0,0.015694243557608623,0.020513388695071688,0.018908006928626115,0.017579987635647037,56.62659202662003,0.41579265594482423,0.41359549164772036,1,0.006830412229553717,0.5845090893071809,0.02030582292209301,0.01754444328160476,1,0.1290341613074517
|
||||
-233452800,0.4143277108669281,0.4185128793765076,0.4101427332987641,0.41642039059242564,181792,0,0.008370146077743501,-0.005025709319723237,0.015265785451760395,0.017601853456688497,52.499993769108805,0.4137000381946564,0.4133339062333107,1,0.0024043627165115655,0.530145429760936,-0.005038380669649051,0.0024624632040688432,0,0.3571428571428572
|
||||
-233366400,0.4132814109325409,0.41642033462822836,0.40595751023112325,0.41432765518397346,147347,0,0.010462824397105108,-0.002525295573877928,0.012835718388753319,0.017602039809705823,55.99989365964631,0.4130722165107727,0.4130723372101784,0,0.0005061431219881563,0.5064123159252306,-0.0025284895109688728,0.039313267751966086,1,-0.18947478436894916
|
||||
-233107200,0.4111890494823456,0.4122352940570556,0.4049113529043467,0.4122352940570556,166483,0,0.0073239411527089016,-0.005062800781370891,0.012587355194820354,0.01656445914412382,58.333217946673955,0.41265374422073364,0.41218298077583315,1,-0.0024113836326205007,0.4657011626732756,-0.005075660178652574,0.023639150573831147,1,0.12987030614807216
|
||||
-233020800,0.41746658086776733,0.42060550457840334,0.40805000067725006,0.41118892438788607,323398,0,0.012555503901153287,0.01526677666471099,0.012286215496743724,0.014830791815939999,58.90402139499821,0.41453705430030824,0.41239223927259444,1,0.012304648613473912,0.6728816427702226,0.015151412111330594,-0.003245140068733998,0,0.9425286665905828
|
||||
-232934400,0.42479079961776733,0.4300222152873607,0.4153743659774092,0.4174668558686399,327226,0,0.0146478493099515,0.01754444328160476,0.011363996598859949,0.014631978769976284,61.538377266258614,0.41621111035346986,0.41333388686180117,1,0.02771830019297883,0.873451659756221,0.017392316281557647,0.03255949477863562,1,0.011836807896152823
|
||||
-232848000,0.42583683133125305,0.4289756016587872,0.41851274112359965,0.4247904345317499,235373,0,0.010462860535187524,0.0024624632040688432,0.010315721146290483,0.014585577638859058,57.746470397555676,0.41851293444633486,0.4143801614642143,1,0.02764772769660717,0.8632680156862327,0.0024594363096122843,-0.031532802655227066,-1,-0.2807020224554284
|
||||
-232761600,0.44257786870002747,0.4467628498180501,0.4258373332148892,0.4258373332148892,784576,0,0.020925516603160887,0.039313267751966086,0.01696606294860214,0.016618534680553406,62.02546022124368,0.42437222599983215,0.4160019248723984,1,0.06388418475655078,1.1634082263279741,0.03856017557709839,0.004651280971636362,0,2.3333305009495566
|
||||
-232502400,0.4530400335788727,0.4593176869162552,0.4457159455675138,0.4457159455675138,434387,0,0.01360174134874137,0.023639150573831147,0.013431443926205466,0.016525744949550735,65.116198193054,0.43274242281913755,0.4184606745839119,1,0.08263466819037202,1.1869134913452675,0.023364072494915386,0.009259756204029523,1,-0.4463417183293906
|
||||
-232416000,0.4515698552131653,0.4568206688201755,0.44946960643017003,0.4547204200371803,216237,0,0.007351062390005492,-0.003245140068733998,0.01701377648046388,0.01607970416118095,71.42359433410472,0.4395630776882172,0.42110747545957566,1,0.07233872949024356,1.0554018893361743,-0.003250416955016198,-0.027523097606323543,-1,-0.5022019535575419
|
||||
-232329600,0.4662727415561676,0.46942311832231054,0.45262049562371176,0.45262049562371176,466918,0,0.01680262269859878,0.03255949477863562,0.018616740993076565,0.01706605071219212,73.4714581006962,0.4478594660758972,0.42422786056995393,1,0.09910919318152756,1.1403073553805947,0.03204066625459611,-0.007075146356431472,-1,1.159288188422888
|
||||
-232243200,0.4515698552131653,0.4662722099726027,0.4505197308216677,0.4662722099726027,340621,0,0.015752479150935028,-0.031532802655227066,0.029289881815884943,0.019157735510909407,68.55837642687023,0.4530060708522797,0.4265084609389305,1,0.05875943051414212,0.8706169544690683,-0.032040666254596166,0.004751250131192819,0,-0.27049074998179556
|
||||
-232156800,0.4536702334880829,0.4557706360127577,0.44946969674811804,0.45156994595314437,156915,0,0.006300939264639649,0.004651280971636362,0.025047272637751146,0.01882491896369556,71.56125406891461,0.45522454380989075,0.42847558706998823,1,0.058800657910013765,0.8561735446563069,0.004640497190299998,0.02127526109776179,1,-0.5393267003502427
|
||||
-231897600,0.45787110924720764,0.4589212342756217,0.45472069583203784,0.45472069583203784,122470,0,0.004200538443583868,0.009259756204029523,0.023157090969357908,0.018507398020339773,76.89247501409199,0.45619075894355776,0.43023423552513124,1,0.06423680739479898,0.8676369680197938,0.009217147490446716,-0.009258048222493764,-1,-0.2195137494822037
|
||||
-231811200,0.44526907801628113,0.45892112166491045,0.44421895324554816,0.4578709968941775,177965,0,0.014702168419362283,-0.027523097606323543,0.026868468722324186,0.019789012195531017,64.891624635131,0.4549306035041809,0.43120584785938265,1,0.0326137278209746,0.6845105025252959,-0.027908954523592915,-0.014019095308457907,-1,0.4531313791132523
|
||||
-231724800,0.44211873412132263,0.4442191763673873,0.4368679159806923,0.4442191763673873,239200,0,0.00735126038669498,-0.007075146356431472,0.01846542623059159,0.019080894878780803,64.19078993822787,0.4500998020172119,0.4324907585978508,1,0.022261690757707786,0.6275508538436528,-0.007100293889599014,-0.011848933877048662,-1,0.3440845109993538
|
||||
-231638400,0.44421935081481934,0.4473697279465558,0.4410687820333201,0.4421189077438989,101421,0,0.006300945913235656,0.004751250131192819,0.014889086039350626,0.01866834846176533,65.62939908780515,0.44862970113754275,0.4334621861577034,1,0.024816846776115842,0.641888848983311,0.004739998567541788,-0.0143889861540214,-1,-0.5759991638795987
|
||||
-231552000,0.4536702334880829,0.45472051141024455,0.44211844123140454,0.4442188820859915,214323,0,0.012602070178840019,0.02127526109776179,0.018496203124548135,0.018360498052461687,69.97571688987846,0.44862970113754275,0.43532467186450957,1,0.0421422510812417,0.7411247133227823,0.02105210235520351,0.002434498706832322,0,1.1132014079924275
|
||||
-231206400,0.4494701325893402,0.4599716187770031,0.44631956407720363,0.45367067340247635,193274,0,0.013652054699799465,-0.009258048222493764,0.01806184479434039,0.018423528361250024,65.34874314112523,0.44694950580596926,0.4371341079473495,1,0.028220229027464683,0.6664472714736439,-0.009301170308194488,-0.009708834831677948,-1,-0.09821157785212042
|
||||
-231120000,0.443168967962265,0.44631953627816834,0.436868022980193,0.44631953627816834,177965,0,0.009451513297975334,-0.014019095308457907,0.014175443789431435,0.018492103860005226,58.90142750449857,0.446529483795166,0.4388900548219681,1,0.009749396445158931,0.5620245830147549,-0.014118291005631813,0.002450587777290014,0,-0.07920879166364847
|
||||
-231033600,0.43791788816452026,0.4389682047451619,0.428466533805786,0.4389682047451619,380806,0,0.010501670939375929,-0.011848933877048662,0.01484330165291775,0.01841430973536449,55.622410696329375,0.44568931460380556,0.4399649232625961,1,-0.004652723410075277,0.4688388778036464,-0.011919691988264392,0.012225205730343136,1,1.13978029387801
|
||||
-230947200,0.4316166937351227,0.4368675069596328,0.4305665694201223,0.4368675069596328,141606,0,0.006300937539510498,-0.0143889861540214,0.015189026407696322,0.018736742213230885,44.349722491237216,0.44316878318786623,0.44082937240600584,1,-0.020898513682518938,0.3507086380944656,-0.014493511502759458,0.033816770508424465,1,-0.6281413633188553
|
||||
-230688000,0.43266746401786804,0.43266746401786804,0.4232159511220725,0.4316171851873822,141606,0,0.009451512895795544,0.002434498706832322,0.0069335689449547145,0.018703532372724953,38.369881294834286,0.43896822929382323,0.4417986750602722,0,-0.020668262622468125,0.33881445487853745,0.0024315401156735383,0.0,0,0.0
|
||||
-230601600,0.4284667670726776,0.4347677500687448,0.4263663627474319,0.43266746073333406,181792,0,0.008401387321312903,-0.009708834831677948,0.006933930580257529,0.018830309746858544,37.209845639282506,0.43476755619049073,0.44266256093978884,0,-0.03206910888730463,0.21928588460302126,-0.009756272863632509,-0.007009017210575896,-1,0.28378741013798847
|
||||
-230515200,0.4295167624950409,0.4305669260096737,0.42531607010657607,0.4284666373103414,130125,0,0.005250855903097651,0.002450587777290014,0.008072613366610566,0.018579636167574767,26.027568201326076,0.4320371150970459,0.4432650700211525,0,-0.031015995745966474,0.2043317370294227,0.00244758998363505,0.0,0,-0.28420942615736666
|
||||
-230428800,0.4347676932811737,0.4358178186467435,0.42531614336170565,0.42951683647368477,135866,0,0.01050167528503787,0.012225205730343136,0.010641042056826961,0.018376146095806817,37.50044895662481,0.4314070761203766,0.4437639147043228,0,-0.020272539350440932,0.29529550654770476,0.012151081414628472,-0.00941265585679818,-1,0.04411911623438991
|
||||
-230342400,0.4494701325893402,0.4526205094517304,0.4368680501905403,0.4368680501905403,160742,0,0.015752459261190066,0.033816770508424465,0.01627448001371208,0.0197637134408362,47.36879052337418,0.4349777638912201,0.44494557976722715,0,0.01016877799860394,0.6108960135828205,0.0332575558463512,-0.030878508407424232,-1,0.18309216433839226
|
||||
-230083200,0.4494701325893402,0.4515703838309337,0.44526943845640693,0.4494701325893402,189446,0,0.006300945374526745,0.0,0.016526198497553848,0.017808648697614008,44.4446984501361,0.4383382976055145,0.4452901929616928,0,0.009387001316705446,0.6021274593980879,0.0,-0.039216290454747726,-1,0.17857187293924426
|
||||
-229996800,0.4463197886943817,0.452620737239956,0.4431692185966731,0.4494703587920903,166483,0,0.009451518643282919,-0.007009017210575896,0.015842856389935597,0.017053706204275244,50.79406120775863,0.4419089019298553,0.4449541807174683,0,0.0030690979792828976,0.5338914891310376,-0.007033695754202908,0.010204335753153382,1,-0.12121132143196478
|
||||
-229910400,0.4463197886943817,0.4484200409929588,0.4431692185966731,0.4463197886943817,118643,0,0.005250822396285715,0.0,0.016104669873421105,0.01704274152020301,53.333629731652316,0.4452695071697235,0.4446916773915291,1,0.003661213792897522,0.5408675753373343,0.0,-0.02272708053875483,-1,-0.28735666704708585
|
||||
-229824000,0.44211873412132263,0.4494699945080176,0.44211873412132263,0.44631942696376437,187533,0,0.00735126038669498,-0.00941265585679818,0.017469834695550086,0.015254882826507547,48.386887109789626,0.4467397153377533,0.4434839770197868,1,-0.0030784492094587668,0.46018749454670627,-0.00945723486034797,-0.0025845191665067047,0,0.5806495115598898
|
||||
-229737600,0.4284667670726776,0.441068694734867,0.4263663627474319,0.441068694734867,244941,0,0.014702331987435091,-0.030878508407424232,0.012686067756541623,0.015190010442139808,31.818760330152088,0.44253904223442075,0.44232882261276246,1,-0.031338802337600336,0.11379466982333775,-0.03136529663006391,0.005182505949063332,1,0.3061221225064388
|
||||
-229478400,0.41166388988494873,0.4242657702112829,0.41166388988494873,0.4242657702112829,342534,0,0.012601880326334192,-0.039216290454747726,0.016823377693019777,0.017142726520305594,26.923355387025012,0.4349777936935425,0.4402285054326057,0,-0.06488588356991332,-0.15573932635070528,-0.04000596345455268,-0.028350569754184596,-1,0.3984347250970641
|
||||
-229392000,0.41586464643478394,0.41691496348708584,0.4022125945716909,0.4116641448244029,208582,0,0.014702368915394948,0.010204335753153382,0.020757780572968735,0.017184478970055102,32.89505275535012,0.42888676524162295,0.4381281822919846,0,-0.05081511931219118,0.009596489176831577,0.010152623017612947,0.013261900229265544,1,-0.3910619091827381
|
||||
-229305600,0.4064132571220398,0.41901518263030035,0.40536313179879496,0.41586461501087374,183706,0,0.013652050831505391,-0.02272708053875483,0.019408341908731547,0.016879384585796284,31.250461147277676,0.42090545892715453,0.4361853912472725,0,-0.06825568834412188,-0.06248732354479361,-0.022989321566699764,-0.002617976853637516,0,-0.11926244834165944
|
||||
-229219200,0.4053628742694855,0.4148142261538225,0.4032624716376397,0.4064129989255802,260250,0,0.011551754516182844,-0.0025845191665067047,0.02041353603762077,0.016872061741437,33.3337873855221,0.4135542869567871,0.4343475982546806,0,-0.0667316317660398,0.011116487834610184,-0.0025878648019836696,0.007873950060541368,1,0.41666575941994277
|
||||
-229132800,0.4074636697769165,0.41061420099169926,0.40326297426719343,0.40536337951699775,170310,0,0.007351226724505833,0.005182505949063332,0.02067084706499204,0.016884367656307984,34.210845670122225,0.4093536674976349,0.4325098142027855,0,-0.05790884646637384,0.10322603425283047,0.0051691229833926286,0.015624131639594419,1,-0.34559077809798266
|
||||
-228873600,0.39591184258461,0.41061418030296093,0.39591184258461,0.40746364924691725,225805,0,0.014702337718350944,-0.028350569754184596,0.017065619147971636,0.016591605940882884,31.325638581437673,0.4062032580375671,0.42962189465761186,0,-0.07846446489852943,0.002707208147964591,-0.028760208049597457,0.005128991748469147,1,0.3258469849098702
|
||||
-228787200,0.40116238594055176,0.4043127998246674,0.39906198225136347,0.39906198225136347,271731,0,0.005250817573303923,0.013261900229265544,0.017899950628577715,0.017160036841939234,34.48296333216014,0.4032628059387207,0.4272065073251724,0,-0.06096377498481531,0.12591809461880443,0.013174731070454868,0.00510173350781451,1,0.20338787892207888
|
||||
-228700800,0.4001121520996094,0.40641309314652946,0.3990618738803667,0.4011622769991603,126298,0,0.007351219266162778,-0.002617976853637516,0.015607453300912153,0.017052165455997793,30.12063558057261,0.40200258493423463,0.42505366653203963,0,-0.05867850673051478,0.15321227638624915,-0.002621409747841278,-0.002537450790028206,0,-0.5352094534668477
|
||||
-228614400,0.4032626152038574,0.4032626152038574,0.3969616350445818,0.4001122017840751,135866,0,0.006300980159275604,0.007873950060541368,0.016363214913782495,0.01720234053891846,19.444579110565087,0.40158253312110903,0.4233209028840065,0,-0.047383173246337895,0.2266019228015501,0.007843112286717158,-0.00763467811059626,-1,0.07575733582479538
|
||||
-228528000,0.40956324338912964,0.40956324338912964,0.4032623063850477,0.4032623063850477,105248,0,0.0063009370040819634,0.015624131639594419,0.017929661460234864,0.017551367247274484,25.640764431320775,0.40200244784355166,0.42221823036670686,0,-0.02997262095145925,0.32879293218126604,0.015503331534585014,-0.007691086341205189,-1,-0.2253543932992802
|
||||
-228268800,0.41166388988494873,0.41481426414173833,0.410613726802768,0.410613726802768,91853,0,0.004200537338970356,0.005128991748469147,0.00718868377358694,0.017601278978269234,28.571375921330656,0.4051528573036194,0.4211680516600609,0,-0.022566198308848207,0.3712227407247134,0.0051158832733595155,0.02067065357499609,1,-0.12727082699908787
|
||||
-228182400,0.413764089345932,0.41481421397118573,0.41061367714025787,0.41166384009542456,84198,0,0.004200536830927859,0.00510173350781451,0.0065521727895646,0.01758634972804526,30.37956722496787,0.4076731979846954,0.4204329177737236,0,-0.015861813254548163,0.40957551751576216,0.005088763758854201,-0.020252030860880676,-1,-0.08333968406040082
|
||||
-228096000,0.4127141833305359,0.4211153764321438,0.4127141833305359,0.4137643085120286,231546,0,0.008401193101607918,-0.002537450790028206,0.0065250543446007765,0.01756128880297813,31.57900829217492,0.41019360423088075,0.41959278881549833,0,-0.016393526457832097,0.4064624026226819,-0.0025406755745939554,-0.007752310887920388,-1,1.7500178151500037
|
||||
-228009600,0.40956324338912964,0.4127138077159166,0.40851311916336464,0.4127138077159166,103334,0,0.004200688552551957,-0.00763467811059626,0.008831550055364066,0.017283059052456844,36.36337446914084,0.41145372986793516,0.41833256632089616,0,-0.020962563371267007,0.3792239404186776,-0.007663971457619709,0.0026039726712570044,0,-0.553721506741641
|
||||
-227923200,0.4064132571220398,0.4095636714217127,0.40536313179879496,0.4095636714217127,101421,0,0.0042005396229177205,-0.007691086341205189,0.006414106249837767,0.014989739867332317,45.28318758446687,0.4108237326145172,0.4161797225475311,0,-0.023466942035783367,0.35436249935354575,-0.007720815275727255,-0.023375771008595225,-1,-0.018512783788491638
|
||||
-227664000,0.4148140847682953,0.4169145250141396,0.40536273610536266,0.4064128604035323,112902,0,0.01155178890877695,0.02067065357499609,0.011881418051229458,0.016023373968769287,49.122466364654294,0.4114537715911865,0.4144469201564789,0,0.000885914682820621,0.5061931405480978,0.0204599147403503,-0.02127688319341714,-1,0.1132014079924275
|
||||
-227577600,0.4064132571220398,0.4169149319838107,0.40536313179879496,0.4148144896876289,135866,0,0.011551800185015726,-0.020252030860880676,0.015003646948226177,0.016427976980585575,50.0,0.4099836051464081,0.41245159357786176,0,-0.014640109408819768,0.3826258994105007,-0.02045991474035028,-0.0380439455680226,-1,0.203397636888629
|
||||
-227491200,0.4032626152038574,0.40746330697330224,0.39801176007453337,0.406413143613423,155002,0,0.00945154689876887,-0.007752310887920388,0.015101903502641623,0.0164065939705983,48.2758890646552,0.4080932915210724,0.41029873490333557,0,-0.017148772591599193,0.32801426288093455,-0.007782516258857834,0.08474587141150991,1,0.14084465576376726
|
||||
-227404800,0.40431270003318787,0.40851339138495996,0.4032625751076498,0.4032625751076498,158829,0,0.005250816277310166,0.0026039726712570044,0.015269227357684942,0.016453771155421914,47.36795199186654,0.40704318284988406,0.40840843319892883,0,-0.01002852251032238,0.354378680362391,0.0026005882085131655,-0.03906239838335679,-1,0.024690003999948473
|
||||
-227318400,0.3948615789413452,0.40431293883299924,0.39381126174583747,0.40431293883299924,290867,0,0.010501677087161765,-0.023375771008595225,0.017977365399467263,0.015892569272130383,49.09079181942255,0.40473284721374514,0.4067281737923622,0,-0.029175738529180317,-0.001792041770418603,-0.023653318127816216,-0.016260333923339698,-1,0.8313217359550209
|
||||
-227059200,0.38646015524864197,0.3896107232419937,0.3822594618074112,0.3896107232419937,399942,0,0.007351261434582479,-0.02127688319341714,0.011120599874973738,0.014215405016805833,37.93077464695696,0.3990620613098145,0.4054679870605469,0,-0.04687874855349938,-0.14894780738207256,-0.021506498918628575,0.03856853161499285,1,0.3749995702503206
|
||||
-226972800,0.3717576861381531,0.3822593200211437,0.370707522749854,0.3822593200211437,426733,0,0.011551797271289688,-0.0380439455680226,0.015572464439303636,0.015846743114177216,30.985512969737286,0.3921309471130371,0.40326263904571535,0,-0.07812514688223016,-0.27750039764044154,-0.038786510823501354,0.021219010256765758,1,0.06698721314590617
|
||||
-226886400,0.4032626152038574,0.4032626152038574,0.3696573876877207,0.37175767607755156,530067,0,0.033605227516136704,0.08474587141150991,0.04906828680904116,0.025167651469424023,50.0,0.3921309471130371,0.4031051069498062,0,0.0003907374313438794,0.5038975256677045,0.08134573966143309,-0.018181646636051485,-1,0.24215141552211805
|
||||
-226800000,0.38751021027565,0.3938111534675903,0.3801591418266663,0.3938111534675903,199014,0,0.013652011640924,-0.03906239838335679,0.052154131192,0.02663638766688418,40.18699917329529,0.38877044916152953,0.40221247375011443,0,-0.036553474678158726,0.1553971147659216,-0.039845802799804195,0.02910136486808912,1,-0.6245493494218655
|
||||
-226713600,0.3812091648578644,0.3896105479606391,0.3801590398824247,0.38751010636013106,128211,0,0.009451508078214377,-0.016260333923339698,0.05170446144072809,0.026766684561070512,36.93679367110906,0.3860399663448334,0.4008997485041618,0,-0.04911597904405529,0.0743001210685985,-0.016393983929169118,0.015422565558706802,1,-0.35576894087853117
|
||||
-226454400,0.39591184258461,0.4043130798609136,0.39066102137447034,0.39066102137447034,241114,0,0.013652058486443241,0.03856853161499285,0.054147096701994954,0.027599574157213487,43.0895929631337,0.387930303812027,0.4008997485041618,0,-0.012441778619624255,0.3921641438254825,0.037843353119642556,0.0,0,0.8806030683794681
|
||||
-226368000,0.40431270003318787,0.4064131032039598,0.3927609042231055,0.39591147064933946,210496,0,0.013652198980854291,0.021219010256765758,0.04826541477913416,0.02785164310166465,46.92298977113244,0.39444130659103394,0.4010572642087936,0,0.008117134671071335,0.5702277696095476,0.020997021817843717,0.005063923739107468,1,-0.126985575288038
|
||||
-226281600,0.39696162939071655,0.4043127344752431,0.3959115043757218,0.4043127344752431,352102,0,0.008401230099521262,-0.018181646636051485,0.03170563595216096,0.028166393566852417,45.522462658245004,0.3931811094284058,0.400899738073349,0,-0.009823175992975886,0.41530024458285986,-0.018348963945671645,-0.020150207282905175,-1,0.6727253724536333
|
||||
-226195200,0.40851375460624695,0.4095638804654821,0.3938113792976274,0.39696194852512273,451610,0,0.015752501167854704,0.02910136486808912,0.02639481314574807,0.028870908353629363,50.70428587045521,0.3973818182945251,0.40116229504346845,0,0.018325400102674028,0.656565254358314,0.028685960132558867,0.03341876864451865,1,0.28261128877427555
|
||||
-226108800,0.4148140847682953,0.4221653381544928,0.404312458487589,0.40851314732977256,474573,0,0.017852879666903798,0.015422565558706802,0.021618429021781984,0.028865582125300115,50.0,0.40410280227661133,0.40142483711242677,1,0.033354307999927224,0.7791192300505965,0.015304846603807785,0.01990091018813067,1,0.05084696973051961
|
||||
-225849600,0.4148140847682953,0.41901477361047884,0.40956327162794215,0.4148140847682953,271731,0,0.009451501982536692,0.0,0.018795932392265662,0.028849978884006,53.03013852952527,0.4078832507133484,0.4015823468565941,1,0.03294900290133085,0.772177956710833,0.0,-0.02439158771380956,-1,-0.4274200175736925
|
||||
-225676800,0.4169146716594696,0.41901492099454934,0.4064130033550114,0.4148142306748174,677414,0,0.01260191763953794,0.005063923739107468,0.017632998818623933,0.02884968121073526,54.96181750868316,0.4104036450386047,0.40173987597227095,1,0.03777268972982428,0.8074613348746311,0.005051145198836333,0.02500141184376581,1,1.4929581093066306
|
||||
-225590400,0.40851375460624695,0.417965270638943,0.4053633386985836,0.41691514477970787,493709,0,0.012601931940359412,-0.020150207282905175,0.018324192560493495,0.029222247700868686,51.44941961111086,0.4127140700817108,0.4015298545360565,1,0.01739322740586724,0.6433848843569389,-0.020355991802644236,0.012194963259926972,1,-0.2711857150870811
|
||||
-225504000,0.42216578125953674,0.42531615746067924,0.4074634507050863,0.4085135761054671,396115,0,0.017852706755592918,0.03341876864451865,0.019738687356964144,0.030095019971866848,59.154934925584556,0.4154444754123688,0.4021599814295769,1,0.0497458741639194,0.8871703383449274,0.03287249873864831,0.007228234638932962,1,-0.19767514872121028
|
||||
-225244800,0.43056726455688477,0.4316173905672792,0.4263665688654893,0.4263665688654893,292781,0,0.005250821701789921,0.01990091018813067,0.020323483941912673,0.030262320703902106,64.78884273447734,0.41859511137008665,0.4033676818013191,1,0.06743123949370577,0.9727870452366755,0.019705475702734787,-0.0033613208042266862,0,-0.2608686871236888
|
||||
-225158400,0.4200650453567505,0.43581752863703027,0.4200650453567505,0.4305667136535752,962541,0,0.015752483280279783,-0.02439158771380956,0.025005823946747944,0.03057822550082987,66.66659811902531,0.41964530348777773,0.40363022983074187,1,0.040717504070248545,0.780495880297998,-0.024693989997974924,0.02650523143371175,1,2.287580136689198
|
||||
Date,Close,High,Low,Open,Volume,Symbol,Spread,Return,Volatility_5,Volatility_20,RSI,Moving_Average_5,Moving_Average_20,Trend_Signal,Dist_From_MA20,BB_Pos,Log_Return,Target_Close,Volume_Chg
|
||||
-249955200,0.5309498310089111,0.5340792783727715,0.526777297978745,0.526777297978745,170310,0,0.007301980394026519,0.007920469434908428,0.010200630749928278,0.011124639731917471,46.96961039455754,0.5324102640151978,0.5365306735038757,0,-0.010401721225961391,0.3491926788505075,0.007889267166327313,0.0017893465343254977,-0.21239195882295814
|
||||
-249868800,0.5507695078849792,0.5591144254364069,0.5340795204901007,0.5340795204901007,327226,0,0.025034904946306225,0.037328718682152706,0.019968335899528854,0.014089847072630174,60.241102371094705,0.5353310585021973,0.5361134320497513,0,0.027337639684185122,0.9403418911901438,0.03664886906695101,-0.0017861504921327098,0.9213551758557923
|
||||
-249782400,0.5674594640731812,0.5705887223186141,0.5486831150675058,0.5507694775961461,319571,0,0.02190560725110835,0.030302977832402656,0.021313273071756775,0.015701448973224313,74.15725143202734,0.5422157645225525,0.5365306884050369,1,0.057645865067079916,1.302121588917061,0.029852912222305964,-0.0017893465343256088,-0.02339361786655092
|
||||
-249696000,0.5737180709838867,0.5758042427840848,0.5695455370185051,0.5695455370185051,239200,0,0.006258705765579742,0.011029170023497015,0.020805328783411063,0.014493065352027495,74.44423210860703,0.5499348759651184,0.5379910439252853,1,0.0664082189880526,1.20587263470063,0.010968792266513346,-0.0017912228034582256,-0.25149653754564716
|
||||
-249436800,0.5831063389778137,0.5831063389778137,0.5716318207352376,0.5737181833088979,233459,0,0.01147451824257617,0.016363904971350873,0.012691660556580366,0.014656014937953987,74.44437813396382,0.5612006425857544,0.5400772869586945,1,0.07967202668608087,1.1645221885112587,0.016231459211629887,-0.008977827438595987,-0.02400083612040138
|
||||
-249350400,0.5841497182846069,0.5841497182846069,0.577891008152234,0.5831066316567312,210496,0,0.006258710132372891,0.0017893465343254977,0.014402523665870885,0.01463691549060865,78.16092784432769,0.5718406200408935,0.5422156989574433,1,0.07733826115288278,1.0530073576201133,0.0017877475609430528,-0.01449206652030266,-0.09835988331998335
|
||||
-249264000,0.5831063389778137,0.5862356353637752,0.5799768902998343,0.5841494250821327,221978,0,0.006258745063940863,-0.0017861504921327098,0.012730297260969109,0.014251250056549624,76.19027212050469,0.5783079862594604,0.5446148902177811,1,0.07067645312569515,0.9594453293553569,-0.0017877475609431462,-0.029411715276369987,0.05454735481909401
|
||||
-249177600,0.5820629596710205,0.5841492836666025,0.5810198738192202,0.5831061978148021,116730,0,0.003129409847382303,-0.0017893465343256088,0.008183381276120043,0.014194287896345472,81.01203107799442,0.5812286853790283,0.5470662415027618,1,0.06397162813798296,0.8916280513192241,-0.0017909493270887144,0.003787506984291422,-0.47413707664723537
|
||||
-249091200,0.5810203552246094,0.5862359791700018,0.5716321559768494,0.5820634419406611,153088,0,0.014603823193152454,-0.0017912228034582256,0.007872112839072175,0.013123646304395735,79.22058165481694,0.5826891422271728,0.5499870240688324,1,0.05642556969106427,0.8404531661076132,-0.0017928289613016464,0.0,0.311470915788572
|
||||
-248832000,0.5758040547370911,0.5799765873398004,0.573717883618198,0.5799765873398004,110989,0,0.006258703721602421,-0.008977827438595987,0.0039331001504551355,0.013455325714066711,76.24930271891412,0.5812286853790283,0.5523861885070801,1,0.04239401114155639,0.7561289068418939,-0.009018370975696912,-0.01400449814600524,-0.2749986935618729
|
||||
-248745600,0.5674594640731812,0.57997687778495,0.5674594640731812,0.5758043430926876,183706,0,0.012517413711768843,-0.01449206652030266,0.005786015302371405,0.013704421654556915,67.85700923962693,0.5778906345367432,0.5538987368345261,1,0.024482322014585556,0.6486849113264829,-0.014598102214055783,0.040307015050057515,0.6551730351656471
|
||||
-248659200,0.5507695078849792,0.5674594952798577,0.547640059102428,0.5674594952798577,179878,0,0.01981943617742976,-0.029411715276369987,0.011450819745249882,0.015342176834476357,58.76303174036544,0.5714232683181762,0.5547854155302048,1,-0.007238668380255775,0.4549505410223467,-0.029852912222306075,-0.003689573808661195,-0.020837642755272
|
||||
-248572800,0.5528555512428284,0.5612006191402911,0.5497261412630305,0.5507693794509548,187533,0,0.011474477877260525,0.003787506984291422,0.012800007813990912,0.015284409786909883,58.76281311539919,0.5655817866325379,0.5555677682161331,1,-0.004881883234539197,0.46904996552199824,0.003780352439282486,-0.009259095153879016,0.04255662171027019
|
||||
-248486400,0.5528555512428284,0.5612006191402911,0.5507693794509548,0.5528555512428284,218150,0,0.010431239689336236,0.0,0.0131145854588938,0.014973819694803402,64.04484931987048,0.5599488258361817,0.556663054227829,1,-0.006839870108287016,0.4549873424001391,0.0,-0.0037381656963827448,0.16326193256653498
|
||||
-248227200,0.5451130867004395,0.5503445001135093,0.5451130867004395,0.5503445001135093,197101,0,0.005231413413069874,-0.01400449814600524,0.013226191362992691,0.015366429642332775,57.34543125428137,0.5538106322288513,0.5572147279977798,0,-0.02171809302461325,0.3535982161894739,-0.014103486404111751,-0.0075049184326299034,-0.09648865459546185
|
||||
-248140800,0.5670849680900574,0.5670849680900574,0.547205713611368,0.547205713611368,174138,0,0.019879254478689323,0.040307015050057515,0.025981164401863918,0.017618405960776528,58.27684968819092,0.5537357330322266,0.5589693129062653,0,0.014518963736302792,0.6020271273560616,0.039515876367235164,0.009451196726568911,-0.11650372144230625
|
||||
-248054400,0.5649926662445068,0.568131553215077,0.5608074963465118,0.567085155722765,126298,0,0.0073240568685651875,-0.003689573808661195,0.02067209980705081,0.017652142830487928,48.5310236336738,0.5565803647041321,0.5604106694459915,0,0.008176141262701053,0.5597288972009938,-0.0036963970745718827,-0.0037447417912949144,-0.27472464367340843
|
||||
-247881600,0.5597613453865051,0.5649927994452746,0.5587151004007169,0.5649927994452746,124384,0,0.006277699044557661,-0.009259095153879016,0.021705184735197294,0.01775622565267104,41.585832735029285,0.5579615235328674,0.5617469400167465,0,-0.0035346781420513285,0.47252846953290506,-0.009302227023251852,-0.005639083050679616,-0.015154634277660728
|
||||
-247622400,0.5576688647270203,0.5639465256880991,0.5524374487692001,0.5597613547335375,170310,0,0.01150907691889902,-0.0037381656963827448,0.021883823033755582,0.017808725698899793,33.18518868742268,0.5589241862297059,0.5628742575645447,0,-0.009247878664849996,0.42341543454741404,-0.0037451700989630902,-0.009451842866518012,0.3692275533830718
|
||||
-247536000,0.5534836053848267,0.5608075483678847,0.5534836053848267,0.5576687756710444,124384,0,0.007323942983058052,-0.0075049184326299034,0.02087077268610043,0.01747161818983028,30.537351464960636,0.5605982899665832,0.5642095625400543,0,-0.019010590864393828,0.3204040454341923,-0.007533222032697705,0.0,-0.2696612060360519
|
||||
-247449600,0.5587146878242493,0.5587146878242493,0.5482518638094724,0.5534832758168609,116730,0,0.010462824014776828,0.009451196726568911,0.007340126030706797,0.01749939380242338,35.300862068965515,0.5589242339134216,0.5655978053808213,0,-0.012169632716197643,0.3657377487866691,0.009406813596766064,0.00763371310193528,-0.06153524569076407
|
||||
-247363200,0.5566224455833435,0.5639465040194891,0.5524374275428052,0.5587150882626765,139693,0,0.011509076476683866,-0.0037447417912949144,0.007341560552366686,0.01551914589373098,34.86017634827542,0.557250189781189,0.5658904522657394,0,-0.01637773997650649,0.3149895489205107,-0.0037517708904312346,0.005681047598383282,0.19671892401267876
|
||||
-247276800,0.5534836053848267,0.5608075483678847,0.5482521902624286,0.5566223780816669,267904,0,0.01255535810545616,-0.005639083050679616,0.006716878793760387,0.013900259677113834,34.01159772586011,0.5559946417808532,0.5651916593313218,0,-0.020715192365624913,0.27164685083205375,-0.00565504270633482,0.0018839150028189255,0.9178054734310237
|
||||
-247017600,0.5482521653175354,0.5555760697790644,0.5482521653175354,0.5534835802019098,202842,0,0.007323904461528974,-0.009451842866518012,0.0074792764956700215,0.013708500298458305,34.00561929938685,0.5541113018989563,0.5639183640480041,0,-0.027780969248831,0.20297507148088714,-0.009496795011281301,0.015037519107572672,-0.24285564978499763
|
||||
-246931200,0.5482521653175354,0.5482521653175354,0.5440669952217384,0.5482521653175354,216237,0,0.004185170095796997,0.0,0.007191507886936393,0.013014272295531405,37.65364695280766,0.553065013885498,0.5621756553649903,0,-0.02476715224962045,0.22836453795135964,0.0,0.029629167790202526,0.06603661963498686
|
||||
-246844800,0.5524373650550842,0.5524373650550842,0.5461597050452965,0.5482521947347264,130125,0,0.006277660009787689,0.00763371310193528,0.006487227848443129,0.0131918087226244,51.27745323796184,0.551809549331665,0.5605900377035141,0,-0.014543020924573935,0.32844195516875857,0.007604723751526135,0.0035979003385191444,-0.39822972016814884
|
||||
-246758400,0.5555757880210876,0.5597609559943939,0.5524370552471511,0.5524370552471511,310003,0,0.007323900747242762,0.005681047598383282,0.007263840516352797,0.013324189907406699,52.05044200553158,0.5516002178192139,0.5592135101556778,0,-0.006505068401472358,0.4147446795600465,0.005664971305527635,0.003584083020536921,1.3823477425552353
|
||||
-246672000,0.5566224455833435,0.5597613332257351,0.5545299174689224,0.5555761624319809,177965,0,0.00523141575681263,0.0018839150028189255,0.006648855715808147,0.013357334229870725,52.79527830706927,0.5522279858589172,0.557941484451294,0,-0.0023641168558162784,0.46422395590114207,0.0018821426605623377,-0.0035712832448973053,-0.42592491040409286
|
||||
-246412800,0.5649926662445068,0.5649926662445068,0.5587149686799581,0.5587149686799581,176051,0,0.006277697564548768,0.015037519107572672,0.005860428714265941,0.013900026933207412,64.61575811543472,0.5555760860443115,0.5571401000022889,0,0.014094419414767856,0.755868627478607,0.014925576448577891,-0.0017920415102684606,-0.010754923720956322
|
||||
-246326400,0.5817329287528992,0.5827792112735934,0.5670849352748982,0.5670849352748982,325312,0,0.015694275998695217,0.029629167790202526,0.010969722538177962,0.015380527218023028,61.66689770813196,0.5622722387313843,0.5574365437030793,1,0.04358592080888313,1.2144896523415116,0.029198706143077832,-0.0017961791764924406,0.8478281861506041
|
||||
-246240000,0.583825945854187,0.5859185890293641,0.5827797006432245,0.5827797006432245,340621,0,0.0031388883861396266,0.0035979003385191444,0.011504294439881406,0.014971281912832996,65.00027534765013,0.5685499548912049,0.5582548677921295,1,0.045805383055932625,1.130104251018802,0.003591443378128137,0.00539628697504746,0.04705943832382453
|
||||
-246153600,0.5859184265136719,0.5869646714344383,0.5848721815929053,0.5848721815929053,137779,0,0.002092489841532985,0.003584083020536921,0.011788936495665505,0.013081031016159005,71.93002269744831,0.5746184825897217,0.5600123137235642,1,0.04625989849733125,1.0533069064358465,0.003577675500479776,-0.005367323357920228,-0.5955064426444641
|
||||
-246067200,0.583825945854187,0.5869648342403266,0.583825945854187,0.5859185890293641,135866,0,0.0031388883861396266,-0.0035712832448973053,0.013004018104704019,0.013166202056970123,71.93002269744831,0.5800591826438903,0.5615608334541321,1,0.03964862054766782,0.9378189761078035,-0.0035776755004797243,0.0017994112414942975,-0.013884554249921965
|
||||
-245808000,0.5827797055244446,0.5859185939368747,0.5817334221164057,0.5838259507441702,162656,0,0.004185171820469069,-0.0017920415102684606,0.01343363727449868,0.01319240449940277,75.92640066505678,0.5836165904998779,0.5630570411682129,1,0.035027826515252825,0.8685467821209152,-0.001793649137566051,-0.0017961791764924406,0.19717957399202146
|
||||
-245721600,0.5817329287528992,0.5848718526915438,0.5817329287528992,0.5827792112735934,225805,0,0.0031389239386446777,-0.0017961791764924406,0.0033534375386668662,0.012649055477227066,71.99995898314663,0.5836165904998779,0.5648880332708359,1,0.029819883746744047,0.8166507819040562,-0.0017977942405621966,-0.005395057449088192,0.38823652370647266
|
||||
-245635200,0.5848721265792847,0.5859183714016404,0.5806869563483678,0.5817332011707235,135866,0,0.005231415053272626,0.00539628697504746,0.0038889005513927295,0.009222599494105423,76.47022685207422,0.5838258266448975,0.5657773911952972,1,0.033749555357181604,0.8402809935197522,0.005381779187210295,0.005424321977780533,-0.3983038462390115
|
||||
-245548800,0.5817329287528992,0.5859180970239573,0.5785940430025354,0.5848718526915438,195187,0,0.0073240540214218885,-0.005367323357920228,0.0040911761308328855,0.009280553359257874,76.46971435081915,0.582988727092743,0.5666144043207169,1,0.026682209835994453,0.761172692580685,-0.0053817791872102765,0.00539628697504746,0.43661401675179956
|
||||
-245462400,0.5827797055244446,0.5838259507441702,0.5775482502959365,0.5817334221164057,114816,0,0.006277700448233725,0.0017994112414942975,0.004092194243385363,0.008928453586431465,85.10542365814518,0.5827794790267944,0.5677653223276138,1,0.02644469925580828,0.75345967459486,0.001797794240562135,0.0,-0.411764103142115
|
||||
-245203200,0.5817329287528992,0.5848718526915438,0.5796404400880725,0.5827792112735934,130125,0,0.005231412603471375,-0.0017961791764924406,0.004092558664088142,0.008872526590861983,83.33163227765027,0.5825701236724854,0.5689685255289078,1,0.02243428704975514,0.7138365005060009,-0.0017977942405621966,-0.001788734113927437,0.1333350752508362
|
||||
-245116800,0.578594446182251,0.5817333341198738,0.5754556728095508,0.5817333341198738,135866,0,0.006277661310323035,-0.005395057449088192,0.004683663128585452,0.008763543605372221,76.59483693774824,0.5819424271583558,0.570224067568779,1,0.014679104389893949,0.6432827678396303,-0.005409663328252222,-0.021505110682274453,0.04411911623438991
|
||||
-245030400,0.5817329287528992,0.5817329287528992,0.5765015161494277,0.5785940430025354,88026,0,0.005231412603471486,0.005424321977780533,0.0046933500550057905,0.00863487151332387,76.59486530578604,0.5813145875930786,0.5713749796152114,1,0.018128111148064674,0.677888317946334,0.005409663328252085,-0.01098960261393278,-0.35211163940941814
|
||||
-244944000,0.5848721265792847,0.5859183714016404,0.582779484181378,0.582779484181378,166483,0,0.003138887220262343,0.00539628697504746,0.004696265249043511,0.008553226307489638,77.55013305648593,0.5819424271583558,0.5727874636650085,1,0.021097987789313377,0.7095132966313247,0.005381779187210295,0.014814636643259105,0.8912934814713835
|
||||
-244857600,0.5848721265792847,0.5848721265792847,0.5806869563483678,0.5848721265792847,166483,0,0.0041851702309169125,0.0,0.0046968504833230776,0.008361149765240602,73.16987434211623,0.5823609113693238,0.5743568897247314,1,0.018307844900394388,0.6890226383945782,0.0,0.0036497996971129876,0.0
|
||||
-244598400,0.583825945854187,0.5848723438184016,0.5806871720329864,0.5848723438184016,116730,0,0.00418517178541522,-0.001788734113927437,0.00469585211914784,0.007935137617693554,53.84671000308921,0.5827795147895813,0.5761355787515641,1,0.013348189881429162,0.6525012421905956,-0.0017903358090820892,-0.007272121999378323,-0.2988473297573927
|
||||
-244512000,0.5712707042694092,0.581733540478616,0.5639467571112855,0.581733540478616,176051,0,0.017786783367330528,-0.021505110682274453,0.011102884926247959,0.009658341875132502,33.33412452765698,0.581314766407013,0.5772865056991577,1,-0.010420824617167757,0.361473176239508,-0.02173971513591005,0.016483047540506668,0.5081898398012508
|
||||
-244425600,0.5649926662445068,0.57127032562076,0.5649926662445068,0.57127032562076,168397,0,0.006277659376253131,-0.01098960261393278,0.010590880821677837,0.00998909530308604,25.000925691206504,0.5779667139053345,0.5779142707586289,1,-0.02235903345518675,0.1648604354323582,-0.011050434385295928,-0.010810679314179117,-0.043476038193478006
|
||||
-244339200,0.5733628273010254,0.5744092630039029,0.5566223382942619,0.5649926782683851,223891,0,0.01778692470964105,0.014814636643259105,0.013510248527838727,0.010406192349674399,39.130526315789474,0.5756648540496826,0.5788036227226258,0,-0.009400071471576954,0.33370601783330855,0.014705971819168953,0.010928827362070459,0.32954268781510354
|
||||
-244252800,0.5754554867744446,0.5806869013320748,0.5691778274935834,0.5733628063865068,114816,0,0.011509073838491424,0.0036497996971129876,0.01386711032673307,0.010415964095984855,42.5532327502618,0.5737815260887146,0.5797452747821807,0,-0.0073994359149333055,0.33182466718190246,0.003643155340338369,-0.003603559771393039,-0.4871790290811153
|
||||
-243993600,0.5712707042694092,0.5806872950460165,0.5712707042694092,0.575455876941413,168397,0,0.009416590776607281,-0.007272121999378323,0.013947768333090964,0.010104217317581035,40.00077474954512,0.571270477771759,0.5800591766834259,0,-0.015150992807778874,0.1168747476569343,-0.007298692774211493,-0.005425146107983281,0.46666840858416947
|
||||
-243907200,0.5806869864463806,0.5817332313229651,0.5691779109209443,0.5712704006741132,160742,0,0.012555320402020786,0.016483047540506668,0.012474549735786064,0.008400408961498854,46.42858959425848,0.5731537342071533,0.5800068795680999,0,0.0011725841576002427,0.529707207319808,0.016348676662894475,0.0036360092105880426,-0.04545805447840523
|
||||
-243820800,0.5744093656539917,0.5859184419690336,0.5744093656539917,0.5806870262856948,116730,0,0.011509076315041944,-0.010810679314179117,0.012423328810266638,0.008683593123616768,44.06813373770964,0.5750370740890502,0.5795360505580902,0,-0.008846188082970108,0.27824816184311546,-0.010869539303159363,-0.014491758986010295,-0.27380522825397224
|
||||
-243734400,0.5806869864463806,0.5848721568942222,0.5744093262453702,0.5744093262453702,221978,0,0.010462830648852006,0.010928827362070459,0.011624494363347095,0.009026272970611132,48.43737204342423,0.5765019059181213,0.5792744785547257,0,0.0024384086369195757,0.56315984639554,0.010869539303159335,0.011028748406284317,0.9016362546046433
|
||||
-243648000,0.578594446182251,0.5796408439969454,0.5744094277480866,0.5796408439969454,145434,0,0.005231416248858811,-0.003603559771393039,0.011909177245629109,0.00902687087486476,47.692539613119685,0.5771296977996826,0.5790129035711289,0,-0.0007227082268754792,0.48093862949034877,-0.0036100682333649404,0.0,-0.34482696483435293
|
||||
-243388800,0.5754554867744446,0.5817331460553057,0.5733628063865068,0.5785942591324323,103334,0,0.008370339668798854,-0.005425146107983281,0.011607650970447072,0.009092439104495635,47.69220521638836,0.5779666543006897,0.5786466926336289,0,-0.005514947030389128,0.35409734248967406,-0.005439915655318069,-0.001817901027091784,-0.28947838882242116
|
||||
-243302400,0.5775478482246399,0.5806867726401594,0.5733626793177584,0.575455359241916,110989,0,0.007324093322401026,0.0036360092105880426,0.008461446365893485,0.009135634063278488,46.875016689958436,0.5773388266563415,0.5784374386072159,0,-0.001537919787346298,0.4589945860697001,0.0036294149088921205,-0.005464154263935095,0.07408016722472754
|
||||
-243216000,0.5691781640052795,0.5785946012113505,0.5691781640052795,0.5775483176812367,149261,0,0.009416437206070993,-0.014491758986010295,0.009605312419352854,0.009553376330926549,39.13042042366843,0.5762925863265991,0.5776527404785157,0,-0.014670711102687695,0.12009589211614001,-0.014597790157466553,-0.01648388223613284,0.34482696483435293
|
||||
-243129600,0.5754554867744446,0.5754554867744446,0.5702240722168143,0.5702240722168143,101421,0,0.005231414557630321,0.011028748406284317,0.00963843965642132,0.009885128206866805,43.999805544858,0.5752462863922119,0.5773388683795929,0,-0.0032621770476572998,0.414567712028488,0.010968375248574488,-0.001863076303699862,-0.32051239104655604
|
||||
-242784000,0.5754554867744446,0.5806869013320748,0.5733628063865068,0.5754554867744446,141606,0,0.0073240949455679605,0.0,0.009601824469415822,0.009871317321719761,44.594352194508325,0.5746184945106506,0.5769726574420929,0,-0.0026295365093632617,0.42939921445462115,0.0,-0.05223863702670151,0.39621971780992093
|
||||
-242697600,0.5744093656539917,0.5785943836357526,0.5723166848157459,0.5754556106023561,97594,0,0.006277698820006616,-0.001817901027091784,0.009322399855494382,0.009871458695232736,52.380870565426235,0.5744092702865601,0.5766064792871475,0,-0.0038104213394758446,0.39596226447622423,-0.001819555414476322,0.025590648091049273,-0.31080603929212036
|
||||
-242611200,0.5712707042694092,0.5765021223740127,0.5670855315974054,0.5744096315088134,199014,0,0.009416590776607281,-0.005464154263935095,0.009242765113438004,0.00987324196498348,55.000446264952245,0.573153841495514,0.5762402921915054,0,-0.008624159034760215,0.26938629562578115,-0.005479137359735132,0.02879050634849123,1.0392032297067444
|
||||
-242524800,0.5618539452552795,0.5681317596659831,0.5576689265896921,0.5681317596659831,166483,0,0.010462833076290923,-0.01648388223613284,0.009925550533950327,0.01037346475367099,40.983520819616245,0.571688997745514,0.5752463430166245,0,-0.023281152368765046,-0.048288704564867085,-0.01662125311865798,0.014926691369117506,-0.16346086204990606
|
||||
-242438400,0.5608071684837341,0.5670848241899028,0.5566220010324993,0.561853412611201,191360,0,0.010462823157403545,-0.001863076303699862,0.006651727273122494,0.010238749187852779,38.332773134776176,0.5687593340873718,0.5740430951118469,0,-0.023057374508674955,-0.011432144829599861,-0.0018648139889855075,-0.0073535810497710186,0.1494266681883436
|
||||
-242179200,0.5315113663673401,0.563946122093516,0.5315113663673401,0.5608072365768983,621920,0,0.032434755726175934,-0.05223863702670151,0.021357388424412684,0.015166085989555019,27.38029598010432,0.5599705100059509,0.5713750571012497,0,-0.06976799256192523,-0.3971248426799881,-0.05365253523704466,-0.011111610460339483,2.25
|
||||
-242092800,0.5451130867004395,0.548252011124855,0.527326319284289,0.5315114882030316,359757,0,0.02092569184056603,0.025590648091049273,0.028193876494576567,0.016606285329971247,30.681467277697905,0.5541112542152404,0.5694394141435624,0,-0.04271978166405943,-0.0005791244970236766,0.02526868866672899,-0.0037447417912949144,-0.4215381399536918
|
||||
-242006400,0.5608071684837341,0.5628998094917617,0.5555757187167589,0.5555757187167589,273645,0,0.007324090775002734,0.02879050634849123,0.03329910797743075,0.017487833788962636,43.29864514624773,0.5520185470581055,0.5689162373542785,0,-0.014253537406939354,0.3350548384745729,0.028383846570315657,-0.013157896145825299,-0.23936156905911488
|
||||
-241920000,0.5691781640052795,0.5765020723394407,0.5576690451740276,0.5608078193877335,199014,0,0.01883302716541313,0.014926691369117506,0.03313865416504925,0.017650680354452778,44.44457231901688,0.5534833908081055,0.5691255122423172,0,9.25134470863842e-05,0.5010740160724878,0.01481638463328056,-0.01714302951951885,-0.27272926601984326
|
||||
-241833600,0.5649926662445068,0.5649926662445068,0.5545297987819631,0.5649926662445068,110989,0,0.010462867462543768,-0.0073535810497710186,0.03343146836802215,0.01739997004715821,43.56431846076096,0.55432049036026,0.5687070041894913,0,-0.006531197818247403,0.4241749680740015,-0.007380751910932979,-0.02519322204255947,-0.4423055664425618
|
||||
-241574400,0.5587146878242493,0.5681312676258249,0.5587146878242493,0.5649923822331153,141606,0,0.00941657980157562,-0.011111610460339483,0.018487350964949516,0.017523319884150047,42.30759118138116,0.5597611546516419,0.5678699642419816,0,-0.01612213533771445,0.3144103594708038,-0.01117380555814658,0.001986630984851745,0.275856165926353
|
||||
-241488000,0.5566224455833435,0.5566224455833435,0.5482522567490512,0.5566224455833435,103334,0,0.008370188834292303,-0.0037447417912949144,0.016961375378039444,0.017478032885112252,40.384752326645085,0.5620630264282227,0.5671375513076782,0,-0.018540662137588093,0.29058731599536813,-0.0037517708904312346,0.02777916555801241,-0.2702710337132608
|
||||
-241401600,0.5492984652519226,0.5587150511774548,0.5461597305710832,0.556622408637023,145434,0,0.012555320606371545,-0.013157896145825299,0.011224242217059246,0.017157804860457503,40.77661740907035,0.5597612857818604,0.5655681252479553,0,-0.028766932345948182,0.18050663367519662,-0.013245228177790275,-0.009653434476806222,0.40741672634370096
|
||||
-241315200,0.5398818254470825,0.5513909381995521,0.5367430528911861,0.5492984104328552,243027,0,0.014647885308366027,-0.01714302951951885,0.005174499071591208,0.01737371484208283,33.96242842133266,0.553902018070221,0.5638417482376099,0,-0.042494055939310105,0.06492357308580472,-0.017291672493307778,-0.011695105712361986,0.6710466603407732
|
||||
-241228800,0.5262804627418518,0.5451134885352464,0.5262804627418518,0.5398820712657951,214323,0,0.01883302579339463,-0.02519322204255947,0.007895640223748909,0.017728925529267695,30.252361520947787,0.5461595773696899,0.5611214220523835,0,-0.06209165777898085,-0.06098392942025191,-0.02551600407774524,-0.011834735734798318,-0.11811033341974353
|
||||
-240969600,0.5273259878158569,0.5273259878158569,0.5032615776188014,0.5262797439791814,476486,0,0.02406441019705552,0.001986630984851745,0.010771695569081117,0.017792005039457572,31.092231406224712,0.5398818373680114,0.5585579991340637,0,-0.055915431104067825,0.0318800354983384,0.001984660243176092,0.015967760422304744,1.2232144940113754
|
||||
-240883200,0.541974663734436,0.5513910987081189,0.5336043211012772,0.5336043211012772,304262,0,0.017786777606841664,0.02777916555801241,0.020886306878025618,0.019192862098157765,39.230825186984774,0.53695228099823,0.5568839579820632,0,-0.02677271275985904,0.27511202405835306,0.027400324459863547,-0.02946937464429955,-0.3614460865586817
|
||||
-240796800,0.5367427468299866,0.5419741969226952,0.5304650907329429,0.5419741969226952,189446,0,0.011509106189752316,-0.009653434476806222,0.020607154001062108,0.019187767500006666,40.476147416983686,0.5344411373138428,0.5548437029123306,0,-0.03262352260165091,0.2241926313537294,-0.009700330927328154,-0.06072912614854287,-0.3773589866628103
|
||||
-240710400,0.5304654836654663,0.5356968994449739,0.5252340678859586,0.5356968994449739,164570,0,0.010462831559015284,-0.011695105712361986,0.01989977932363615,0.019113346312941683,38.931537385406784,0.5325578689575196,0.5529080688953399,0,-0.040590084486760825,0.16807188191930153,-0.011764031383547122,0.0,-0.13130918573102623
|
||||
-240624000,0.5241875648498535,0.5262800537548723,0.514770982894416,0.5262800537548723,183706,0,0.011509070860456272,-0.011834735734798318,0.016906494117935926,0.01889110332864878,46.78909631221546,0.5321392893791199,0.5503446727991104,0,-0.047528592974688144,0.11956386576273687,-0.011905323699107162,-0.008620407587972223,0.11627878714224948
|
||||
-240364800,0.5325576663017273,0.533603948853898,0.5210485964161323,0.5241875204492084,118643,0,0.012555352437765621,0.015967760422304744,0.018536170965404383,0.01942058576075634,44.23079767243519,0.533185625076294,0.5481997817754746,0,-0.028533603977525468,0.2637907458760735,0.01584161678501349,-0.12391228210965999,-0.35416916159515743
|
||||
-240278400,0.5168635249137878,0.5304652770184438,0.5158172803537634,0.5304652770184438,153088,0,0.014647996664680418,-0.02946937464429955,0.016259942235259756,0.02024729218050607,29.807953549517975,0.5281633973121643,0.5453224897384643,0,-0.05218740352763618,0.07548903309805306,-0.029912320605426885,0.1464017085305951,0.2903247557799449
|
||||
-240192000,0.4854748547077179,0.5147708771996514,0.4854748547077179,0.5147708771996514,531981,0,0.029296022491933527,-0.06072912614854287,0.028181777683747657,0.02376903013233815,18.25377610039007,0.5179098188877106,0.5410326972603798,0,-0.10268851186626882,-0.182138065254381,-0.06265137081817239,-0.047620066372648484,2.475001306438127
|
||||
-240105600,0.4854748547077179,0.5022155262763142,0.4854748547077179,0.4854748547077179,507104,0,0.016740671568596266,0.0,0.029453556288081408,0.0237389884874005,18.85231338120984,0.5089116930961609,0.5372137427330017,0,-0.09630968813654928,-0.0571976368631192,0.0,-0.03408955624666732,-0.0467629483007852
|
||||
-240019200,0.4812898635864258,0.4917527265565092,0.46245670260261984,0.4854748789343093,478400,0,0.02929602395388936,-0.008620407587972223,0.02963481508703078,0.023709988792565525,19.16658319237652,0.5003321528434753,0.5332378774881363,0,-0.09741996226227634,-0.00645860164695269,-0.008657778223196603,-0.04941281764758043,-0.05660377358490565
|
||||
-239760000,0.4216521382331848,0.4729199489927386,0.4206058930105558,0.4729199489927386,685069,0,0.052314055982182806,-0.12391228210965999,0.05015774926628394,0.03402531546907387,13.142788315987872,0.47815104722976687,0.5277449160814285,0,-0.20103041188155013,-0.24106509364961354,-0.1322890584808641,0.04703043158014886,0.4320004180602006
|
||||
-239673600,0.4833827316761017,0.4854752217334329,0.4519941969786382,0.4519941969786382,1416064,0,0.0334810247547947,0.1464017085305951,0.1001385018069026,0.0484964387193108,36.12332629345658,0.4714548885822296,0.5246583983302117,0,-0.07867150661358846,0.22004954903641255,0.13662808787491815,-0.00709278552113124,1.06703850269097
|
||||
-239500800,0.4603640139102936,0.4844284240714881,0.4603640139102936,0.4833821802363718,757786,0,0.024064410161194538,-0.047620066372648484,0.09861778417787315,0.0487129072035944,34.166586258613904,0.46643272042274475,0.5196362406015396,0,-0.11406484394281557,0.11493824238292533,-0.04879123386128503,-0.002380382216179977,-0.4648645823917563
|
||||
-239414400,0.4446704089641571,0.47187378216829123,0.44467040896415705,0.4603647009240927,694637,0,0.027203373204134185,-0.03408955624666732,0.09921104324531468,0.04869421922090564,33.88426075070589,0.4582718312740326,0.5134108528494835,0,-0.13388973665790238,0.07126827664682688,-0.03468415739718524,0.002386061955625962,-0.08333355327229586
|
||||
-239155200,0.4226979911327362,0.44990133456871845,0.4185128231850764,0.4446699223694911,621920,0,0.03138851138364207,-0.04941281764758043,0.1003729080643192,0.04942393562023308,30.916127093582872,0.44655345678329467,0.5062961190938949,0,-0.16511706254192138,0.013631688586157955,-0.05067539863769628,-0.026190240276929733,-0.10468345337204898
|
||||
-239068800,0.44257766008377075,0.4561792623774757,0.4101428878699785,0.422698207189045,801798,0,0.0460363745074972,0.04703043158014886,0.08476469950791644,0.05123392261342276,32.2097274392475,0.4507385611534119,0.5004892677068711,0,-0.1157099889243145,0.1660963042447075,0.045957996967581134,-0.029339297007653697,0.2892301260612298
|
||||
-238982400,0.4394385516643524,0.4478088883500431,0.43002197062830233,0.4425774756568384,346362,0,0.01778691772174079,-0.00709278552113124,0.04022011585146285,0.05121665250341759,32.45284795442387,0.441949725151062,0.4946300730109215,0,-0.1115814107512837,0.18128697852637077,-0.007118058901035161,-0.02015188785026345,-0.5680183786938855
|
||||
-238896000,0.4383925199508667,0.4467626697549873,0.43734627509303925,0.43943876480869426,239200,0,0.009416394661948047,-0.002380382216179977,0.036909921044346025,0.05124415971048847,33.07691903186,0.43755542635917666,0.48908477574586867,0,-0.10364717592710748,0.2054392659886477,-0.0023832198298920624,-0.025707373816174273,-0.30939306274937783
|
||||
-238809600,0.4394385516643524,0.4478088883500431,0.4394385516643524,0.4394385516643524,181792,0,0.008370336685690705,0.002386061955625962,0.03426813718643005,0.05128661099047267,34.11760868586609,0.4365090548992157,0.4840626120567322,0,-0.09218654628742495,0.23838373137802218,0.002383219829892172,0.021109821939496287,-0.24
|
||||
-238550400,0.427929550409317,0.44257758597816976,0.427929550409317,0.4394386612032439,260250,0,0.014648035568852746,-0.026190240276929733,0.027026042189459646,0.051303653291844664,30.620166892128438,0.4375553667545319,0.47914506644010546,0,-0.10688937363229756,0.2035131825546098,-0.026539312976232025,-0.049096965734504394,0.4315811476852667
|
||||
-238464000,0.41537439823150635,0.4279297204368529,0.414327962263118,0.4279297204368529,371238,0,0.01360175817373488,-0.029339297007653697,0.014354627777209082,0.051426774348348026,30.98042084898094,0.432114714384079,0.4735474869608879,0,-0.12284531188777337,0.168428824621693,-0.029778302247791585,0.0,0.4264668587896254
|
||||
-238377600,0.40700381994247437,0.4268832276825302,0.40595757552277045,0.41537415718294646,558771,0,0.020925652159759722,-0.02015188785026345,0.014307493154965231,0.05065397783830544,33.90559755286692,0.42562776803970337,0.4667989447712898,0,-0.12809610111289416,0.15361875654119678,-0.020357706931648664,-0.04619466214039014,0.5051557222051621
|
||||
-238291200,0.3965408205986023,0.42060542694992953,0.3934020884086529,0.407003681302749,575994,0,0.027203338541276656,-0.025707373816174273,0.012836233795986985,0.050724967536173234,32.510282084340574,0.4172574281692505,0.4597888484597206,0,-0.13755885570734783,0.1286582650510755,-0.026043582901532376,-0.017095022117699754,0.030823002625404605
|
||||
-238204800,0.40491172671318054,0.40909689981716274,0.3567826751831232,0.39654138050521615,2893363,0,0.05231422463403956,0.021109821939496287,0.021037896992300575,0.0513242471333833,35.222809467780706,0.4103520631790161,0.45351116061210633,0,-0.10716259735114542,0.20244087851042547,0.020890096512131726,-0.020289376210622545,4.023251978319219
|
||||
-237945600,0.3850317895412445,0.40386494818385144,0.37143019539230765,0.40386494818385144,1197914,0,0.032434752791543786,-0.049096965734504394,0.025760632703805363,0.051983046190662324,41.626754155055664,0.4017725110054016,0.4465533718466759,0,-0.13776983040350843,0.11551193874165389,-0.05034318350114639,0.04142021607902113,-0.5859786691127246
|
||||
-237859200,0.3850317895412445,0.38921695712197635,0.3798003778006729,0.3850317895412445,340621,0,0.009416579321303464,0.0,0.026610364330422104,0.051619164999786755,18.6668988403721,0.39570398926734923,0.43917707800865174,0,-0.12328805663746545,0.131971043374653,0.0,-0.019886934677433188,-0.7156548800665157
|
||||
-237772800,0.3672453761100769,0.39026357141096085,0.35992143091546214,0.3850321547088711,621920,0,0.030342140495498715,-0.04619466214039014,0.030229881157363404,0.052002628369501334,19.310690968951633,0.38775230050086973,0.4316961705684662,0,-0.14929665550083338,0.04400604244844975,-0.04729567671973935,0.02318913234610176,0.8258416245621967
|
||||
-237686400,0.3609673082828522,0.37456890003421367,0.3609673082828522,0.36724496307669074,495622,0,0.013601591751361497,-0.017095022117699754,0.030066723093125775,0.05091717652294513,20.588450892542994,0.38063759803771974,0.4254707932472229,0,-0.15160496557725067,0.055959179868346434,-0.01724282893738421,0.07082123738221191,-0.20307756624646256
|
||||
-237600000,0.3536435067653656,0.3756154501082348,0.3536435067653656,0.3609676024445524,524326,0,0.021971943342869227,-0.020289376210622545,0.020783237458378418,0.050836130118737395,22.95114385547447,0.3703839540481567,0.4188792258501053,0,-0.15573873102048774,0.05697392597059992,-0.02049803276936214,-0.007936112624271852,0.057915104656371286
|
||||
-237340800,0.3682914972305298,0.37038402501834217,0.3442270648818566,0.35364349720945926,849638,0,0.026156960136485552,0.04142021607902113,0.03239601073613684,0.05235031529249965,19.658316291751873,0.3670358955860138,0.41322930753231046,0,-0.10874787795216334,0.18240041861735418,0.04058537396367942,0.026666112684525123,0.6204384295266685
|
||||
-237254400,0.3609673082828522,0.37143012991969626,0.3578283854152632,0.3682912070521073,392288,0,0.013601744504433078,-0.019886934677433188,0.03232272462747233,0.045346427370646446,19.008466987505727,0.3622229993343353,0.41019506603479383,0,-0.12001060429080346,0.1688975923769414,-0.020087341194317154,0.03376731874345107,-0.5382880709196152
|
||||
-237168000,0.3693378269672394,0.37143050798949945,0.3588749946805406,0.3609676757028007,273645,0,0.012555513308958821,0.02318913234610176,0.028904971908065246,0.02877931927590368,24.21900677756473,0.3626414895057678,0.4044928207993507,0,-0.08691129242452,0.24120412171303232,0.02292434998498549,0.00251117101813203,-0.3024385145607309
|
||||
-237081600,0.3954947888851166,0.3986337137017791,0.38084679130978827,0.38084679130978827,782662,0,0.01778692239199081,0.07082123738221191,0.039564793071449854,0.03313115961026567,36.184379673111735,0.3695469856262207,0.4012493595480919,0,-0.014341632020189121,0.4540954045276222,0.06842586565958911,-0.04009986684610889,1.8601363079902793
|
||||
-236995200,0.39235609769821167,0.4038653682515694,0.3871248332696053,0.39549502438395867,468832,0,0.016740534981964095,-0.007936112624271852,0.036781834542158644,0.03251814963214841,38.19461463798277,0.3772895038127899,0.3986336439847946,0,-0.015747657984488628,0.44709344021510744,-0.007967771174522291,0.036554210840747725,-0.40097768896407393
|
||||
-236736000,0.4028187096118927,0.40491135150725144,0.39130959925860553,0.3923558438297056,195187,0,0.013601752248645904,0.026666112684525123,0.03535033614082949,0.03157675778678275,45.774591524490475,0.3841949462890625,0.39763967990875243,0,0.013024428810345823,0.5444276272217762,0.026316768724232817,-0.005039084058060861,-0.5836738959797966
|
||||
-236649600,0.4164208173751831,0.41746706283950363,0.40177280804986193,0.40281905351418246,357843,0,0.015694254789641704,0.03376731874345107,0.02817258520230445,0.030618997495782323,53.06133916803562,0.3952856481075287,0.39633183777332304,0,0.0506872718445337,0.6822002512692018,0.03320972053436568,0.01265880839109279,0.833334187215337
|
||||
-236476800,0.41746652126312256,0.41746652126312256,0.40804994241707676,0.41642027715608715,267904,0,0.009416578846045798,0.00251117101813203,0.030698635389018587,0.030620139045041694,57.24634839357389,0.4049113869667053,0.39523323625326157,1,0.05625358135522318,0.7124909472578757,0.0025080232967341015,0.002499685963732512,-0.25133647996467723
|
||||
-236390400,0.40072616934776306,0.40805011023881776,0.398633680273099,0.40805011023881776,264077,0,0.009416429965718787,-0.04009986684610889,0.029513332400638158,0.03177680428908075,48.62999801392438,0.40595766305923464,0.3933499187231064,1,0.018752388836386524,0.5763043833536657,-0.040926027896235895,-0.0024934531139821914,-0.014284967749641608
|
||||
-236131200,0.41537439823150635,0.41537439823150635,0.3975874690088122,0.4007263568426082,256422,0,0.017786929222694148,0.036554210840747725,0.03200071110272112,0.03303222371330778,60.28384253452277,0.41056132316589355,0.3921467110514641,1,0.059232135640668204,0.7606697407936674,0.035901953350170185,0.025000633769338254,-0.028987757358649224
|
||||
-236044800,0.41328129172325134,0.4352532166194607,0.4111888038239558,0.41537397056388164,717600,0,0.02406441279550492,-0.005039084058060861,0.03147519285066,0.032562256004684285,59.44049564454586,0.41265383958816526,0.3914142981171608,1,0.0558666193628552,0.7571866032279533,-0.005051823055404443,-0.03658651385534595,1.7985118281582704
|
||||
-235958400,0.4185129404067993,0.4206056204374651,0.3996799275911787,0.4132815267422999,359757,0,0.02092569284628637,0.01265880839109279,0.027961939997638355,0.03200420454844775,68.70205587871028,0.4130722641944885,0.39157122522592547,1,0.06880412411644721,0.8139644959465474,0.012579355492899921,-0.01772096162955772,-0.4986663879598662
|
||||
-235872000,0.4195590913295746,0.4289757102009947,0.41642035839612845,0.4185128470184259,296608,0,0.012555351804866222,0.002499685963732512,0.02796181785092235,0.031619985212729004,72.22212928530253,0.4134907782077789,0.3921989887952805,1,0.06976076766117179,0.8094743583966569,0.0024965669454034838,-0.0025761883175160483,-0.1755323732408265
|
||||
-235785600,0.4185129404067993,0.4185129404067993,0.41014279310846624,0.4185129404067993,158829,0,0.008370147298333075,-0.0024934531139821914,0.016911064552888773,0.030969031146884134,75.83319546337006,0.41704813241958616,0.3932975947856903,1,0.06411263622105023,0.7757312354028703,-0.0024965669454034096,0.012919142362726621,-0.4645154547416118
|
||||
-235526400,0.42897602915763855,0.43211491717806344,0.41537442292841825,0.41851315819560897,204755,0,0.016740494249645188,0.025000633769338254,0.01235148106314271,0.031099711635690065,74.99990791862953,0.4197684586048126,0.3945008099079132,1,0.0873894764823746,0.8575508656361409,0.024693230901729864,-0.015306010488217336,0.2891537439636338
|
||||
-235440000,0.41328129172325134,0.4321144465822504,0.41014255987430803,0.4289755619802393,246854,0,0.021971886707942367,-0.03658651385534595,0.02310888863309791,0.03009906302026641,70.16107580500001,0.4197684586048126,0.39591328501701356,1,0.04386820893239651,0.6783345757675067,-0.03727258639462977,-0.01295372670722661,0.2056067006910698
|
||||
-235353600,0.40595754981040955,0.4122352068724419,0.4017723814552519,0.4122352068724419,271731,0,0.010462825417190014,-0.01772096162955772,0.023013027660434355,0.03048060056987377,64.22751914557585,0.4172573804855347,0.3969595730304718,1,0.022667237147715902,0.5925532454280897,-0.017879857864801414,0.013123727891716008,0.10077616728916694
|
||||
-235267200,0.40491172671318054,0.42269851191639846,0.4028190828787019,0.40595801044209484,304262,0,0.019879429037696572,-0.0025761883175160483,0.022661325545955593,0.028247501613165894,54.5456376379602,0.41432790756225585,0.398842890560627,1,0.015216107134373047,0.5650587113578337,-0.0025795124008434274,0.005180841306701378,0.1197176619524456
|
||||
-235180800,0.41014283895492554,0.4132815729396122,0.40491138651735686,0.40491138651735686,176051,0,0.008370186422255343,0.012919142362726621,0.02438879017373141,0.02779045961786399,58.41581003144521,0.4126538872718811,0.40130166709423065,1,0.022031236313351465,0.6020940090212937,0.012836402103197359,0.020618829916291492,-0.42138354444524784
|
||||
-234921600,0.40386518836021423,0.412235375746283,0.4017725460429537,0.41014288618221184,252595,0,0.01046282970332929,-0.015306010488217336,0.018424312937402248,0.027556441932286995,50.51555958050476,0.40763171911239626,0.4038127511739731,1,0.00012985520167130282,0.5007079687371739,-0.015424356624553156,0.02020156319659039,0.4347831026236715
|
||||
-234835200,0.3986336290836334,0.40595756903420405,0.39758723192751805,0.4038650420399578,147347,0,0.008370337106685999,-0.01295372670722661,0.012605918141739924,0.026651095853610234,40.449222081722304,0.40470218658447266,0.4053298577666283,0,-0.016520442683130132,0.39913332274165,-0.013038357878850758,0.007426644305300378,-0.41666699657554584
|
||||
-234748800,0.40386518836021423,0.40386518836021423,0.38921718858725585,0.39863377350854956,193274,0,0.014647999772958387,0.013123727891716008,0.013631319968552241,0.026090671951432186,43.01097301050441,0.4042837142944336,0.40747475177049636,0,-0.00885837317428484,0.43020033258414553,0.01303835787885086,-0.022112678205180814,0.311692806775842
|
||||
-234662400,0.40595754981040955,0.4101427181655673,0.4038650229152533,0.4038650229152533,158829,0,0.006277695250314019,0.005180841306701378,0.013841003880429486,0.02577322944304673,53.16451451700483,0.4044928789138794,0.4093057379126549,0,-0.008180164097674747,0.410354082626549,0.0051674669221992865,0.020099745476270803,-0.17821848774279003
|
||||
-234576000,0.4143279194831848,0.41642060026235794,0.4059577691910272,0.4059577691910272,189446,0,0.010462831071330725,0.020618829916291492,0.015839347785682693,0.02104056377548221,49.314943953152266,0.40532989501953126,0.4102473944425583,0,0.009946498371235402,0.6158496690854901,0.020409139326931624,-0.019703706000717136,0.1927670639492789
|
||||
-234316800,0.4226979911327362,0.42479051782414917,0.4122351667342815,0.4143276552374165,265990,0,0.012555351089867661,0.02020156319659039,0.013908226785683183,0.021242991128155902,55.69631754520321,0.4090964555740356,0.41176448911428454,0,0.026552804594611512,0.8353690539508657,0.02000021875075185,-0.007539310046315806,0.40404125713923755
|
||||
-234230400,0.4258372187614441,0.4310686346944877,0.4226982928250074,0.4226982928250074,386547,0,0.008370341869480269,0.007426644305300378,0.007100077994486165,0.02058543721847414,54.54564959571126,0.4145371735095978,0.41291541457176206,1,0.031294070731370915,0.8827237635478853,0.007399202565421119,-0.012657077715759524,0.45323884356554767
|
||||
-234144000,0.4164208173751831,0.42269848110271757,0.4143281355049308,0.42269848110271757,177965,0,0.008370345597786766,-0.022112678205180814,0.01737870568881287,0.01997048344426049,48.235613454530224,0.4170482993125916,0.41291541457176206,1,0.00848939681037697,0.6038245847083697,-0.022360828473567344,0.02051329917882816,-0.5396032047849291
|
||||
-234057600,0.42479076981544495,0.4258371674408607,0.41432790102200523,0.4164205817079349,156915,0,0.011509266418855468,0.020099745476270803,0.018397324307309434,0.020459349022223954,53.26095066954686,0.42081494331359864,0.4132816269993782,1,0.027848184057028158,0.8269723261490529,0.019900412197698825,-0.005025920426337982,-0.11828168460090471
|
||||
-233971200,0.4164208173751831,0.4258374084372904,0.4164208173751831,0.4247910102196809,189446,0,0.009416591062107293,-0.019703706000717136,0.02084151630719854,0.01873487112547497,43.333363927565095,0.4212335228919983,0.4140663594007492,1,0.005686185127044219,0.5708558174834144,-0.019900412197698843,-0.002526085524815702,0.20731606283656756
|
||||
-233712000,0.41328129172325134,0.4195589463624728,0.41014255987430803,0.41642021451352945,118643,0,0.009416386488164785,-0.007539310046315806,0.018013181775140184,0.01697770201542052,50.0,0.4193501830101013,0.41396170407533645,1,-0.001643660139057923,0.47951318574601587,-0.007567874304735977,-0.00506208112699269,-0.3737371071439882
|
||||
-233625600,0.4080503582954407,0.4132817751037572,0.4080503582954407,0.4132817751037572,118643,0,0.005231416808316514,-0.012657077715759524,0.016933020921544598,0.017178258651894072,51.31595862422047,0.4157928109169006,0.41370015740394595,1,-0.013656748752427172,0.3319981314392399,-0.012737860900480052,0.015266190198736318,0.0
|
||||
-233539200,0.4164208173751831,0.4185133083038242,0.40281905351418246,0.40805047177739634,133952,0,0.01569425478964176,0.02051329917882816,0.018907487895381322,0.01757991655504959,56.62652008215779,0.4157928109169006,0.41359555125236513,1,0.006830987698642099,0.584516153928382,0.02030573520521595,0.01754451717508143,0.1290341613074517
|
||||
-233452800,0.4143279194831848,0.4185130901000194,0.4101429398078618,0.41642060026235794,181792,0,0.008370150292157597,-0.005025920426337982,0.01526546781904421,0.017601795872249797,52.49996083463529,0.4137002408504486,0.4133339926600456,1,0.002404657833106505,0.5301490516066277,-0.005038592842605797,0.002463445583937185,0.3571428571428572
|
||||
-233366400,0.41328129172325134,0.41642021451352945,0.4059573931343821,0.41432753567289915,147347,0,0.010462821379147336,-0.002526085524815702,0.012835594270461236,0.017601993889610923,55.999665790633024,0.41307233572006224,0.4130724102258682,0,0.0005056776783249894,0.5064064039360718,-0.002529281462130211,0.03931183227951873,-0.18947478436894916
|
||||
-233107200,0.4111892282962799,0.4122354733259707,0.40491152898829685,0.4122354733259707,166483,0,0.00732394433767386,-0.00506208112699269,0.012587049416041494,0.016564461981876093,58.333465203644685,0.41265392303466797,0.4121830701828003,1,-0.002411166198746706,0.46570448388446917,-0.005074936862529207,0.023640912506173173,0.12987030614807216
|
||||
-233020800,0.41746652126312256,0.4206054445255923,0.40804994241707676,0.4111888656795465,323398,0,0.012555502108515526,0.015266190198736318,0.01228607426308491,0.01483076477995837,58.903943890043216,0.41453715562820437,0.41239233165979383,1,0.012304277295618338,0.6728754016248089,0.015150834463999334,-0.0032450044469237715,0.9425286665905828
|
||||
-232934400,0.42479076981544495,0.4300221851180145,0.4153743368357216,0.4174668265801482,327226,0,0.014647848282292875,0.01754451717508143,0.011363885794085107,0.014631922882765165,61.53854581069524,0.4162111461162567,0.4133339926600456,1,0.027717965032753034,0.8734465680994075,0.01739238890096457,0.03255746974150475,0.011836807896152823
|
||||
-232848000,0.4258372187614441,0.4289759919446598,0.41851312189026735,0.42479082100991966,235373,0,0.010462870054392448,0.002463445583937185,0.010315500667733834,0.01458555206446488,57.74660318346741,0.41851300597190855,0.4143802672624588,1,0.027648400283811547,0.863274514916296,0.0024604162758684292,-0.031530903311033476,-0.2807020224554284
|
||||
-232761600,0.44257766008377075,0.4467626392291346,0.42583713248955535,0.42583713248955535,784576,0,0.02092550673957927,0.03931183227951873,0.01696515092916874,0.01661836247756584,62.025476195884536,0.4243722796440125,0.41600200831890105,1,0.0638834698713695,1.163400822695728,0.03855879440215989,0.004649690595901257,2.3333305009495566
|
||||
-232502400,0.45304059982299805,0.45931826100667245,0.4457165026574331,0.4457165026574331,434387,0,0.013601758349239323,0.023640912506173173,0.013430780166030718,0.01652566414537677,65.11631758253914,0.43274255394935607,0.41846077889204025,1,0.08263575148551539,1.1869185642458642,0.023365793737039314,0.009259101112789603,-0.4463417183293906
|
||||
-232416000,0.4515704810619354,0.4568213019462588,0.4494702293681212,0.4547210502524445,216237,0,0.007351072578137607,-0.0032450044469237715,0.017013251733097298,0.016079559753033195,71.42386419244924,0.43956334590911866,0.4211076214909554,1,0.07233984382216718,1.0554064659434754,-0.003250280891670583,-0.027522209649930796,-0.5022019535575419
|
||||
-232329600,0.4662724733352661,0.4694228482891716,0.4526202352561917,0.4526202352561917,466918,0,0.016802613032979863,0.03255746974150475,0.018615831397512342,0.017065735471274223,73.47154484431897,0.4478596866130829,0.42422798573970794,1,0.09910823662952595,1.1403001795070047,0.032038705070638336,-0.007075949055308617,1.159288188422888
|
||||
-232243200,0.4515704810619354,0.4662728561979559,0.4505203552150283,0.4662728561979559,340621,0,0.015752500982927575,-0.031530903311033476,0.02928864306770129,0.019157255082046094,68.55882401998781,0.45300633907318116,0.42650863230228425,1,0.058760472500563043,0.8706227660118425,-0.03203870507063834,0.004751792918276099,-0.27049074998179556
|
||||
-232156800,0.4536701440811157,0.4557705461918542,0.4494696081689708,0.451569856960091,156915,0,0.0063009380228833956,0.004649690595901257,0.025046344851849436,0.01882437852103871,71.56185315236051,0.45522483587265017,0.42847574353218076,1,0.05880006261554627,0.8561696322941192,0.004638914176348768,0.021275265379783637,-0.5393267003502427
|
||||
-231897600,0.4578707218170166,0.45892084595686156,0.4547203110675867,0.4547203110675867,122470,0,0.004200534889274854,0.009259101112789603,0.02315563892232216,0.018506877248853547,76.8927811196137,0.45619086027145384,0.4302343800663948,1,0.06423554934488696,0.8676304421180906,0.009216498409327117,-0.009258509888295352,-0.2195137494822037
|
||||
-231811200,0.4452691078186035,0.45892115238097836,0.44421898297758466,0.45787102753995945,177965,0,0.014702169403393694,-0.027522209649930796,0.026866910566052858,0.01978843435156049,64.89191229908747,0.4549305856227875,0.4312059745192528,1,0.03261349362106958,0.684509508842874,-0.027908041436623784,-0.014018640465385035,0.4531313791132523
|
||||
-231724800,0.44211840629577637,0.44421884698438924,0.43686759204856246,0.44421884698438924,239200,0,0.007351254935826779,-0.007075949055308617,0.018464142225628144,0.01908030723968974,64.19087882052874,0.4500997722148895,0.4324908539652824,1,0.022260707347274478,0.6275454732798385,-0.007101102308482535,-0.011848398281673278,0.3440845109993538
|
||||
-231638400,0.4442192614078522,0.4473696379055197,0.4410686932604604,0.4421188187596829,101421,0,0.006300944645059314,0.004751792918276099,0.01488850175085321,0.01866778780206629,65.6298235967568,0.4486295282840729,0.4334622785449028,1,0.02481642208650703,0.6418867640513325,0.004740538787757087,-0.014388232657603695,-0.5759991638795987
|
||||
-231552000,0.4536701440811157,0.4547204217962941,0.4421183541010045,0.4442187945416475,214323,0,0.012602067695289654,0.021275265379783637,0.018495903711289324,0.01835998348428489,69.97602187320882,0.4486295282840729,0.43532474488019945,1,0.042141870905971324,0.7411230872458453,0.02105210654802204,0.002433253152440251,1.1132014079924275
|
||||
-231206400,0.44946983456611633,0.4599713137907208,0.44631926814297856,0.45367037259406473,193274,0,0.01365204564774225,-0.009258509888295352,0.01806168968189596,0.018422999359683927,65.34890083109809,0.4469493508338928,0.43713417202234267,1,0.028219396545239972,0.6664429896321065,-0.009301636288168711,-0.00970924945183227,-0.09821157785212042
|
||||
-231120000,0.44316887855529785,0.44631944623559083,0.4368679348444077,0.44631944623559083,177965,0,0.00945151139118311,-0.014018640465385035,0.014175549966953896,0.018491605024413087,58.901578523283774,0.44652930498123167,0.4388900980353355,1,0.009749093313146107,0.5620228382796819,-0.014117829695513333,0.0024512151429048057,-0.07920879166364847
|
||||
-231033600,0.4379180371761322,0.4389683541141682,0.42846667960135765,0.4389683541141682,380806,0,0.010501674512810533,-0.011848398281673278,0.01484323730967562,0.018413785633852497,55.622443224925746,0.44568923115730286,0.439964959025383,1,-0.004652465627683622,0.4688405384743523,-0.011919149970703926,0.01222471918220358,1.13978029387801
|
||||
-230947200,0.4316171705722809,0.43686798959773165,0.43056704509713467,0.43686798959773165,141606,0,0.006300944500596983,-0.014388232657603695,0.015188830003364257,0.018736186965029895,44.34993174253339,0.4431688129901886,0.4408294215798378,1,-0.020897541217966276,0.35071524196148174,-0.014492747006300818,0.0338165102259147,-0.6281413633188553
|
||||
-230688000,0.43266740441322327,0.43266740441322327,0.42321589281947636,0.4316171257274248,141606,0,0.009451511593746909,0.002433253152440251,0.006932776529027556,0.018702964864655468,38.3690213971854,0.43896826505661013,0.4417987272143364,0,-0.020668513145541745,0.33881190281249685,0.00243029758544588,0.0,0.0
|
||||
-230601600,0.4284665286540985,0.43476750814400944,0.4263661254976142,0.4326672199772961,181792,0,0.008401382646395228,-0.00970924945183227,0.006933145484898949,0.018829774525337656,37.20886489483166,0.43476760387420654,0.4426625922322273,0,-0.03206971591283991,0.21928003497697682,-0.00975669154881895,-0.007008358802933712,0.28378741013798847
|
||||
-230515200,0.4295167922973633,0.4305669558848625,0.4253160996174305,0.42846666703980013,130125,0,0.005250856267431991,0.0024512151429048057,0.008072208775677304,0.018579115835643673,26.027017024426357,0.43203718662261964,0.44326510578393935,0,-0.031016006690311015,0.20433069805482987,0.0024482158153978605,0.0,-0.28420942615736666
|
||||
-230428800,0.4347675144672394,0.4358176394009072,0.425315968435063,0.42951665981935516,135866,0,0.010501670965844201,0.01222471918220358,0.010640681923862175,0.01837560139486064,37.4995344035843,0.43140708208084105,0.4437639430165291,0,-0.02027300480551808,0.29529014881391336,0.012150600742685374,-0.009413390365001884,0.04411911623438991
|
||||
-230342400,0.44946983456611633,0.4526202093396347,0.4368677605231847,0.4368677605231847,160742,0,0.015752448816449993,0.0338165102259147,0.016274517682145193,0.019763188878018225,47.36862347822872,0.4349776148796082,0.4449455738067627,0,0.010168121733734825,0.6108889582267539,0.03325730407780773,-0.030878329079438438,0.18309216433839226
|
||||
-230083200,0.44946983456611633,0.4515700844151286,0.44526914321847244,0.44946983456611633,189446,0,0.00630094119665614,0.0,0.016526122194252514,0.01780821910636947,44.44469845283924,0.43833810091018677,0.44529018253088,0,0.009386355682670988,0.6021206179180044,0.0,-0.03921582538606416,0.17857187293924426
|
||||
-229996800,0.4463197886943817,0.452620737239956,0.4431692185966731,0.4494703587920903,166483,0,0.009451518643282919,-0.007008358802933712,0.01584250451838052,0.01705311112451271,50.79404691171945,0.4419087529182434,0.44495414197444916,0,0.00306918531845235,0.5338925957910925,-0.007033032699416595,0.010204191702296361,-0.12121132143196478
|
||||
-229910400,0.4463197886943817,0.4484200409929588,0.4431692185966731,0.4463197886943817,118643,0,0.005250822396285715,0.0,0.016104379982768452,0.017042147952175107,53.33394505913954,0.4452693521976471,0.4446916073560715,1,0.0036613718617057867,0.5408696101135357,0.0,-0.022726583780149467,-0.28735666704708585
|
||||
-229824000,0.44211840629577637,0.44946966123160315,0.44211840629577637,0.4463190960234566,187533,0,0.007351254935826779,-0.009413390365001884,0.01746975838900703,0.01525447093894601,48.38668039230675,0.44673953056335447,0.443483904004097,1,-0.003079024280231879,0.4601798387419495,-0.009457976348193904,-0.002584518408414782,0.5806495115598898
|
||||
-229737600,0.4284665286540985,0.44106844930399675,0.4263661254976142,0.44106844930399675,244941,0,0.014702323806382533,-0.030878329079438438,0.012686023190613375,0.01518977018036817,31.818379218818066,0.44253886938095094,0.44232870638370514,1,-0.0313390868138268,0.11378822050871727,-0.03136511158828044,0.005181475143777758,0.3061221225064388
|
||||
-229478400,0.41166386008262634,0.42426573949665,0.41166386008262634,0.42426573949665,342534,0,0.012601879414023631,-0.03921582538606416,0.016823204677029163,0.01714249652170299,26.923107708584823,0.43497767448425295,0.4402283921837807,0,-0.06488571070906668,-0.1557417442091351,-0.04000547940328663,-0.028350590490105354,0.3984347250970641
|
||||
-229392000,0.4158645570278168,0.4169148738543105,0.4022125080997858,0.4116640563205039,208582,0,0.01470236575452466,0.010204191702296361,0.02075752070302996,0.01718427089165764,32.8947717257894,0.4288866281509399,0.4381280839443207,0,-0.050815110312200984,0.009594680583127593,0.010152480421840793,0.013262964065047678,-0.3910619091827381
|
||||
-229305600,0.40641337633132935,0.41901530553599137,0.40536325070006135,0.4158647369924391,183706,0,0.013652054835930016,-0.022726583780149467,0.019408022611502627,0.016879207938482525,31.250157413250662,0.4209053456783295,0.436185297369957,0,-0.06825521451122218,-0.062486281918465475,-0.02298881325579785,-0.0026181246554806137,-0.11926244834165944
|
||||
-229219200,0.405362993478775,0.41481434814256973,0.403262590229242,0.4064131184436909,260250,0,0.011551757913327743,-0.002584518408414782,0.020413296816548316,0.016871877689861342,33.33335855876037,0.4135542631149292,0.4343475267291069,0,-0.06673120362536089,0.011117127246601327,-0.002587864041927367,0.007874321312114185,0.41666575941994277
|
||||
-229132800,0.4074633717536926,0.41061390066414366,0.40326267931640253,0.4053630830299483,170310,0,0.0073512213477411326,0.005181475143777758,0.02067038230291298,0.016884138512927208,34.21053122898442,0.409353631734848,0.43250973224639894,0,-0.057909357004798045,0.10322125915948968,0.005168097492192758,0.015624640877730744,-0.34559077809798266
|
||||
-228873600,0.3959115445613861,0.4106138712125306,0.3959115445613861,0.40746334252805383,225805,0,0.014702326651144515,-0.028350590490105354,0.017065284271823144,0.01659136906242599,31.3253873007081,0.40620316863059996,0.42962180227041247,0,-0.07846496041606488,0.002703385063368672,-0.0287602293905465,0.005127895032961627,0.3258469849098702
|
||||
-228787200,0.4011625051498413,0.4043129199701329,0.3990621008364977,0.3990621008364977,271731,0,0.005250819133635232,0.013262964065047678,0.01789997373546762,0.017159866007999354,34.4828654765889,0.4032627582550049,0.4272064357995987,0,-0.06096333872173809,0.1259202105838628,0.013175780981858254,0.005102747404338803,0.20338787892207888
|
||||
-228700800,0.40011221170425415,0.4064131536898244,0.3990619333285516,0.40116233676024193,126298,0,0.007351220361272781,-0.0026181246554806137,0.015607602797964326,0.01705200361303818,30.120636405504897,0.40200252532958985,0.4250536024570465,0,-0.05867822460183192,0.15321328792934535,-0.002621557937652824,-0.002537808550385101,-0.5352094534668477
|
||||
-228614400,0.40326282382011414,0.40326282382011414,0.3969618404012085,0.4001124087705564,135866,0,0.006300983418905615,0.007874321312114185,0.016363411768559932,0.01720220557976284,19.444781658631328,0.4015824913978577,0.4233208417892456,0,-0.047382542953360085,0.2266046955489784,0.007843480637843228,-0.007634240437052742,0.07575733582479538
|
||||
-228528000,0.40956366062164307,0.40956366062164307,0.403262717198636,0.403262717198636,105248,0,0.006300943423007077,0.015624640877730744,0.01792999479456914,0.01755128894156174,25.64116557499976,0.40200254917144773,0.4222181662917137,0,-0.029971485550263077,0.3287985931989498,0.01550383293859147,-0.007691806166426396,-0.2253543932992802
|
||||
-228268800,0.41166386008262634,0.4148142341113452,0.4106136970764719,0.4106136970764719,91853,0,0.004200537034873331,0.005127895032961627,0.007189179497322493,0.01760119422671904,28.57128641569264,0.4051530122756958,0.4211679890751839,0,-0.022566123824906636,0.3712225356927293,0.005114792153597925,0.020670647511873863,-0.12727082699908787
|
||||
-228182400,0.41376447677612305,0.41481460238466655,0.4106140616205438,0.41166422555903615,84198,0,0.00420054076412274,0.005102747404338803,0.006552431165838494,0.017586275083797977,30.37983595845546,0.40767340660095214,0.4204328864812851,0,-0.01586081850297616,0.40958071636009874,0.005089772508495266,-0.020252025040852883,-0.08333968406040082
|
||||
-228096000,0.412714421749115,0.4211156197039618,0.412714421749115,0.4137645475372487,231546,0,0.008401197954846784,-0.002537808550385101,0.00652538353213048,0.017561207810178392,31.579356147309298,0.4101938486099243,0.4195927679538727,0,-0.016392909339928985,0.40646539446745167,-0.002541034245123829,-0.007752088623792508,1.7500178151500037
|
||||
-228009600,0.40956366062164307,0.4127142281579902,0.40851353532608975,0.4127142281579902,103334,0,0.004200692831900443,-0.007634240437052742,0.008831648665366974,0.017282994132705003,36.363823989866304,0.4114540159702301,0.41833257526159284,0,-0.02096158692510708,0.37922883241978617,-0.007663530416969306,0.0026039713241676754,-0.553721506741641
|
||||
-227923200,0.40641337633132935,0.40956379155508293,0.40536325070006135,0.40956379155508293,101421,0,0.004200540855021584,-0.007691806166426396,0.00641416659935863,0.014989717658801248,45.283354278117095,0.41082395911216735,0.4161797523498535,0,-0.023466725527565346,0.3543630481917832,-0.007721540680359201,-0.02337642234653181,-0.018512783788491638
|
||||
-227664000,0.41481420397758484,0.41691464482705376,0.4053628525985232,0.40641297719847763,112902,0,0.011551792228530533,0.020670647511873863,0.011881577306624785,0.016023349499159453,49.122647173920186,0.41145402789115904,0.4144469708204269,0,0.0008860799644185846,0.5061943223329526,0.020459908800018595,-0.02127696188055661,0.1132014079924275
|
||||
-227577600,0.40641337633132935,0.41691505427345543,0.40536325070006135,0.41481461136117115,135866,0,0.011551803573394082,-0.020252025040852883,0.015003657383574643,0.01642796001221002,50.0,0.40998380780220034,0.4124516502022743,0,-0.014639955660217807,0.38262652041451234,-0.020459908800018727,-0.03804380013708175,0.203397636888629
|
||||
-227491200,0.40326282382011414,0.4074635177626654,0.3980119659744119,0.40641335385951444,155002,0,0.009451551788253465,-0.007752088623792508,0.015101902780188595,0.01640657532290978,48.275978486794976,0.4080934882164001,0.41029880195856094,0,-0.017148424769608317,0.3280164272077934,-0.00778229225823236,0.08474651953320622,0.14084465576376726
|
||||
-227404800,0.4043129086494446,0.4085136021686789,0.40326278318206565,0.40326278318206565,158829,0,0.005250818986613226,0.0026039713241676754,0.015269265453221203,0.0164537396118301,47.36841843222343,0.40704333782196045,0.40840852707624437,0,-0.010028239263562666,0.35438241194915554,0.0026005868649225093,-0.03906289549638964,0.024690003999948473
|
||||
-227318400,0.39486151933670044,0.40431287780166475,0.39381120229973887,0.40431287780166475,290867,0,0.010501675501925878,-0.02337642234653181,0.017977516076866717,0.01589259295648035,49.09101791649016,0.4047329664230347,0.4067282766103745,0,-0.029176130493237862,-0.0017937714972563643,-0.02365398505592884,-0.01626018010895447,0.8313217359550209
|
||||
-227059200,0.3864600658416748,0.38961063310614746,0.38225937337226806,0.38961063310614746,399942,0,0.007351259733879401,-0.02127696188055661,0.011120779813294401,0.014215497702226583,37.93077465064391,0.39906213879585267,0.40546808689832686,0,-0.04687920374216381,-0.14894708568631004,-0.02150657931638488,0.03856758744389421,0.3749995702503206
|
||||
-226972800,0.3717576563358307,0.3822592893769474,0.370707493031719,0.3822592893769474,426733,0,0.011551796345228404,-0.03804380013708175,0.015572516634024699,0.015846816952678595,30.985643018423573,0.39213099479675295,0.40326274186372757,0,-0.07812545583133301,-0.27749659449654185,-0.038786359640992356,0.0212203059078917,0.06698721314590617
|
||||
-226886400,0.40326282382011414,0.40326282382011414,0.36965757891928436,0.3717578683956387,530067,0,0.03360524490082978,0.08474651953320622,0.04906862425431746,0.025167834712813704,50.0,0.39213099479675295,0.4031052142381668,0,0.00039098869570608485,0.5038999974068357,0.0813463371483835,-0.0181820795209372,0.24215141552211805
|
||||
-226800000,0.38751021027565,0.3938111534675903,0.3801591418266663,0.3938111534675903,199014,0,0.013652011640924,-0.03906289549638964,0.05215452666210514,0.026636598397789084,40.186886391141144,0.38877045512199404,0.40221257507801056,0,-0.03655371739560598,0.1553978082801425,-0.039846320120763015,0.029100161466109498,-0.6245493494218655
|
||||
-226713600,0.38120922446250916,0.38961060887889726,0.38015909932287534,0.38751016694997087,128211,0,0.00945150955602192,-0.01626018010895447,0.05170480090057941,0.026766906419351155,36.936968952598235,0.3860399961471558,0.4008998677134514,0,-0.04911611311634645,0.07430263431474898,-0.01639382757238235,0.015423968544947098,-0.35576894087853117
|
||||
-226454400,0.3959115445613861,0.4043127755136459,0.39066072730380985,0.39066072730380985,241114,0,0.013652048209836065,0.03856758744389421,0.0541472483906561,0.02759971303865316,43.089351548388095,0.387930291891098,0.4008998677134514,0,-0.012442815659971074,0.3921560866266104,0.03784244401109644,0.0,0.8806030683794681
|
||||
-226368000,0.4043129086494446,0.4064133129039773,0.3927611068788955,0.3959116749307508,210496,0,0.013652206025081826,0.0212203059078917,0.048265680040148376,0.02785180563609258,46.9229969922849,0.3944413423538208,0.40105738788843154,0,0.008117343949586298,0.5702289694063154,0.02099829054697137,0.005064712578728647,-0.126985575288038
|
||||
-226281600,0.39696165919303894,0.40431276482945755,0.3959115340992049,0.40431276482945755,352102,0,0.008401230730252673,-0.0181820795209372,0.0317057518732489,0.028166568694417585,45.52236198203621,0.3931811094284058,0.4008998602628708,0,-0.009823403448555812,0.41529902633874766,-0.018349404846964294,-0.020152330165447263,0.6727253724536333
|
||||
-226195200,0.40851330757141113,0.40956343228149805,0.3938109483515373,0.39696151413137837,451610,0,0.01575248392996076,0.029100161466109498,0.02639456445734182,0.028871012974635655,50.70409418246454,0.39738172888755796,0.4011623844504356,0,0.018324058799894072,0.656552697459192,0.028684790760207107,0.0334194617926975,0.28261128877427555
|
||||
-226108800,0.41481420397758484,0.42216545947638584,0.40431257467892073,0.4085132647282984,474573,0,0.017852884797465107,0.015423968544947098,0.02161823858203893,0.028865710014149885,50.0,0.40410272479057313,0.40142491161823274,1,0.03335441317126264,0.7791184596342496,0.015306228280085864,0.01990120099308701,0.05084696973051961
|
||||
-225849600,0.41481420397758484,0.4190148940269625,0.4095633893282528,0.41481420397758484,271731,0,0.0094515046987097,0.0,0.018796090366969043,0.028850115255192026,53.03011768317708,0.40788325667381287,0.4015824288129807,1,0.03294908894225124,0.7721769473981865,0.0,-0.02439138344113334,-0.4274200175736925
|
||||
-225676800,0.4169151186943054,0.41901537028136787,0.4064134391294818,0.41481467545746503,677414,0,0.01260193115188607,0.005064712578728647,0.01763292785492123,0.02884981575004053,54.96185471626135,0.41040369868278503,0.40173996090888975,1,0.037773583068718475,0.8074665269606645,0.005051930063652372,0.02500119722923899,1.4929581093066306
|
||||
-225590400,0.40851330757141113,0.417964813261354,0.4053628951112343,0.41691468855126707,493709,0,0.012601918150119684,-0.020152330165447263,0.01832473925387378,0.029222455903809265,51.44917075377608,0.4127140283584595,0.4015299052000046,1,0.017391985705094815,0.6433739158708792,-0.020358158343738112,0.012194134351017905,-0.2711857150870811
|
||||
-225504000,0.4221656024456024,0.42531597731236115,0.40746327811851973,0.40851340307410594,396115,0,0.017852699193841415,0.0334194617926975,0.01973978202701527,0.0300952732147614,59.15475590695009,0.41544448733329775,0.4021600022912025,1,0.049745375075649356,0.8871655656312836,0.03287316947152778,0.007228925384508367,-0.19767514872121028
|
||||
-225244800,0.43056720495224,0.4316173308172625,0.4263665098423587,0.4263665098423587,292781,0,0.005250820974903814,0.01990120099308701,0.020324448350720264,0.030262570274287453,64.78861924124277,0.41859508752822877,0.40336769372224807,1,0.06743106017984934,0.9727852063974494,0.019705760833292053,-0.0033615932841457585,-0.2608686871236888
|
||||
-225158400,0.4200650751590729,0.43581755955694285,0.4200650751590729,0.4305667442009586,962541,0,0.01575248439786997,-0.02439138344113334,0.025006535236870263,0.030578462618680163,66.66635135257408,0.4196452617645264,0.40363023728132247,1,0.040717558695424705,0.7804959834637583,-0.024693780618215318,0.026505450240469797,2.287580136689198
|
||||
|
||||
|
Binary file not shown.
@@ -1,3 +1,4 @@
|
||||
from sklearn.preprocessing import StandardScaler
|
||||
import pandas as pd
|
||||
import numpy as np
|
||||
|
||||
@@ -52,15 +53,27 @@ def MakeFeatures(df, i):
|
||||
# This is our training metric of 5 days ahead
|
||||
df['Target_Close'] = df['Close'].shift(-5).pct_change()
|
||||
|
||||
# for Up (> 0.5%), -1 for Down (< -0.5%), 0 for Flat
|
||||
df['Target_Direction'] = np.where(df['Target_Close'] > 0.005, 1, np.where(df['Target_Close'] < -0.005, -1, 0))
|
||||
|
||||
# Volume Change
|
||||
df['Volume_Chg'] = df['Volume'].pct_change()
|
||||
|
||||
# Return new df with new features
|
||||
return df
|
||||
|
||||
def Prepare(df):
|
||||
|
||||
# Remove indicators and set the target
|
||||
X = df.drop('Target_Close', axis=1)
|
||||
Y = df['Target_Close']
|
||||
|
||||
# Scale the features to the same size
|
||||
feature_scaler = StandardScaler()
|
||||
X_scaled = feature_scaler.fit_transform(X)
|
||||
|
||||
# Safe for the Y
|
||||
target_scaler = StandardScaler()
|
||||
y_scaled = target_scaler.fit_transform(Y.values.reshape(-1, 1))
|
||||
|
||||
return X_scaled, y_scaled, feature_scaler, target_scaler
|
||||
|
||||
def CleanDF(df):
|
||||
# Make date the index so it doesnt influence the training
|
||||
@@ -69,5 +82,8 @@ def CleanDF(df):
|
||||
# Drop rows with null values
|
||||
df.dropna(inplace=True)
|
||||
|
||||
# Replace Infinity with 0 -> This fixes the AI mental breakdown
|
||||
df['Volume_Chg'] = df['Volume_Chg'].replace([np.inf, -np.inf], 0)
|
||||
|
||||
# Return new df thats cleaned
|
||||
return df
|
||||
|
||||
Reference in New Issue
Block a user