diff --git a/bb_trade.py b/bb_trade.py index da4bb0f..8ddf9a1 100644 --- a/bb_trade.py +++ b/bb_trade.py @@ -1,6 +1,6 @@ """ 布林带均值回归策略 — 实盘交易 (D方案: 递增加仓) -BB(10, 2.5) | 5分钟K线 | ETH | 50x杠杆 | 递增加仓+1%/次 max=3 +BB(10, 2.5) | 5分钟K线 | ETH | 50x杠杆 逐仓 | 递增加仓+1%/次 max=3 逻辑: - 价格触及上布林带 → 平多(如有) + 开空; 已持空则加仓 @@ -43,7 +43,7 @@ class BBTradeConfig: # 仓位管理 LEVERAGE = 50 # 杠杆倍数 - OPEN_TYPE = "cross" # 全仓模式 + OPEN_TYPE = "isolated" # 逐仓模式 MARGIN_PCT = 0.01 # 首次开仓用权益的1%作为保证金 # 递增加仓 (D方案) @@ -207,7 +207,7 @@ class BBTrader: return False def set_leverage(self) -> bool: - """设置杠杆和全仓模式""" + """设置杠杆和逐仓模式""" try: resp = self.api.post_submit_leverage( contract_symbol=self.cfg.CONTRACT_SYMBOL, diff --git a/models/database.db b/models/database.db index a030d20..987e452 100644 Binary files a/models/database.db and b/models/database.db differ diff --git a/strategy/bb_backtest.py b/strategy/bb_backtest.py index 90918c2..993d5d3 100644 --- a/strategy/bb_backtest.py +++ b/strategy/bb_backtest.py @@ -36,8 +36,24 @@ class BBConfig: # Risk management max_daily_loss: float = 150.0 # stop trading after this daily loss + max_daily_loss_pct: float = 0.0 # if >0, daily loss limit = equity * pct (overrides fixed) stop_loss_pct: float = 0.0 # 0 = disabled; e.g. 0.02 = 2% SL from entry + # Liquidation + liq_enabled: bool = True # enable liquidation simulation + cross_margin: bool = True # 全仓模式: 仅当 equity<=0 爆仓; False=逐仓: 按仓位保证金算强平价 + maint_margin_rate: float = 0.005 # 逐仓时用: 0.5% 维持保证金率 + + # Slippage: applied to each trade execution price + slippage_pct: float = 0.0005 # 0.05% slippage per trade + + # 成交价模式: False=理想(在触轨的极价成交), True=真实(在K线收盘价成交) + # 实盘检测到触及布林带后以市价单成交,通常接近收盘价 + fill_at_close: bool = False + + # Max single order notional (market capacity limit, USDT) + max_notional: float = 0.0 # 0 = unlimited; e.g. 500000 = 50万U max per order + # Dynamic sizing: if > 0, margin = equity * margin_pct (overrides margin_per_trade) margin_pct: float = 0.0 # e.g. 0.01 = 1% of equity per trade @@ -124,6 +140,7 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: day_pnl = 0.0 day_stopped = False current_day = None + day_start_equity = cfg.initial_capital # equity at start of each day # Delayed rebate tracking pending_rebate = 0.0 # fees from previous day to be rebated @@ -151,6 +168,12 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: if position == 0: return + # Apply slippage: closing long sells lower, closing short buys higher + if position == 1: + exit_price = exit_price * (1 - cfg.slippage_pct) + else: + exit_price = exit_price * (1 + cfg.slippage_pct) + if position == 1: gross = entry_qty * (exit_price - entry_price) else: @@ -193,6 +216,12 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: nonlocal balance, total_fee, day_pnl, today_fees nonlocal pyramid_count, last_add_margin + # Apply slippage: buy higher, sell lower + if side == "long" or (is_add and position == 1): + price = price * (1 + cfg.slippage_pct) + else: + price = price * (1 - cfg.slippage_pct) + if is_add and cfg.pyramid_step > 0: # 递增加仓: margin = equity * (margin_pct + step * (count+1)) equity = balance + unrealised(price) @@ -210,6 +239,12 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: if margin <= 0: return notional = margin * cfg.leverage + + # Cap notional to market capacity limit + if cfg.max_notional > 0 and notional > cfg.max_notional: + notional = cfg.max_notional + margin = notional / cfg.leverage + qty = notional / price fee = notional * cfg.fee_rate @@ -245,9 +280,10 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: if bar_day is not None and bar_day != current_day: # New day: move today's fees to pending, reset if cfg.rebate_pct > 0: - pending_rebate = today_fees * cfg.rebate_pct + pending_rebate += today_fees * cfg.rebate_pct today_fees = 0.0 rebate_applied_today = False + day_start_equity = balance + unrealised(arr_close[i]) day_pnl = 0.0 day_stopped = False current_day = bar_day @@ -266,7 +302,7 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: out_position[i] = position continue - # Daily loss check + # Daily loss check (percentage-based if configured, else fixed) if day_stopped: out_equity[i] = balance + unrealised(arr_close[i]) out_balance[i] = balance @@ -274,7 +310,12 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: continue cur_equity = balance + unrealised(arr_close[i]) - if day_pnl + unrealised(arr_close[i]) <= -cfg.max_daily_loss: + if cfg.max_daily_loss_pct > 0: + # percentage-based: use start-of-day equity + daily_loss_limit = day_start_equity * cfg.max_daily_loss_pct + else: + daily_loss_limit = cfg.max_daily_loss + if day_pnl + unrealised(arr_close[i]) <= -daily_loss_limit: close_position(arr_close[i], i) day_stopped = True out_equity[i] = balance @@ -291,39 +332,124 @@ def run_bb_backtest(df: pd.DataFrame, cfg: BBConfig) -> BBResult: sl_price = entry_price * (1 + cfg.stop_loss_pct) close_position(sl_price, i) + # Liquidation check + # 全仓(cross_margin): 仅当 账户权益<=0 时爆仓,整仓担保 + # 逐仓: 按仓位保证金算强平价 + if position != 0 and cfg.liq_enabled and entry_margin > 0: + cur_equity = balance + unrealised(arr_close[i]) + upnl = unrealised(arr_close[i]) + if cfg.cross_margin: + # 全仓: 只有权益归零才爆仓 + if cur_equity <= 0: + balance += upnl # 实现亏损 + balance = max(0.0, balance) + day_pnl += upnl + trades.append(BBTrade( + side="long" if position == 1 else "short", + entry_price=entry_price, exit_price=arr_close[i], + entry_time=entry_time, exit_time=ts_index[i], + margin=entry_margin, leverage=cfg.leverage, qty=entry_qty, + gross_pnl=upnl, fee=0.0, net_pnl=upnl, + )) + position = 0 + entry_price = 0.0 + entry_time = None + entry_margin = 0.0 + entry_qty = 0.0 + pyramid_count = 0 + last_add_margin = 0.0 + out_equity[i] = balance + out_balance[i] = balance + out_position[i] = 0 + if balance <= 0: + out_equity[i:] = 0.0 + out_balance[i:] = 0.0 + break + else: + # 逐仓: 按强平价 + liq_threshold = 1.0 / cfg.leverage * (1 - cfg.maint_margin_rate) + if position == 1: + liq_price = entry_price * (1 - liq_threshold) + if arr_low[i] <= liq_price: + balance -= entry_margin + day_pnl -= entry_margin + trades.append(BBTrade( + side="long", entry_price=entry_price, exit_price=liq_price, + entry_time=entry_time, exit_time=ts_index[i], + margin=entry_margin, leverage=cfg.leverage, qty=entry_qty, + gross_pnl=-entry_margin, fee=0.0, net_pnl=-entry_margin, + )) + position = 0 + entry_price = 0.0 + entry_time = None + entry_margin = 0.0 + entry_qty = 0.0 + pyramid_count = 0 + last_add_margin = 0.0 + if balance <= 0: + balance = 0.0 + out_equity[i] = 0.0 + out_balance[i] = 0.0 + out_position[i] = 0 + out_equity[i:] = 0.0 + out_balance[i:] = 0.0 + break + elif position == -1: + liq_price = entry_price * (1 + liq_threshold) + if arr_high[i] >= liq_price: + balance -= entry_margin + day_pnl -= entry_margin + trades.append(BBTrade( + side="short", entry_price=entry_price, exit_price=liq_price, + entry_time=entry_time, exit_time=ts_index[i], + margin=entry_margin, leverage=cfg.leverage, qty=entry_qty, + gross_pnl=-entry_margin, fee=0.0, net_pnl=-entry_margin, + )) + position = 0 + entry_price = 0.0 + entry_time = None + entry_margin = 0.0 + entry_qty = 0.0 + pyramid_count = 0 + last_add_margin = 0.0 + if balance <= 0: + balance = 0.0 + out_equity[i:] = 0.0 + out_balance[i:] = 0.0 + break + # Signal detection: use high/low to check if price touched BB touched_upper = arr_high[i] >= arr_upper[i] touched_lower = arr_low[i] <= arr_lower[i] + # 成交价: fill_at_close=True 时用收盘价(模拟实盘市价单),否则用触轨价(理想化) + fill_price = arr_close[i] if cfg.fill_at_close else None + if touched_upper and touched_lower: # Both touched in same bar (wide bar) — skip, too volatile pass elif touched_upper: # Price touched upper BB → go short + exec_price = fill_price if fill_price is not None else arr_upper[i] if position == 1: - # Close long at upper BB price - close_position(arr_upper[i], i) + close_position(exec_price, i) if position == 0: - # Open short - open_position("short", arr_upper[i], i) + open_position("short", exec_price, i) elif position == -1 and cfg.pyramid_enabled: - # Already short → add to short (pyramid) can_add = cfg.pyramid_max <= 0 or pyramid_count < cfg.pyramid_max if can_add: - open_position("short", arr_upper[i], i, is_add=True) + open_position("short", exec_price, i, is_add=True) elif touched_lower: # Price touched lower BB → go long + exec_price = fill_price if fill_price is not None else arr_lower[i] if position == -1: - # Close short at lower BB price - close_position(arr_lower[i], i) + close_position(exec_price, i) if position == 0: - # Open long - open_position("long", arr_lower[i], i) + open_position("long", exec_price, i) elif position == 1 and cfg.pyramid_enabled: - # Already long → add to long (pyramid) can_add = cfg.pyramid_max <= 0 or pyramid_count < cfg.pyramid_max if can_add: - open_position("long", arr_lower[i], i, is_add=True) + open_position("long", exec_price, i, is_add=True) # Record equity out_equity[i] = balance + unrealised(arr_close[i]) diff --git a/strategy/data_loader.py b/strategy/data_loader.py index 79f4a30..7ed5d9b 100644 --- a/strategy/data_loader.py +++ b/strategy/data_loader.py @@ -18,20 +18,25 @@ PERIOD_MAP = { } -def load_klines(period: str, start_date: str, end_date: str) -> pd.DataFrame: +def load_klines(period: str, start_date: str, end_date: str, tz: str | None = None) -> pd.DataFrame: """ 加载指定周期、指定日期范围的K线数据 :param period: '1m','3m','5m','15m','30m','1h' :param start_date: 'YYYY-MM-DD' :param end_date: 'YYYY-MM-DD' (不包含该日) + :param tz: 日期解释的时区,如 'Asia/Shanghai' 表示按北京时间;None 则用本地时区 :return: DataFrame with columns: datetime, open, high, low, close """ table = PERIOD_MAP.get(period) if not table: raise ValueError(f"不支持的周期: {period}, 可选: {list(PERIOD_MAP.keys())}") - start_ts = int(pd.Timestamp(start_date).timestamp() * 1000) - end_ts = int(pd.Timestamp(end_date).timestamp() * 1000) + if tz: + start_ts = int(pd.Timestamp(start_date, tz=tz).timestamp() * 1000) + end_ts = int(pd.Timestamp(end_date, tz=tz).timestamp() * 1000) + else: + start_ts = int(pd.Timestamp(start_date).timestamp() * 1000) + end_ts = int(pd.Timestamp(end_date).timestamp() * 1000) db = SqliteDatabase(str(DB_PATH)) db.connect() diff --git a/strategy/results/bb_15m_200u_2020_2025.png b/strategy/results/bb_15m_200u_2020_2025.png new file mode 100644 index 0000000..d23e3fb Binary files /dev/null and b/strategy/results/bb_15m_200u_2020_2025.png differ diff --git a/strategy/results/bb_15m_2020_2025_conservative_daily.csv b/strategy/results/bb_15m_2020_2025_conservative_daily.csv new file mode 100644 index 0000000..0eea0ac --- /dev/null +++ b/strategy/results/bb_15m_2020_2025_conservative_daily.csv @@ -0,0 +1,2193 @@ +datetime,equity,pnl +2020-01-01,196.0201310838391,0.0 +2020-01-02,176.02692296439596,-19.993208119443125 +2020-01-03,181.58482417212815,5.557901207732186 +2020-01-04,186.0090490162708,4.424224844142657 +2020-01-05,165.11239592419253,-20.89665309207828 +2020-01-06,138.3824824576893,-26.729913466503234 +2020-01-07,151.69988887087783,13.317406413188536 +2020-01-08,151.6120548375984,-0.08783403327942096 +2020-01-09,144.8760629988837,-6.73599183871471 +2020-01-10,122.99129093969401,-21.884772059189686 +2020-01-11,122.03948389172868,-0.9518070479653318 +2020-01-12,126.9180314928317,4.878547601103023 +2020-01-13,145.4054406595038,18.487409166672094 +2020-01-14,113.22378892375865,-32.18165173574515 +2020-01-15,91.28815793172059,-21.935630992038057 +2020-01-16,94.56121414826615,3.2730562165455552 +2020-01-17,81.60956551713613,-12.951648631130013 +2020-01-18,65.20592963747106,-16.403635879665075 +2020-01-19,61.19256905059858,-4.01336058687248 +2020-01-20,57.7128121610814,-3.4797568895171764 +2020-01-21,61.79611120175502,4.083299040673616 +2020-01-22,64.73050208155483,2.934390879799814 +2020-01-23,65.22020762390393,0.4897055423490997 +2020-01-24,71.95489981497931,6.734692191075382 +2020-01-25,67.43829675131926,-4.516603063660057 +2020-01-26,60.18696781685907,-7.25132893446019 +2020-01-27,61.880723530521024,1.6937557136619574 +2020-01-28,62.281390414386,0.40066688386497873 +2020-01-29,59.80631211501333,-2.475078299372676 +2020-01-30,50.422181379291416,-9.38413073572191 +2020-01-31,47.61680864314726,-2.8053727361441574 +2020-02-01,53.27190480621898,5.655096163071718 +2020-02-02,46.66036832186206,-6.611536484356918 +2020-02-03,50.443266788681385,3.7828984668193257 +2020-02-04,53.053512044891775,2.6102452562103906 +2020-02-05,47.07711825719382,-5.976393787697958 +2020-02-06,48.35588731524695,1.2787690580531361 +2020-02-07,44.67741634876665,-3.6784709664803046 +2020-02-08,40.71602426560142,-3.9613920831652294 +2020-02-09,37.658517586077714,-3.057506679523705 +2020-02-10,33.14482385423289,-4.513693731844825 +2020-02-11,30.7966239038721,-2.34819995036079 +2020-02-12,32.86131830557312,2.064694401701022 +2020-02-13,33.837209978676555,0.9758916731034333 +2020-02-14,27.967311465015186,-5.869898513661369 +2020-02-15,26.547688916741713,-1.4196225482734732 +2020-02-16,25.231995992170926,-1.3156929245707865 +2020-02-17,25.25778312479087,0.02578713261994281 +2020-02-18,25.351855241019397,0.09407211622852785 +2020-02-19,23.55348341373747,-1.798371827281926 +2020-02-20,24.048167208955984,0.49468379521851347 +2020-02-21,27.59753530410372,3.5493680951477344 +2020-02-22,25.388466868706228,-2.2090684353974908 +2020-02-23,25.634554615860544,0.24608774715431636 +2020-02-24,28.851147337062528,3.216592721201984 +2020-02-25,30.474762805347492,1.6236154682849637 +2020-02-26,25.841214719092086,-4.633548086255406 +2020-02-27,18.161885587962775,-7.679329131129311 +2020-02-28,20.001690850456658,1.8398052624938828 +2020-02-29,15.319916943934901,-4.681773906521757 +2020-03-01,17.318853966202983,1.9989370222680822 +2020-03-02,14.159276653638099,-3.1595773125648847 +2020-03-03,14.820733214109314,0.6614565604712155 +2020-03-04,16.310424432876886,1.4896912187675717 +2020-03-05,14.298184214679354,-2.0122402181975314 +2020-03-06,12.488184115056571,-1.8100000996227834 +2020-03-07,12.32830540000989,-0.1598787150466805 +2020-03-08,9.132015303016708,-3.1962900969931827 +2020-03-09,8.835986553940018,-0.2960287490766902 +2020-03-10,10.475134586896456,1.639148032956438 +2020-03-11,10.340428514846485,-0.13470607204997087 +2020-03-12,9.125562193810678,-1.2148663210358066 +2020-03-13,8.037784418590654,-1.0877777752200242 +2020-03-14,8.55595107586051,0.5181666572698553 +2020-03-15,7.831152360568797,-0.7247987152917119 +2020-03-16,7.166752830029455,-0.6643995305393426 +2020-03-17,9.43914035503609,2.2723875250066348 +2020-03-18,10.781439164101526,1.3422988090654364 +2020-03-19,7.800742453484844,-2.980696710616682 +2020-03-20,6.6338616839921505,-1.1668807694926935 +2020-03-21,5.783797179900666,-0.8500645040914847 +2020-03-22,4.251431815829546,-1.5323653640711195 +2020-03-23,3.9600806558940067,-0.2913511599355396 +2020-03-24,3.781691575753255,-0.1783890801407515 +2020-03-25,3.7462554771045973,-0.03543609864865793 +2020-03-26,3.901188486533997,0.1549330094293997 +2020-03-27,3.917306732092788,0.016118245558791156 +2020-03-28,4.577705174688223,0.6603984425954348 +2020-03-29,4.0741073535367445,-0.5035978211514784 +2020-03-30,3.831279969997776,-0.24282738353896827 +2020-03-31,4.484781316002002,0.653501346004226 +2020-04-01,3.81077632786978,-0.6740049881322223 +2020-04-02,3.7721865281587976,-0.03858979971098231 +2020-04-03,3.0136555058173378,-0.7585310223414599 +2020-04-04,2.8090871094244845,-0.2045683963928533 +2020-04-05,2.8929413259247543,0.08385421650026981 +2020-04-06,2.3080580351371416,-0.5848832907876127 +2020-04-07,2.718841307638435,0.41078327250129343 +2020-04-08,2.9757371846578082,0.2568958770193732 +2020-04-09,2.9313085476406857,-0.04442863701712252 +2020-04-10,2.5688467068150938,-0.36246184082559196 +2020-04-11,2.629237049609606,0.060390342794512275 +2020-04-12,2.1797928909967146,-0.44944415861289144 +2020-04-13,1.8878346094302898,-0.2919582815664248 +2020-04-14,1.9740321796300497,0.08619757019975993 +2020-04-15,1.704308063282299,-0.26972411634775084 +2020-04-16,1.4458514091414563,-0.2584566541408426 +2020-04-17,1.6772451488173206,0.2313937396758643 +2020-04-18,1.4142611167599923,-0.26298403205732823 +2020-04-19,1.5441567401445304,0.12989562338453808 +2020-04-20,1.4557449420636015,-0.08841179808092892 +2020-04-21,1.690967277020043,0.23522233495644151 +2020-04-22,1.5926204279926237,-0.0983468490274193 +2020-04-23,1.6094978947040017,0.01687746671137802 +2020-04-24,1.904359029340126,0.2948611346361243 +2020-04-25,1.8211911705425827,-0.08316785879754329 +2020-04-26,1.7611613016379495,-0.06002986890463324 +2020-04-27,1.612630549396167,-0.14853075224178247 +2020-04-28,1.8009538828160887,0.1883233334199217 +2020-04-29,1.36096364581913,-0.4399902369969586 +2020-04-30,1.0243279606427758,-0.33663568517635434 +2020-05-01,1.1083569194780705,0.08402895883529471 +2020-05-02,1.1808064529862228,0.07244953350815231 +2020-05-03,1.1145797039688201,-0.06622674901740266 +2020-05-04,0.9070030919772211,-0.20757661199159905 +2020-05-05,0.9719452083976614,0.06494211642044034 +2020-05-06,0.966039308357571,-0.005905900040090395 +2020-05-07,1.071835184585601,0.10579587622802988 +2020-05-08,1.072746903513397,0.000911718927796068 +2020-05-09,1.1117407984018184,0.03899389488842142 +2020-05-10,1.0453845243936144,-0.06635627400820399 +2020-05-11,1.1424983670326057,0.09711384263899125 +2020-05-12,1.192469318264947,0.04997095123234141 +2020-05-13,1.046864337742864,-0.14560498052208315 +2020-05-14,1.1752919388084466,0.1284276010655827 +2020-05-15,1.0796810235095409,-0.09561091529890575 +2020-05-16,1.1756850343963914,0.09600401088685051 +2020-05-17,1.2065237234444892,0.030838689048097834 +2020-05-18,1.1319804376303715,-0.07454328581411773 +2020-05-19,1.255784281735522,0.12380384410515055 +2020-05-20,1.375267036267448,0.11948275453192592 +2020-05-21,1.090636436793105,-0.284630599474343 +2020-05-22,1.0480340426211376,-0.04260239417196732 +2020-05-23,1.0874718551218068,0.039437812500669134 +2020-05-24,1.0784392401113416,-0.00903261501046515 +2020-05-25,1.1679653802584642,0.08952614014712257 +2020-05-26,1.1754247152346364,0.007459334976172238 +2020-05-27,1.1167089344431949,-0.058715780791441574 +2020-05-28,0.9672241604508527,-0.14948477399234217 +2020-05-29,1.029790299890793,0.06256613943994038 +2020-05-30,0.9348442876843923,-0.09494601220640075 +2020-05-31,0.7894011422876039,-0.14544314539678838 +2020-06-01,0.8283137743646567,0.038912632077052756 +2020-06-02,0.7534476510250044,-0.07486612333965226 +2020-06-03,0.7811529191911811,0.02770526816617669 +2020-06-04,0.7329755235878368,-0.04817739560334433 +2020-06-05,0.7811240278465656,0.04814850425872885 +2020-06-06,0.8371200830795825,0.05599605523301687 +2020-06-07,0.7246463280052261,-0.11247375507435642 +2020-06-08,0.7009508808750979,-0.023695447130128167 +2020-06-09,0.7151024673411852,0.014151586466087274 +2020-06-10,0.7179153267434671,0.002812859402281931 +2020-06-11,0.5758053284087467,-0.1421099983347205 +2020-06-12,0.6275303839182758,0.051725055509529105 +2020-06-13,0.643562187437387,0.016031803519111265 +2020-06-14,0.603329095544246,-0.04023309189314106 +2020-06-15,0.5001519563773131,-0.10317713916693283 +2020-06-16,0.519665904829222,0.019513948451908902 +2020-06-17,0.4886478164244979,-0.031018088404724142 +2020-06-18,0.47165580001043633,-0.01699201641406156 +2020-06-19,0.4816544705333367,0.009998670522900377 +2020-06-20,0.428892173298778,-0.05276229723455872 +2020-06-21,0.43356995256719283,0.004677779268414839 +2020-06-22,0.3851470488803963,-0.048422903686796526 +2020-06-23,0.41593827460855604,0.030791225728159732 +2020-06-24,0.3727278197631712,-0.04321045484538483 +2020-06-25,0.3558392528069699,-0.016888566956201334 +2020-06-26,0.3735403459418675,0.01770109313489765 +2020-06-27,0.32509054773925655,-0.04844979820261097 +2020-06-28,0.3284295817471875,0.003339034007930952 +2020-06-29,0.31952567938033355,-0.008903902366853955 +2020-06-30,0.34702693306248356,0.027501253682150006 +2020-07-01,0.3285162115089911,-0.018510721553492482 +2020-07-02,0.3933271855571393,0.06481097404814823 +2020-07-03,0.405429627330444,0.012102441773304717 +2020-07-04,0.4235305929979371,0.018100965667493085 +2020-07-05,0.449960918057238,0.026430325059300874 +2020-07-06,0.36689315791380517,-0.08306776014343281 +2020-07-07,0.38808664424656164,0.021193486332756473 +2020-07-08,0.37090198322366497,-0.017184661022896675 +2020-07-09,0.38633078414767086,0.015428800924005892 +2020-07-10,0.368979849955178,-0.01735093419249284 +2020-07-11,0.38951450092799367,0.02053465097281565 +2020-07-12,0.38425877351088344,-0.005255727417110223 +2020-07-13,0.3482450187988769,-0.03601375471200652 +2020-07-14,0.37003964534838135,0.021794626549504426 +2020-07-15,0.37287216806854284,0.00283252272016149 +2020-07-16,0.33978530793894746,-0.033086860129595386 +2020-07-17,0.35165101219735245,0.011865704258404997 +2020-07-18,0.3363643046644598,-0.01528670753289263 +2020-07-19,0.3046480543747307,-0.03171625028972913 +2020-07-20,0.32042023970990374,0.01577218533517305 +2020-07-21,0.28112395878390806,-0.039296280925995686 +2020-07-22,0.2562313920925273,-0.024892566691380735 +2020-07-23,0.23039459343960292,-0.025836798652924403 +2020-07-24,0.2312811768363074,0.0008865833967044712 +2020-07-25,0.19376866092807554,-0.03751251590823185 +2020-07-26,0.18198640312690606,-0.011782257801169482 +2020-07-27,0.16644255058213417,-0.015543852544771891 +2020-07-28,0.17938426800532586,0.012941717423191695 +2020-07-29,0.17251861857267067,-0.006865649432655191 +2020-07-30,0.16087043097805453,-0.011648187594616138 +2020-07-31,0.15989296953591114,-0.0009774614421433903 +2020-08-01,0.1306196567097569,-0.029273312826154252 +2020-08-02,0.10246743093188927,-0.02815222577786762 +2020-08-03,0.10028858170339955,-0.0021788492284897237 +2020-08-04,0.12999081142324015,0.0297022297198406 +2020-08-05,0.11083134706910061,-0.019159464354139538 +2020-08-06,0.11216328328034318,0.0013319362112425709 +2020-08-07,0.1013104471759794,-0.010852836104363786 +2020-08-08,0.09885981387804128,-0.0024506332979381124 +2020-08-09,0.10580748716523168,0.006947673287190398 +2020-08-10,0.10481827254559824,-0.000989214619633444 +2020-08-11,0.08360918452024065,-0.021209088025357592 +2020-08-12,0.08761923140001739,0.004010046879776741 +2020-08-13,0.07328402899756764,-0.014335202402449745 +2020-08-14,0.08558736928518622,0.012303340287618578 +2020-08-15,0.08393033905739533,-0.0016570302277908872 +2020-08-16,0.08026321548073176,-0.0036671235766635724 +2020-08-17,0.0675634226812872,-0.012699792799444554 +2020-08-18,0.060998922376598735,-0.00656450030468847 +2020-08-19,0.055562213666971054,-0.0054367087096276814 +2020-08-20,0.05859321219363161,0.0030309985266605555 +2020-08-21,0.04414258703075351,-0.014450625162878102 +2020-08-22,0.04344282843974002,-0.0006997585910134899 +2020-08-23,0.04724479015934493,0.00380196171960491 +2020-08-24,0.045141755800592154,-0.002103034358752774 +2020-08-25,0.042352188403576525,-0.0027895673970156284 +2020-08-26,0.05566249987040905,0.013310311466832522 +2020-08-27,0.05665830935483819,0.000995809484429143 +2020-08-28,0.05528627983201383,-0.001372029522824364 +2020-08-29,0.05243480252870549,-0.002851477303308335 +2020-08-30,0.0469975632616075,-0.005437239267097993 +2020-08-31,0.04738079050712396,0.0003832272455164612 +2020-09-01,0.044435962517841814,-0.0029448279892821463 +2020-09-02,0.04024907385488463,-0.004186888662957182 +2020-09-03,0.026710126102867604,-0.013538947752017028 +2020-09-04,0.02435569702595701,-0.002354429076910594 +2020-09-05,0.01962425523605521,-0.0047314417899018 +2020-09-06,0.02202152609648458,0.00239727086042937 +2020-09-07,0.0213581795804031,-0.0006633465160814818 +2020-09-08,0.02515330155169282,0.003795121971289721 +2020-09-09,0.021829087220702995,-0.0033242143309898248 +2020-09-10,0.020986376394119294,-0.0008427108265837008 +2020-09-11,0.021089782636063484,0.00010340624194419071 +2020-09-12,0.020138969287132637,-0.0009508133489308478 +2020-09-13,0.01598298702639868,-0.004155982260733958 +2020-09-14,0.01945569976267429,0.0034727127362756127 +2020-09-15,0.020654869772780977,0.0011991700101066857 +2020-09-16,0.02375397066222233,0.003099100889441351 +2020-09-17,0.02439019293113728,0.0006362222689149516 +2020-09-18,0.022352201342727147,-0.0020379915884101325 +2020-09-19,0.02386270044436326,0.0015104991016361112 +2020-09-20,0.02131381239658755,-0.0025488880477757096 +2020-09-21,0.015636129932833868,-0.005677682463753681 +2020-09-22,0.017237416713719565,0.0016012867808856968 +2020-09-23,0.014123544634033655,-0.003113872079685909 +2020-09-24,0.013825516048369096,-0.00029802858566455905 +2020-09-25,0.0123453914536593,-0.0014801245947097964 +2020-09-26,0.013999214059778912,0.001653822606119612 +2020-09-27,0.013136377831648524,-0.0008628362281303883 +2020-09-28,0.011871832307189755,-0.0012645455244587687 +2020-09-29,0.012307743441266953,0.0004359111340771979 +2020-09-30,0.012976511113475881,0.0006687676722089281 +2020-10-01,0.010863758977918568,-0.0021127521355573126 +2020-10-02,0.010618458142979797,-0.0002453008349387713 +2020-10-03,0.010398534255269404,-0.00021992388771039338 +2020-10-04,0.010765291153430114,0.00036675689816071007 +2020-10-05,0.010324962898248871,-0.0004403282551812427 +2020-10-06,0.010708930648585888,0.00038396775033701716 +2020-10-07,0.010783943642520876,7.501299393498743e-05 +2020-10-08,0.00964912106813551,-0.0011348225743853663 +2020-10-09,0.009529736116344488,-0.00011938495179102115 +2020-10-10,0.00894406730486042,-0.0005856688114840684 +2020-10-11,0.009043375367341407,9.930806248098674e-05 +2020-10-12,0.008913991297670818,-0.0001293840696705885 +2020-10-13,0.009194186866739857,0.00028019556906903886 +2020-10-14,0.010460129668258922,0.0012659428015190655 +2020-10-15,0.01076245540391425,0.00030232573565532744 +2020-10-16,0.0106428390144706,-0.00011961638944365041 +2020-10-17,0.011104383592867981,0.00046154457839738157 +2020-10-18,0.010892283455843425,-0.00021210013702455642 +2020-10-19,0.01061802636589877,-0.00027425708994465413 +2020-10-20,0.011489274538674828,0.0008712481727760572 +2020-10-21,0.010158756834956116,-0.0013305177037187116 +2020-10-22,0.009644209048609105,-0.0005145477863470107 +2020-10-23,0.009280170593722877,-0.0003640384548862282 +2020-10-24,0.00932971408459061,4.954349086773273e-05 +2020-10-25,0.010412649906006748,0.0010829358214161384 +2020-10-26,0.009373519679678838,-0.0010391302263279105 +2020-10-27,0.009650584112509531,0.00027706443283069364 +2020-10-28,0.007945540948842077,-0.0017050431636674544 +2020-10-29,0.007862924865207494,-8.261608363458253e-05 +2020-10-30,0.007509926098100055,-0.0003529987671074394 +2020-10-31,0.007052249816330991,-0.0004576762817690644 +2020-11-01,0.006695641769459045,-0.000356608046871946 +2020-11-02,0.006392847039850117,-0.0003027947296089274 +2020-11-03,0.005982017836385431,-0.00041082920346468665 +2020-11-04,0.0064187018947716905,0.0004366840583862599 +2020-11-05,0.0060832812831733635,-0.000335420611598327 +2020-11-06,0.0059233145160336575,-0.00015996676713970603 +2020-11-07,0.005042307696455761,-0.0008810068195778962 +2020-11-08,0.005816761525893407,0.0007744538294376458 +2020-11-09,0.00635239121721804,0.0005356296913246331 +2020-11-10,0.00724382570672702,0.0008914344895089802 +2020-11-11,0.00802093566575448,0.0007771099590274588 +2020-11-12,0.007782531389643378,-0.00023840427611110122 +2020-11-13,0.00857452050593528,0.0007919891162919022 +2020-11-14,0.00884186735626908,0.0002673468503337998 +2020-11-15,0.008304792732101116,-0.0005370746241679641 +2020-11-16,0.008420213527081204,0.00011542079498008846 +2020-11-17,0.00887275942147795,0.0004525458943967463 +2020-11-18,0.009943638158467574,0.001070878736989623 +2020-11-19,0.008982341036177587,-0.000961297122289987 +2020-11-20,0.00935922549170211,0.00037688445552452356 +2020-11-21,0.009559018307268423,0.00019979281556631312 +2020-11-22,0.008956530537072325,-0.0006024877701960984 +2020-11-23,0.009107806606877263,0.0001512760698049384 +2020-11-24,0.012440206110926682,0.0033323995040494183 +2020-11-25,0.008885338798187663,-0.0035548673127390185 +2020-11-26,0.007240778578649023,-0.0016445602195386405 +2020-11-27,0.008406985976653996,0.0011662073980049734 +2020-11-28,0.008616118651491356,0.00020913267483736037 +2020-11-29,0.008526454982339452,-8.966366915190427e-05 +2020-11-30,0.007822412113278747,-0.0007040428690607056 +2020-12-01,0.00815674641432262,0.0003343343010438742 +2020-12-02,0.008263411221450198,0.00010666480712757768 +2020-12-03,0.008549783621979862,0.00028637240052966327 +2020-12-04,0.00724865825157983,-0.001301125370400032 +2020-12-05,0.007359767701956422,0.00011110945037659265 +2020-12-06,0.00810101912512039,0.0007412514231639683 +2020-12-07,0.00843543413505359,0.00033441500993319946 +2020-12-08,0.00741893339639292,-0.00101650073866067 +2020-12-09,0.006749462190666732,-0.0006694712057261883 +2020-12-10,0.006809082557785769,5.962036711903724e-05 +2020-12-11,0.0060053834155234295,-0.0008036991422623397 +2020-12-12,0.005502883272501976,-0.0005025001430214535 +2020-12-13,0.005710282379009076,0.00020739910650710049 +2020-12-14,0.005965554770113481,0.0002552723911044049 +2020-12-15,0.005806564645810388,-0.00015899012430309334 +2020-12-16,0.00453107512902107,-0.0012754895167893182 +2020-12-17,0.0052504113071717845,0.0007193361781507148 +2020-12-18,0.006073866419788826,0.0008234551126170414 +2020-12-19,0.006048815212498484,-2.5051207290341902e-05 +2020-12-20,0.006446978184349435,0.0003981629718509509 +2020-12-21,0.005941054043457163,-0.0005059241408922723 +2020-12-22,0.005193370668672447,-0.0007476833747847153 +2020-12-23,0.004876656817469121,-0.0003167138512033263 +2020-12-24,0.0052328600054658775,0.00035620318799675643 +2020-12-25,0.004618831809393252,-0.0006140281960726251 +2020-12-26,0.004543857746517307,-7.497406287594512e-05 +2020-12-27,0.005426438021460956,0.0008825802749436486 +2020-12-28,0.006282556670837528,0.0008561186493765719 +2020-12-29,0.006098156713963941,-0.00018439995687358646 +2020-12-30,0.006567016233559519,0.0004688595195955778 +2020-12-31,0.0072321799881443155,0.0006651637545847964 +2021-01-01,0.006764834291524949,-0.00046734569661936644 +2021-01-02,0.007067347020290275,0.0003025127287653263 +2021-01-03,0.005708371404377456,-0.0013589756159128191 +2021-01-04,0.005564031192719729,-0.00014434021165772755 +2021-01-05,0.006430782560117514,0.0008667513673977856 +2021-01-06,0.007112791898451738,0.0006820093383342234 +2021-01-07,0.007339705432818624,0.00022691353436688627 +2021-01-08,0.0071748320424391155,-0.0001648733903795085 +2021-01-09,0.009285571550917231,0.002110739508478116 +2021-01-10,0.009324658642869774,3.908709195254295e-05 +2021-01-11,0.006499926469728987,-0.0028247321731407872 +2021-01-12,0.004411262455506401,-0.0020886640142225863 +2021-01-13,0.0042165904922685385,-0.0001946719632378623 +2021-01-14,0.0036596218836348507,-0.0005569686086336879 +2021-01-15,0.003023761935437048,-0.0006358599481978027 +2021-01-16,0.004487188410189179,0.0014634264747521311 +2021-01-17,0.0053242700499491515,0.0008370816397599724 +2021-01-18,0.005013272773562604,-0.0003109972763865477 +2021-01-19,0.004868796688135707,-0.0001444760854268966 +2021-01-20,0.004498194517759249,-0.000370602170376458 +2021-01-21,0.004537255493991029,3.9060976231779926e-05 +2021-01-22,0.0040256101043077246,-0.0005116453896833045 +2021-01-23,0.0036409170323728874,-0.0003846930719348372 +2021-01-24,0.003002936009888539,-0.0006379810224843483 +2021-01-25,0.0025648988647078157,-0.0004380371451807234 +2021-01-26,0.0030736374492028916,0.0005087385844950759 +2021-01-27,0.0032920190196621835,0.00021838157045929191 +2021-01-28,0.0028084523345521034,-0.00048356668511008016 +2021-01-29,0.003222030336098446,0.00041357800154634243 +2021-01-30,0.003413433895068862,0.0001914035589704161 +2021-01-31,0.003069687510825014,-0.0003437463842438479 +2021-02-01,0.0027344482688451245,-0.00033523924197988945 +2021-02-02,0.0023452898223463065,-0.0003891584464988181 +2021-02-03,0.0024433584485129157,9.806862616660922e-05 +2021-02-04,0.0023207235185397864,-0.00012263492997312926 +2021-02-05,0.0022063678580618376,-0.00011435566047794882 +2021-02-06,0.0031003844457067986,0.000894016587644961 +2021-02-07,0.002274463714716162,-0.0008259207309906365 +2021-02-08,0.0017783807551980022,-0.0004960829595181599 +2021-02-09,0.001885947573765034,0.00010756681856703178 +2021-02-10,0.0016709191023532367,-0.00021502847141179732 +2021-02-11,0.0017258401128767893,5.492101052355261e-05 +2021-02-12,0.0018355438450607562,0.00010970373218396694 +2021-02-13,0.00188707391985373,5.153007479297383e-05 +2021-02-14,0.002123566532881091,0.00023649261302736112 +2021-02-15,0.0018778103607908184,-0.0002457561720902728 +2021-02-16,0.00241059965662962,0.0005327892958388015 +2021-02-17,0.002260271904633367,-0.00015032775199625304 +2021-02-18,0.0024735175033482166,0.00021324559871484976 +2021-02-19,0.0024929630235417852,1.9445520193568655e-05 +2021-02-20,0.0021527035859458914,-0.00034025943759589386 +2021-02-21,0.002528851130305773,0.0003761475443598817 +2021-02-22,0.002287953463673144,-0.0002408976666326292 +2021-02-23,0.0021008902365439747,-0.0001870632271291691 +2021-02-24,0.0020958121213193828,-5.078115224591961e-06 +2021-02-25,0.001736825385861284,-0.0003589867354580989 +2021-02-26,0.0019441004902146725,0.0002072751043533886 +2021-02-27,0.001894302225447649,-4.9798264767023396e-05 +2021-02-28,0.0014514879231222713,-0.00044281430232537776 +2021-03-01,0.0014382192421537679,-1.3268680968503465e-05 +2021-03-02,0.00155468006129465,0.00011646081914088217 +2021-03-03,0.0012750558806136545,-0.0002796241806809956 +2021-03-04,0.0015657049204176566,0.00029064903980400214 +2021-03-05,0.0018988403267512733,0.00033313540633361674 +2021-03-06,0.0019007739614809143,1.9336347296409952e-06 +2021-03-07,0.0018639334791849752,-3.6840482295939087e-05 +2021-03-08,0.0015737905282972235,-0.00029014295088775175 +2021-03-09,0.0015834501236304734,9.659595333249898e-06 +2021-03-10,0.0014776377092602638,-0.00010581241437020964 +2021-03-11,0.0014735191801212549,-4.118529139008871e-06 +2021-03-12,0.0012663442242337923,-0.00020717495588746257 +2021-03-13,0.0011242670645378928,-0.00014207715969589952 +2021-03-14,0.0011242965550614735,2.9490523580652864e-08 +2021-03-15,0.001076658458881879,-4.7638096179594474e-05 +2021-03-16,0.0012740527068518118,0.00019739424796993282 +2021-03-17,0.0011788004529655388,-9.5252253886273e-05 +2021-03-18,0.0010109569521458517,-0.00016784350081968714 +2021-03-19,0.001021195378367004,1.0238426221152426e-05 +2021-03-20,0.0009406049591221516,-8.059041924485244e-05 +2021-03-21,0.0008593719532385956,-8.123300588355601e-05 +2021-03-22,0.000759661657161063,-9.971029607753264e-05 +2021-03-23,0.0006887648039863926,-7.089685317467043e-05 +2021-03-24,0.0006525920817845486,-3.6172722201844015e-05 +2021-03-25,0.0008017838414833662,0.00014919175969881765 +2021-03-26,0.0007134868391872173,-8.829700229614893e-05 +2021-03-27,0.0006880755003410497,-2.541133884616752e-05 +2021-03-28,0.0006367810997604295,-5.129440058062023e-05 +2021-03-29,0.0005938654545001082,-4.2915645260321335e-05 +2021-03-30,0.0006223266899174687,2.8461235417360543e-05 +2021-03-31,0.0005846616673610998,-3.7665022556368976e-05 +2021-04-01,0.0006566388441785889,7.197717681748912e-05 +2021-04-02,0.0006941089613738565,3.7470117195267656e-05 +2021-04-03,0.0006869058388216244,-7.203122552232148e-06 +2021-04-04,0.0006650900766035111,-2.1815762218113286e-05 +2021-04-05,0.0006159758643867142,-4.911421221679693e-05 +2021-04-06,0.0006987850959992558,8.280923161254163e-05 +2021-04-07,0.0005792733193207169,-0.00011951177667853885 +2021-04-08,0.00061317456372699,3.3901244406273024e-05 +2021-04-09,0.0006349701672407005,2.1795603513710487e-05 +2021-04-10,0.0005710895183779284,-6.38806488627721e-05 +2021-04-11,0.0006226758969853024,5.1586378607374026e-05 +2021-04-12,0.0006632164601678429,4.054056318254047e-05 +2021-04-13,0.0005773287213868388,-8.588773878100402e-05 +2021-04-14,0.0006131316801476462,3.5802958760807325e-05 +2021-04-15,0.0006265354292270191,1.3403749079372905e-05 +2021-04-16,0.0005664856788318423,-6.004975039517672e-05 +2021-04-17,0.0004348867238069033,-0.00013159895502493904 +2021-04-18,0.0004109033078918042,-2.3983415915099118e-05 +2021-04-19,0.00039813927032374515,-1.276403756805903e-05 +2021-04-20,0.0004351438740113899,3.700460368764473e-05 +2021-04-21,0.000555537651115267,0.00012039377710387712 +2021-04-22,0.0004956490560961359,-5.98885950191311e-05 +2021-04-23,0.0004597340627449232,-3.591499335121271e-05 +2021-04-24,0.00046565723094087083,5.923168195947639e-06 +2021-04-25,0.00035775188675029777,-0.00010790534419057306 +2021-04-26,0.00043320304679644037,7.54511600461426e-05 +2021-04-27,0.0005358248739014309,0.00010262182710499051 +2021-04-28,0.0005981917969067797,6.236692300534881e-05 +2021-04-29,0.0007057122574150552,0.00010752046050827556 +2021-04-30,0.0007658692402186017,6.0156982803546456e-05 +2021-05-01,0.0006864836558701696,-7.938558434843212e-05 +2021-05-02,0.0006935563823950573,7.072726524887671e-06 +2021-05-03,0.0005725749780845765,-0.00012098140431048075 +2021-05-04,0.0006165566711841086,4.39816930995321e-05 +2021-05-05,0.0006924388524085801,7.588218122447151e-05 +2021-05-06,0.0008101021660378418,0.00011766331362926172 +2021-05-07,0.0006384342038506494,-0.00017166796218719246 +2021-05-08,0.0005062625567335442,-0.00013217164711710517 +2021-05-09,0.00045108234213318913,-5.518021460035506e-05 +2021-05-10,0.00044147839005636896,-9.60395207682017e-06 +2021-05-11,0.00042241296244541405,-1.9065427610954913e-05 +2021-05-12,0.00045330972052305517,3.089675807764112e-05 +2021-05-13,0.0004210090212976311,-3.230069922542406e-05 +2021-05-14,0.0003998845689591818,-2.1124452338449327e-05 +2021-05-15,0.0002988718130080738,-0.00010101275595110796 +2021-05-16,0.00024842373824463513,-5.044807476343869e-05 +2021-05-17,0.00021647585440265772,-3.1947883841977414e-05 +2021-05-18,0.0002158876347428927,-5.882196597650291e-07 +2021-05-19,0.000155394152045124,-6.0493482697768696e-05 +2021-05-20,0.00016029794289766758,4.903790852543586e-06 +2021-05-21,0.00019173195442791569,3.143401153024811e-05 +2021-05-22,0.00025808001323565297,6.634805880773728e-05 +2021-05-23,0.00022214768523530346,-3.5932328000349504e-05 +2021-05-24,0.00022727900664636948,5.131321411066018e-06 +2021-05-25,0.0002532821814532159,2.6003174806846436e-05 +2021-05-26,0.00030541703312821235,5.2134851674996436e-05 +2021-05-27,0.00029748462309089094,-7.932410037321416e-06 +2021-05-28,0.0002409337294952819,-5.655089359560904e-05 +2021-05-29,0.0002257758706088104,-1.5157858886471483e-05 +2021-05-30,0.00024588755996814404,2.0111689359333625e-05 +2021-05-31,0.00016993858217041716,-7.594897779772687e-05 +2021-06-01,0.00024320890395808739,7.327032178767022e-05 +2021-06-02,0.00020159392284450973,-4.1614981113577654e-05 +2021-06-03,0.00022121899506423852,1.962507221972879e-05 +2021-06-04,0.0002460089171245883,2.4789922060349754e-05 +2021-06-05,0.0002250393171197183,-2.0969600004869975e-05 +2021-06-06,0.00025613925463798464,3.109993751826634e-05 +2021-06-07,0.0001704954250386901,-8.564382959929455e-05 +2021-06-08,0.0001641519496815497,-6.343475357140386e-06 +2021-06-09,0.00014945937849349106,-1.4692571188058644e-05 +2021-06-10,0.00013252705585357652,-1.6932322639914534e-05 +2021-06-11,0.0001219515528384706,-1.0575503015105927e-05 +2021-06-12,0.0001031824616580532,-1.8769091180417393e-05 +2021-06-13,0.00010771202373255382,4.529562074500614e-06 +2021-06-14,0.00010716147531114544,-5.505484214083837e-07 +2021-06-15,0.000114084658682655,6.923183371509561e-06 +2021-06-16,9.465762821495395e-05,-1.942703046770105e-05 +2021-06-17,9.444338732798973e-05,-2.1424088696421983e-07 +2021-06-18,8.973239888687053e-05,-4.710988441119197e-06 +2021-06-19,8.927406114532574e-05,-4.5833774154478864e-07 +2021-06-20,7.093525091244876e-05,-1.833881023287698e-05 +2021-06-21,5.884746739060737e-05,-1.208778352184139e-05 +2021-06-22,5.5904676986662976e-05,-2.942790403944396e-06 +2021-06-23,6.24087475354925e-05,6.5040705488295184e-06 +2021-06-24,5.498595357459201e-05,-7.422793960900481e-06 +2021-06-25,4.438397451219891e-05,-1.0601979062393105e-05 +2021-06-26,4.89039697373234e-05,4.519995225124488e-06 +2021-06-27,4.577483608242598e-05,-3.129133654897415e-06 +2021-06-28,3.4932522523548244e-05,-1.0842313558877738e-05 +2021-06-29,3.534775451814767e-05,4.1523199459942285e-07 +2021-06-30,3.0210020556953492e-05,-5.1377339611941745e-06 +2021-07-01,3.4460087440931935e-05,4.250066883978443e-06 +2021-07-02,2.9155925709782234e-05,-5.304161731149701e-06 +2021-07-03,2.893134147166402e-05,-2.245842381182146e-07 +2021-07-04,2.385912918356887e-05,-5.072212288095148e-06 +2021-07-05,2.2510683208053895e-05,-1.3484459755149758e-06 +2021-07-06,3.163996462876592e-05,9.129281420712028e-06 +2021-07-07,2.7773841270231727e-05,-3.866123358534196e-06 +2021-07-08,1.9748530400481576e-05,-8.02531086975015e-06 +2021-07-09,1.5418027532592394e-05,-4.330502867889183e-06 +2021-07-10,1.7979907793457384e-05,2.561880260864991e-06 +2021-07-11,1.9161740429005277e-05,1.1818326355478924e-06 +2021-07-12,1.698147642546249e-05,-2.180264003542788e-06 +2021-07-13,1.326450957124455e-05,-3.7169668542179386e-06 +2021-07-14,1.1243220896266006e-05,-2.021288674978544e-06 +2021-07-15,1.4848605207728992e-05,3.6053843114629854e-06 +2021-07-16,1.2103803392289566e-05,-2.7448018154394253e-06 +2021-07-17,1.1744535227551256e-05,-3.592681647383106e-07 +2021-07-18,1.0876432971257684e-05,-8.681022562935722e-07 +2021-07-19,1.0833119166435391e-05,-4.331380482229256e-08 +2021-07-20,1.1165217806262645e-05,3.320986398272543e-07 +2021-07-21,8.423096740519459e-06,-2.7421210657431868e-06 +2021-07-22,9.907885190424399e-06,1.48478844990494e-06 +2021-07-23,9.623856909481494e-06,-2.8402828094290463e-07 +2021-07-24,9.006734628549946e-06,-6.171222809315481e-07 +2021-07-25,8.126762527710822e-06,-8.799721008391234e-07 +2021-07-26,6.662023596753694e-06,-1.4647389309571287e-06 +2021-07-27,5.9106768248460764e-06,-7.513467719076172e-07 +2021-07-28,8.132808222666176e-06,2.2221313978200996e-06 +2021-07-29,8.265019328066597e-06,1.322111054004214e-07 +2021-07-30,6.71994115758407e-06,-1.5450781704825276e-06 +2021-07-31,6.428385425073834e-06,-2.915557325102355e-07 +2021-08-01,5.643104523448044e-06,-7.852809016257905e-07 +2021-08-02,6.518666001388856e-06,8.755614779408118e-07 +2021-08-03,5.929203690696251e-06,-5.894623106926043e-07 +2021-08-04,4.611728799368492e-06,-1.3174748913277596e-06 +2021-08-05,3.868257705278047e-06,-7.434710940904446e-07 +2021-08-06,4.019876704669711e-06,1.5161899939166417e-07 +2021-08-07,3.047356539845135e-06,-9.725201648245763e-07 +2021-08-08,3.293141192646552e-06,2.457846528014169e-07 +2021-08-09,4.010689005210176e-06,7.175478125636243e-07 +2021-08-10,4.832599496087523e-06,8.219104908773468e-07 +2021-08-11,4.613256160394819e-06,-2.1934333569270432e-07 +2021-08-12,4.24837351635193e-06,-3.648826440428885e-07 +2021-08-13,3.982678166955434e-06,-2.6569534939649593e-07 +2021-08-14,5.023927512250019e-06,1.0412493452945845e-06 +2021-08-15,4.5948241584554075e-06,-4.291033537946114e-07 +2021-08-16,4.294685738247558e-06,-3.001384202078491e-07 +2021-08-17,4.547358242616121e-06,2.52672504368563e-07 +2021-08-18,4.886775264409995e-06,3.394170217938735e-07 +2021-08-19,4.256225863186746e-06,-6.305494012232492e-07 +2021-08-20,3.975475995554758e-06,-2.8074986763198766e-07 +2021-08-21,4.556593132614633e-06,5.811171370598751e-07 +2021-08-22,4.3653159149827084e-06,-1.9127721763192471e-07 +2021-08-23,4.315029954780148e-06,-5.028596020256038e-08 +2021-08-24,4.278854306068574e-06,-3.61756487115741e-08 +2021-08-25,4.4852870574499626e-06,2.064327513813886e-07 +2021-08-26,4.416067446480531e-06,-6.921961096943164e-08 +2021-08-27,4.2772892787419864e-06,-1.387781677385445e-07 +2021-08-28,4.547723407094394e-06,2.7043412835240733e-07 +2021-08-29,4.844775082093127e-06,2.9705167499873307e-07 +2021-08-30,4.072602366924894e-06,-7.721727151682328e-07 +2021-08-31,4.3011187895420575e-06,2.2851642261716353e-07 +2021-09-01,3.4163938443173974e-06,-8.847249452246602e-07 +2021-09-02,3.636097792292761e-06,2.1970394797536375e-07 +2021-09-03,3.5540813962339783e-06,-8.201639605878281e-08 +2021-09-04,3.865177153023231e-06,3.1109575678925274e-07 +2021-09-05,3.886806761348754e-06,2.162960832552299e-08 +2021-09-06,4.046720723385052e-06,1.599139620362983e-07 +2021-09-07,3.146597520491022e-06,-9.001232028940303e-07 +2021-09-08,3.6300923627342397e-06,4.834948422432177e-07 +2021-09-09,4.1747965957485584e-06,5.447042330143187e-07 +2021-09-10,3.898293707417878e-06,-2.765028883306801e-07 +2021-09-11,3.983338832889638e-06,8.504512547175938e-08 +2021-09-12,4.843326751618963e-06,8.599879187293257e-07 +2021-09-13,4.3429118601359325e-06,-5.004148914830309e-07 +2021-09-14,4.817265102983974e-06,4.743532428480414e-07 +2021-09-15,4.3064892976560836e-06,-5.107758053278903e-07 +2021-09-16,4.356951030059501e-06,5.046173240341752e-08 +2021-09-17,4.198747112555183e-06,-1.582039175043185e-07 +2021-09-18,3.6232419655112754e-06,-5.755051470439072e-07 +2021-09-19,3.6310013886434257e-06,7.759423132150305e-09 +2021-09-20,2.6353161833869263e-06,-9.956852052564994e-07 +2021-09-21,1.9460574420014873e-06,-6.89258741385439e-07 +2021-09-22,1.8496304237710621e-06,-9.642701823042516e-08 +2021-09-23,1.8710591172943238e-06,2.142869352326172e-08 +2021-09-24,1.6162090287111051e-06,-2.548500885832187e-07 +2021-09-25,1.673834582491078e-06,5.7625553779972855e-08 +2021-09-26,1.4195191735323843e-06,-2.5431540895869374e-07 +2021-09-27,1.5154987138683744e-06,9.597954033599014e-08 +2021-09-28,1.706337531725769e-06,1.9083881785739452e-07 +2021-09-29,1.8542116525019872e-06,1.4787412077621827e-07 +2021-09-30,1.8961801901415952e-06,4.196853763960801e-08 +2021-10-01,1.664332359205957e-06,-2.3184783093563822e-07 +2021-10-02,1.7179550696153854e-06,5.362271040942842e-08 +2021-10-03,2.017575537602428e-06,2.996204679870427e-07 +2021-10-04,2.26949852233264e-06,2.519229847302119e-07 +2021-10-05,1.9944266574730306e-06,-2.750718648596094e-07 +2021-10-06,1.6578075866295835e-06,-3.3661907084344705e-07 +2021-10-07,1.7150286926911268e-06,5.7221106061543264e-08 +2021-10-08,1.496337790977559e-06,-2.186909017135677e-07 +2021-10-09,1.6298734894581143e-06,1.3353569848055522e-07 +2021-10-10,1.6128210234773483e-06,-1.7052465980765955e-08 +2021-10-11,1.5873750229987855e-06,-2.5446000478562817e-08 +2021-10-12,1.937941591667605e-06,3.505665686688195e-07 +2021-10-13,1.9618682102983008e-06,2.3926618630695747e-08 +2021-10-14,1.7429969550637608e-06,-2.1887125523453998e-07 +2021-10-15,1.718673008965775e-06,-2.4323946097985793e-08 +2021-10-16,1.4383017068674582e-06,-2.803713020983168e-07 +2021-10-17,1.2201154462690339e-06,-2.1818626059842434e-07 +2021-10-18,1.1061826504035969e-06,-1.13932795865437e-07 +2021-10-19,1.0598620899075111e-06,-4.632056049608573e-08 +2021-10-20,9.039936981698202e-07,-1.558683917376909e-07 +2021-10-21,7.760370081294026e-07,-1.2795669004041766e-07 +2021-10-22,7.646798725551305e-07,-1.1357135574272086e-08 +2021-10-23,8.046614669135998e-07,3.9981594358469296e-08 +2021-10-24,9.600849771514755e-07,1.5542351023787573e-07 +2021-10-25,8.636040064193877e-07,-9.648097073208777e-08 +2021-10-26,9.886314967649066e-07,1.2502749034551888e-07 +2021-10-27,8.402435838683609e-07,-1.4838791289654575e-07 +2021-10-28,8.493667204531274e-07,9.123136584766571e-09 +2021-10-29,8.518191329728904e-07,2.4524125197629613e-09 +2021-10-30,8.430912697118071e-07,-8.727863261083271e-09 +2021-10-31,7.407518855584951e-07,-1.02339384153312e-07 +2021-11-01,8.274096643779387e-07,8.66577788194436e-08 +2021-11-02,8.420785459060228e-07,1.4668881528084096e-08 +2021-11-03,9.631613701357084e-07,1.2108282422968563e-07 +2021-11-04,1.0479931355062408e-06,8.483176537053239e-08 +2021-11-05,1.1822855159483446e-06,1.342923804421038e-07 +2021-11-06,9.816678041323901e-07,-2.0061771181595448e-07 +2021-11-07,1.0643819678377629e-06,8.271416370537271e-08 +2021-11-08,1.0476072301545946e-06,-1.6774737683168218e-08 +2021-11-09,1.0478525790996915e-06,2.4534894509689463e-10 +2021-11-10,9.150561705137067e-07,-1.3279640858598482e-07 +2021-11-11,8.605527349397459e-07,-5.4503435573960786e-08 +2021-11-12,7.984669736309223e-07,-6.208576130882358e-08 +2021-11-13,8.356463864207773e-07,3.7179412789854945e-08 +2021-11-14,8.799840529236684e-07,4.433766650289107e-08 +2021-11-15,8.485126610180482e-07,-3.147139190562012e-08 +2021-11-16,7.675775224768334e-07,-8.09351385412148e-08 +2021-11-17,8.497500869663211e-07,8.217256448948767e-08 +2021-11-18,6.267496311361834e-07,-2.230004558301377e-07 +2021-11-19,6.785639669212036e-07,5.181433578502017e-08 +2021-11-20,7.070314153767565e-07,2.846744845555295e-08 +2021-11-21,6.932610804479486e-07,-1.3770334928807987e-08 +2021-11-22,6.615111884874389e-07,-3.174989196050961e-08 +2021-11-23,5.726574646736259e-07,-8.885372381381301e-08 +2021-11-24,6.386183616942279e-07,6.596089702060197e-08 +2021-11-25,5.678384119842459e-07,-7.077994970998199e-08 +2021-11-26,5.334774347653867e-07,-3.4360977218859174e-08 +2021-11-27,5.814949627260806e-07,4.8017527960693815e-08 +2021-11-28,4.560390218808531e-07,-1.2545594084522745e-07 +2021-11-29,4.554145207775476e-07,-6.245011033054985e-10 +2021-11-30,4.505690059390338e-07,-4.845514838513834e-09 +2021-12-01,4.5850094559087067e-07,7.93193965183689e-09 +2021-12-02,6.213552084950316e-07,1.6285426290416093e-07 +2021-12-03,5.383911693668625e-07,-8.296403912816909e-08 +2021-12-04,5.182106770820584e-07,-2.0180492284804132e-08 +2021-12-05,4.661774825621017e-07,-5.2033194519956696e-08 +2021-12-06,3.850674474665127e-07,-8.111003509558898e-08 +2021-12-07,4.3956912768074473e-07,5.450168021423202e-08 +2021-12-08,4.576031861209011e-07,1.8034058440156343e-08 +2021-12-09,4.3384392175037125e-07,-2.3759264370529824e-08 +2021-12-10,3.2931573642901264e-07,-1.0452818532135861e-07 +2021-12-11,4.3241182048697446e-07,1.0309608405796183e-07 +2021-12-12,4.741154696502974e-07,4.1703649163322945e-08 +2021-12-13,3.656009472060748e-07,-1.0851452244422262e-07 +2021-12-14,4.436025812397974e-07,7.800163403372259e-08 +2021-12-15,3.4898020648442497e-07,-9.462237475537241e-08 +2021-12-16,3.5282766453027504e-07,3.847458045850067e-09 +2021-12-17,2.944108516356907e-07,-5.8416812894584364e-08 +2021-12-18,3.0466742882863156e-07,1.0256577192940882e-08 +2021-12-19,3.498265883965e-07,4.5159159567868446e-08 +2021-12-20,3.038109984714726e-07,-4.6015589925027395e-08 +2021-12-21,2.821601512425069e-07,-2.16508472289657e-08 +2021-12-22,2.756543576913518e-07,-6.505793551155083e-09 +2021-12-23,2.6166196840615666e-07,-1.3992389285195165e-08 +2021-12-24,2.860243462198039e-07,2.436237781364723e-08 +2021-12-25,3.3629105348771724e-07,5.026670726791335e-08 +2021-12-26,3.384782337509976e-07,2.187180263280375e-09 +2021-12-27,3.491786234011515e-07,1.0700389650153894e-08 +2021-12-28,2.91764058997036e-07,-5.741456440411552e-08 +2021-12-29,2.833265102936008e-07,-8.437548703435174e-09 +2021-12-30,3.104858528506409e-07,2.7159342557040082e-08 +2021-12-31,3.2333213876643437e-07,1.2846285915793477e-08 +2022-01-01,3.3341881266462685e-07,1.0086673898192475e-08 +2022-01-02,3.1939900486618394e-07,-1.4019807798442906e-08 +2022-01-03,3.15330779946964e-07,-4.068224919219926e-09 +2022-01-04,2.841491956984804e-07,-3.1181584248483594e-08 +2022-01-05,2.7002222722280096e-07,-1.4126968475679457e-08 +2022-01-06,2.190779542842831e-07,-5.094427293851787e-08 +2022-01-07,2.0088995472320797e-07,-1.8187999561075127e-08 +2022-01-08,1.8659092635744402e-07,-1.4299028365763951e-08 +2022-01-09,1.7845513073868143e-07,-8.135795618762582e-09 +2022-01-10,1.7757698538494953e-07,-8.781453537319036e-10 +2022-01-11,1.8067698163015065e-07,3.099996245201116e-09 +2022-01-12,1.6872352032833586e-07,-1.1953461301814786e-08 +2022-01-13,1.7204823882097763e-07,3.324718492641768e-09 +2022-01-14,1.545178832837326e-07,-1.7530355537245036e-08 +2022-01-15,1.6662568608928114e-07,1.2107802805548544e-08 +2022-01-16,1.8777883760090407e-07,2.115315151162293e-08 +2022-01-17,1.6052276367796192e-07,-2.725607392294215e-08 +2022-01-18,1.7154017164544114e-07,1.1017407967479225e-08 +2022-01-19,1.5558848774315335e-07,-1.595168390228779e-08 +2022-01-20,1.3451518503396032e-07,-2.107330270919303e-08 +2022-01-21,1.2095671795666942e-07,-1.3558467077290904e-08 +2022-01-22,1.137389180965396e-07,-7.217799860129815e-09 +2022-01-23,9.297363752468605e-08,-2.0765280571853553e-08 +2022-01-24,7.464153729914425e-08,-1.8332100225541806e-08 +2022-01-25,9.170448477784119e-08,1.7062947478696943e-08 +2022-01-26,9.68025308875699e-08,5.098046109728716e-09 +2022-01-27,7.839169552619554e-08,-1.8410835361374367e-08 +2022-01-28,8.337602197494627e-08,4.984326448750728e-09 +2022-01-29,8.101894405691294e-08,-2.3570779180333274e-09 +2022-01-30,7.694913944625254e-08,-4.069804610660396e-09 +2022-01-31,6.996789974000415e-08,-6.98123970624839e-09 +2022-02-01,6.866117394598987e-08,-1.3067257940142779e-09 +2022-02-02,8.132844031584059e-08,1.2667266369850718e-08 +2022-02-03,8.909581841608868e-08,7.767378100248084e-09 +2022-02-04,9.203632759735983e-08,2.9405091812711573e-09 +2022-02-05,9.971375163083316e-08,7.677424033473325e-09 +2022-02-06,1.063237714263614e-07,6.610019795528242e-09 +2022-02-07,8.719392458361122e-08,-1.9129846842750187e-08 +2022-02-08,7.582569304835804e-08,-1.1368231535253173e-08 +2022-02-09,7.597420297717298e-08,1.4850992881493374e-10 +2022-02-10,5.5501201518302905e-08,-2.047300145887007e-08 +2022-02-11,4.764791776093654e-08,-7.853283757366362e-09 +2022-02-12,4.960235241088303e-08,1.9544346499464906e-09 +2022-02-13,4.913240652141328e-08,-4.699458894697505e-10 +2022-02-14,4.673918088940168e-08,-2.3932256320116046e-09 +2022-02-15,4.531031925723299e-08,-1.4288616321686847e-09 +2022-02-16,4.3602289515396935e-08,-1.708029741836058e-09 +2022-02-17,3.640157796275559e-08,-7.2007115526413425e-09 +2022-02-18,3.7250965047792715e-08,8.493870850371225e-10 +2022-02-19,3.6851811106290896e-08,-3.9915394150181877e-10 +2022-02-20,4.059286902653159e-08,3.7410579202406965e-09 +2022-02-21,3.465404709549183e-08,-5.9388219310397595e-09 +2022-02-22,3.2765344400619776e-08,-1.8887026948720567e-09 +2022-02-23,2.9380256706436633e-08,-3.3850876941831435e-09 +2022-02-24,2.6129849392153224e-08,-3.250407314283409e-09 +2022-02-25,3.232891166518818e-08,6.199062273034957e-09 +2022-02-26,3.145071616356268e-08,-8.781955016255e-10 +2022-02-27,2.654493609485872e-08,-4.905780068703961e-09 +2022-02-28,2.7627839870019012e-08,1.082903775160292e-09 +2022-03-01,3.461384480954684e-08,6.9860049395278285e-09 +2022-03-02,4.834693553468113e-08,1.3733090725134289e-08 +2022-03-03,4.743549219036562e-08,-9.114433443155112e-10 +2022-03-04,4.2537077560792166e-08,-4.898414629573452e-09 +2022-03-05,4.4062939866537104e-08,1.5258623057449388e-09 +2022-03-06,4.046851340177389e-08,-3.5944264647632152e-09 +2022-03-07,3.89144850625056e-08,-1.5540283392682912e-09 +2022-03-08,4.23208096794223e-08,3.4063246169167022e-09 +2022-03-09,3.646096290665679e-08,-5.8598467727655134e-09 +2022-03-10,3.23822389746491e-08,-4.078723932007684e-09 +2022-03-11,2.4962543944883202e-08,-7.419695029765901e-09 +2022-03-12,2.6663503395849837e-08,1.7009594509666343e-09 +2022-03-13,2.8676188700038173e-08,2.0126853041883365e-09 +2022-03-14,2.929265234579543e-08,6.164636457572584e-10 +2022-03-15,3.147749377779196e-08,2.184841431996529e-09 +2022-03-16,3.1615332827021604e-08,1.378390492296435e-10 +2022-03-17,2.998878954198522e-08,-1.6265432850363824e-09 +2022-03-18,2.8496465663119173e-08,-1.4923238788660483e-09 +2022-03-19,3.1245408073012054e-08,2.74894240989288e-09 +2022-03-20,2.9846437528263524e-08,-1.3989705447485293e-09 +2022-03-21,2.926152138774466e-08,-5.84916140518863e-10 +2022-03-22,2.859115361645414e-08,-6.703677712905199e-10 +2022-03-23,2.369129884061646e-08,-4.899854775837681e-09 +2022-03-24,2.523014726759236e-08,1.538848426975901e-09 +2022-03-25,2.288537965061387e-08,-2.3447676169784917e-09 +2022-03-26,2.310276357935104e-08,2.173839287371705e-10 +2022-03-27,2.2656786646617332e-08,-4.4597693273370776e-10 +2022-03-28,2.0227639488696243e-08,-2.4291471579210894e-09 +2022-03-29,2.307843880666298e-08,2.8507993179667375e-09 +2022-03-30,2.6382717944763686e-08,3.3042791381007056e-09 +2022-03-31,2.385953396526143e-08,-2.5231839795022572e-09 +2022-04-01,2.2465995308477722e-08,-1.3935386567837067e-09 +2022-04-02,2.2342475468581864e-08,-1.2351983989585808e-10 +2022-04-03,2.1764383372071218e-08,-5.78092096510646e-10 +2022-04-04,2.2380472556507986e-08,6.160891844367678e-10 +2022-04-05,2.2251842596973792e-08,-1.2862995953419395e-10 +2022-04-06,1.8248668047427277e-08,-4.0031745495465145e-09 +2022-04-07,2.1699809884409617e-08,3.4511418369823397e-09 +2022-04-08,2.0851948427959244e-08,-8.478614564503727e-10 +2022-04-09,2.1718871550682823e-08,8.669231227235786e-10 +2022-04-10,1.872283989006366e-08,-2.996031660619163e-09 +2022-04-11,1.476660783847466e-08,-3.956232051589e-09 +2022-04-12,1.56106442955547e-08,8.440364570800391e-10 +2022-04-13,1.535098240894211e-08,-2.596618866125881e-10 +2022-04-14,1.6107355431317724e-08,7.563730223756128e-10 +2022-04-15,1.68480219471043e-08,7.406665157865776e-10 +2022-04-16,1.6205947851713187e-08,-6.420740953911139e-10 +2022-04-17,1.7316300867156217e-08,1.11035301544303e-09 +2022-04-18,1.6318211351188018e-08,-9.980895159681994e-10 +2022-04-19,1.4475488985916991e-08,-1.8427223652710267e-09 +2022-04-20,1.3445573948695598e-08,-1.0299150372213931e-09 +2022-04-21,1.0589905906648756e-08,-2.855668042046842e-09 +2022-04-22,9.839200570719083e-09,-7.507053359296734e-10 +2022-04-23,1.0150502558994188e-08,3.1130198827510583e-10 +2022-04-24,1.0676757335327545e-08,5.262547763333562e-10 +2022-04-25,7.262116969951351e-09,-3.414640365376194e-09 +2022-04-26,6.277248502720557e-09,-9.848684672307938e-10 +2022-04-27,6.1001443539706635e-09,-1.7710414874989333e-10 +2022-04-28,5.679684720912664e-09,-4.2045963305799927e-10 +2022-04-29,5.411866409171966e-09,-2.6781831174069834e-10 +2022-04-30,5.188123796561136e-09,-2.237426126108299e-10 +2022-05-01,5.831978963724753e-09,6.438551671636172e-10 +2022-05-02,5.591954320960094e-09,-2.4002464276465904e-10 +2022-05-03,5.358995212765556e-09,-2.3295910819453806e-10 +2022-05-04,5.325953692932729e-09,-3.304151983282749e-11 +2022-05-05,4.791308391198097e-09,-5.346453017346314e-10 +2022-05-06,4.868483310485871e-09,7.717491928777397e-11 +2022-05-07,4.685748412448643e-09,-1.8273489803722837e-10 +2022-05-08,4.238689894675376e-09,-4.4705851777326694e-10 +2022-05-09,3.7250704140045524e-09,-5.136194806708235e-10 +2022-05-10,5.198558258411551e-09,1.473487844406999e-09 +2022-05-11,5.4811692887819624e-09,2.82611030370411e-10 +2022-05-12,5.556782482849913e-09,7.561319406795044e-11 +2022-05-13,4.4328851455863716e-09,-1.1238973372635413e-09 +2022-05-14,4.5008083218502945e-09,6.792317626392297e-11 +2022-05-15,5.093107684054979e-09,5.922993622046842e-10 +2022-05-16,5.010970613834117e-09,-8.213707022086205e-11 +2022-05-17,5.861628085212925e-09,8.506574713788085e-10 +2022-05-18,5.491523636081875e-09,-3.7010444913105045e-10 +2022-05-19,5.942041442205521e-09,4.5051780612364654e-10 +2022-05-20,5.466809201533529e-09,-4.752322406719923e-10 +2022-05-21,5.839971550229016e-09,3.7316234869548727e-10 +2022-05-22,5.43015121087948e-09,-4.098203393495366e-10 +2022-05-23,4.112840173852874e-09,-1.3173110370266054e-09 +2022-05-24,4.100328658335685e-09,-1.2511515517189113e-11 +2022-05-25,3.5930922647611554e-09,-5.072363935745297e-10 +2022-05-26,2.5786504776971028e-09,-1.0144417870640527e-09 +2022-05-27,2.3742020769933743e-09,-2.0444840070372841e-10 +2022-05-28,2.6892145594493514e-09,3.15012482455977e-10 +2022-05-29,2.767572167249039e-09,7.835760779968761e-11 +2022-05-30,2.2425211745659033e-09,-5.250509926831357e-10 +2022-05-31,2.6123826391583307e-09,3.6986146459242745e-10 +2022-06-01,2.7070047336320566e-09,9.462209447372594e-11 +2022-06-02,3.34283454166804e-09,6.358298080359833e-10 +2022-06-03,2.8406481462514643e-09,-5.021863954165757e-10 +2022-06-04,2.9490129369601388e-09,1.0836479070867444e-10 +2022-06-05,3.0059697011308932e-09,5.6956764170754476e-11 +2022-06-06,2.498133166305392e-09,-5.07836534825501e-10 +2022-06-07,2.4175924447857124e-09,-8.05407215196798e-11 +2022-06-08,3.0274354395242988e-09,6.098429947385864e-10 +2022-06-09,3.311729652323475e-09,2.842942127991763e-10 +2022-06-10,2.702800903085784e-09,-6.089287492376909e-10 +2022-06-11,2.6546527099472317e-09,-4.814819313855246e-11 +2022-06-12,2.2989006027395248e-09,-3.557521072077069e-10 +2022-06-13,2.3901440221093646e-09,9.124341936983987e-11 +2022-06-14,1.7894190875370673e-09,-6.007249345722973e-10 +2022-06-15,1.8556648124755947e-09,6.624572493852739e-11 +2022-06-16,1.4628159604421594e-09,-3.9284885203343534e-10 +2022-06-17,1.7187561715355298e-09,2.559402110933704e-10 +2022-06-18,1.1822470489994934e-09,-5.365091225360363e-10 +2022-06-19,9.574031352576718e-10,-2.2484391374182167e-10 +2022-06-20,9.422963233767435e-10,-1.510681188092829e-11 +2022-06-21,9.072529312714284e-10,-3.5043392105315094e-11 +2022-06-22,8.368707320965548e-10,-7.038219917487358e-11 +2022-06-23,6.77250782957538e-10,-1.5961994913901675e-10 +2022-06-24,6.902524428124489e-10,1.3001659854910875e-11 +2022-06-25,6.726405818132384e-10,-1.761186099921052e-11 +2022-06-26,7.603963972887111e-10,8.77558154754727e-11 +2022-06-27,7.771797332768827e-10,1.6783335988171556e-11 +2022-06-28,6.092559258623814e-10,-1.679238074145013e-10 +2022-06-29,6.598455713887591e-10,5.0589645526377726e-11 +2022-06-30,6.450352292592867e-10,-1.4810342129472405e-11 +2022-07-01,5.448484675437372e-10,-1.0018676171554952e-10 +2022-07-02,5.266920297724205e-10,-1.8156437771316656e-11 +2022-07-03,5.044445579119696e-10,-2.2247471860450897e-11 +2022-07-04,3.214717564820692e-10,-1.829728014299004e-10 +2022-07-05,2.6021763111906597e-10,-6.125412536300324e-11 +2022-07-06,2.67252205319228e-10,7.034574200162035e-12 +2022-07-07,2.2348259073077237e-10,-4.376961458845563e-11 +2022-07-08,2.5345958134506564e-10,2.9976990614293265e-11 +2022-07-09,2.744409723547002e-10,2.0981391009634583e-11 +2022-07-10,2.3641810864421133e-10,-3.802286371048889e-11 +2022-07-11,2.0671067662947812e-10,-2.970743201473321e-11 +2022-07-12,1.8381197827254603e-10,-2.2898698356932083e-11 +2022-07-13,1.7150732619607898e-10,-1.2304652076467053e-11 +2022-07-14,1.3752471301667426e-10,-3.398261317940472e-11 +2022-07-15,1.4497782546129273e-10,7.453112444618469e-12 +2022-07-16,1.133997493440136e-10,-3.1578076117279124e-11 +2022-07-17,1.4861727217112547e-10,3.5217522827111866e-11 +2022-07-18,1.2003822130761783e-10,-2.8579050863507646e-11 +2022-07-19,1.6477521399451803e-10,4.4736992686900204e-11 +2022-07-20,1.7570764946519866e-10,1.093243547068063e-11 +2022-07-21,1.864835160773338e-10,1.0775866612135152e-11 +2022-07-22,1.4562547954521097e-10,-4.085803653212284e-11 +2022-07-23,1.2420126102414943e-10,-2.1424218521061548e-11 +2022-07-24,1.1996054419542933e-10,-4.240716828720102e-12 +2022-07-25,1.1530153206153249e-10,-4.6590121338968356e-12 +2022-07-26,9.801062247356937e-11,-1.729090958796312e-11 +2022-07-27,8.065209495122095e-11,-1.7358527522348415e-11 +2022-07-28,1.0415188936362894e-10,2.3499794412407988e-11 +2022-07-29,1.3859871989084566e-10,3.444683052721672e-11 +2022-07-30,1.437803524359791e-10,5.18163254513344e-12 +2022-07-31,1.644705516473254e-10,2.06901992113463e-11 +2022-08-01,1.5327704384218633e-10,-1.119350780513907e-11 +2022-08-02,1.4616989833474635e-10,-7.107145507439984e-12 +2022-08-03,1.158962390942596e-10,-3.027365924048675e-11 +2022-08-04,1.28661700435823e-10,1.2765461341563408e-11 +2022-08-05,1.0360043222197105e-10,-2.5061268213851957e-11 +2022-08-06,1.0242010534316895e-10,-1.1803268788020952e-12 +2022-08-07,1.094213860913914e-10,7.001280748222453e-12 +2022-08-08,9.685578416164191e-11,-1.2565601929749498e-11 +2022-08-09,9.390719834927059e-11,-2.9485858123713177e-12 +2022-08-10,7.733516545352933e-11,-1.6572032895741255e-11 +2022-08-11,7.611440165178963e-11,-1.2207638017397078e-12 +2022-08-12,7.536608352758059e-11,-7.483181242090359e-13 +2022-08-13,7.18957855030799e-11,-3.470298024500695e-12 +2022-08-14,6.208174638675926e-11,-9.814039116320634e-12 +2022-08-15,5.886473187219519e-11,-3.2170145145640737e-12 +2022-08-16,6.033901016115481e-11,1.4742782889596206e-12 +2022-08-17,5.391629055464779e-11,-6.422719606507018e-12 +2022-08-18,5.333212061686417e-11,-5.841699377836194e-13 +2022-08-19,3.7426195956276695e-11,-1.5905924660587477e-11 +2022-08-20,3.710132545320149e-11,-3.248705030752078e-13 +2022-08-21,4.829083849683375e-11,1.1189513043632264e-11 +2022-08-22,3.813506284930052e-11,-1.0155775647533234e-11 +2022-08-23,3.83179659269418e-11,1.829030776412807e-13 +2022-08-24,3.910324654742722e-11,7.852806204854195e-13 +2022-08-25,4.346402843534756e-11,4.36078188792034e-12 +2022-08-26,3.1770692378438435e-11,-1.1693336056909122e-11 +2022-08-27,2.87155674173345e-11,-3.0551249611039357e-12 +2022-08-28,2.7440550453099084e-11,-1.275016964235415e-12 +2022-08-29,3.08863733832358e-11,3.445822930136714e-12 +2022-08-30,3.0365319962494326e-11,-5.210534207414723e-13 +2022-08-31,3.3031776070828974e-11,2.6664561083346477e-12 +2022-09-01,3.5195283865591884e-11,2.1635077947629106e-12 +2022-09-02,3.616869202562664e-11,9.734081600347563e-13 +2022-09-03,3.617124553575841e-11,2.5535101317708317e-15 +2022-09-04,3.719273506811946e-11,1.0214895323610476e-12 +2022-09-05,3.226068323218815e-11,-4.9320518359313085e-12 +2022-09-06,2.5296515248618245e-11,-6.964167983569905e-12 +2022-09-07,2.176197247458686e-11,-3.534542774031387e-12 +2022-09-08,2.648635467596921e-11,4.724382201382352e-12 +2022-09-09,2.5059002571170628e-11,-1.427352104798583e-12 +2022-09-10,2.5384606320968583e-11,3.2560374979795537e-13 +2022-09-11,2.5895327437732742e-11,5.107211167641588e-13 +2022-09-12,2.5367459401849132e-11,-5.278680358836094e-13 +2022-09-13,2.1452401394223867e-11,-3.915058007625266e-12 +2022-09-14,1.896392771118772e-11,-2.488473683036148e-12 +2022-09-15,1.7401550309163118e-11,-1.5623774020246002e-12 +2022-09-16,1.91462500598148e-11,1.7446997506516817e-12 +2022-09-17,1.816006787433063e-11,-9.861821854841703e-13 +2022-09-18,1.3786684595239893e-11,-4.373383279090737e-12 +2022-09-19,1.4122848838269746e-11,3.361642430298527e-13 +2022-09-20,1.598114947161176e-11,1.858300633342014e-12 +2022-09-21,1.863272534202571e-11,2.6515758704139503e-12 +2022-09-22,1.4763015311896067e-11,-3.869710030129643e-12 +2022-09-23,1.4983572696274172e-11,2.2055738437810498e-13 +2022-09-24,1.5254894393496147e-11,2.7132169722197517e-13 +2022-09-25,1.758416544771836e-11,2.3292710542222118e-12 +2022-09-26,2.0602637068563207e-11,3.0184716208448475e-12 +2022-09-27,1.5697024201925608e-11,-4.905612866637599e-12 +2022-09-28,1.7888046813332112e-11,2.191022611406504e-12 +2022-09-29,1.7588009714927352e-11,-3.000370984047599e-13 +2022-09-30,1.835793214021338e-11,7.699224252860274e-13 +2022-10-01,1.8186480976934335e-11,-1.714511632790441e-13 +2022-10-02,1.6897687304150735e-11,-1.2887936727836006e-12 +2022-10-03,1.6944935115103327e-11,4.724781095259203e-14 +2022-10-04,1.6477916318529282e-11,-4.670187965740448e-13 +2022-10-05,1.519880971259349e-11,-1.2791066059357922e-12 +2022-10-06,1.4767736099946973e-11,-4.3107361264651696e-13 +2022-10-07,1.43084474097357e-11,-4.592886902112729e-13 +2022-10-08,1.4173212089920419e-11,-1.3523531981528106e-13 +2022-10-09,1.3942627054329706e-11,-2.3058503559071295e-13 +2022-10-10,1.3621257061206718e-11,-3.213699931229879e-13 +2022-10-11,1.3499286990810084e-11,-1.2197007039663425e-13 +2022-10-12,1.3132685119474521e-11,-3.6660187133556237e-13 +2022-10-13,1.1470154847846223e-11,-1.6625302716282987e-12 +2022-10-14,1.1985143780796917e-11,5.149889329506938e-13 +2022-10-15,1.1556323144302943e-11,-4.2882063649397404e-13 +2022-10-16,1.1633034429215709e-11,7.671128491276637e-14 +2022-10-17,1.1594323245951066e-11,-3.8711183264643234e-14 +2022-10-18,1.1035762469503844e-11,-5.585607764472216e-13 +2022-10-19,1.1087389920145878e-11,5.162745064203432e-14 +2022-10-20,1.1355429324105678e-11,2.680394039597994e-13 +2022-10-21,1.063993139365402e-11,-7.154979304516582e-13 +2022-10-22,1.0219008849703342e-11,-4.2092254395067757e-13 +2022-10-23,9.312612065892736e-12,-9.063967838106061e-13 +2022-10-24,9.018867478817466e-12,-2.9374458707527036e-13 +2022-10-25,7.218806364159079e-12,-1.800061114658387e-12 +2022-10-26,6.9595107184773276e-12,-2.592956456817511e-13 +2022-10-27,8.270983234161208e-12,1.3114725156838809e-12 +2022-10-28,8.951777833928418e-12,6.807945997672094e-13 +2022-10-29,7.86140544040053e-12,-1.0903723935278882e-12 +2022-10-30,8.04886002575755e-12,1.8745458535702e-13 +2022-10-31,8.193371787695699e-12,1.4451176193814925e-13 +2022-11-01,7.849711830885296e-12,-3.436599568104027e-13 +2022-11-02,7.443694525620904e-12,-4.0601730526439227e-13 +2022-11-03,7.012913109596199e-12,-4.3078141602470496e-13 +2022-11-04,6.3099565185310965e-12,-7.029565910651025e-13 +2022-11-05,6.7965610760259524e-12,4.866045574948559e-13 +2022-11-06,6.136385412309928e-12,-6.601756637160242e-13 +2022-11-07,7.35185843886582e-12,1.215473026555892e-12 +2022-11-08,7.497653494173578e-12,1.457950553077579e-13 +2022-11-09,6.887508779151329e-12,-6.101447150222489e-13 +2022-11-10,6.037256026322175e-12,-8.502527528291543e-13 +2022-11-11,5.664842541118158e-12,-3.7241348520401685e-13 +2022-11-12,6.456730364317278e-12,7.918878231991201e-13 +2022-11-13,5.724948042438244e-12,-7.317823218790339e-13 +2022-11-14,6.362441034866384e-12,6.374929924281398e-13 +2022-11-15,6.7714582516539675e-12,4.090172167875835e-13 +2022-11-16,5.77887855972374e-12,-9.92579691930228e-13 +2022-11-17,6.5308830585414394e-12,7.520044988176998e-13 +2022-11-18,6.75444114001576e-12,2.2355808147432085e-13 +2022-11-19,6.273265914463483e-12,-4.811752255522774e-13 +2022-11-20,6.161782396047159e-12,-1.1148351841632356e-13 +2022-11-21,5.611845217118837e-12,-5.499371789283227e-13 +2022-11-22,4.785922925750589e-12,-8.259222913682478e-13 +2022-11-23,5.231572476064674e-12,4.4564955031408545e-13 +2022-11-24,5.200824809692133e-12,-3.074766637254086e-14 +2022-11-25,5.198871448803932e-12,-1.9533608882017502e-15 +2022-11-26,5.129277817800954e-12,-6.959363100297732e-14 +2022-11-27,5.320385136653735e-12,1.9110731885278067e-13 +2022-11-28,5.491208918175714e-12,1.7082378152197908e-13 +2022-11-29,5.001730276814948e-12,-4.894786413607658e-13 +2022-11-30,6.720153649480951e-12,1.7184233726660027e-12 +2022-12-01,7.065636769226634e-12,3.4548311974568336e-13 +2022-12-02,7.0191360152668445e-12,-4.650075395978981e-14 +2022-12-03,5.845094119938497e-12,-1.1740418953283476e-12 +2022-12-04,5.812030099744459e-12,-3.3064020194037993e-14 +2022-12-05,5.15913883039686e-12,-6.528912693475986e-13 +2022-12-06,4.853875829950276e-12,-3.052630004465846e-13 +2022-12-07,4.691363102239801e-12,-1.625127277104744e-13 +2022-12-08,4.511486942137816e-12,-1.7987616010198527e-13 +2022-12-09,4.4775032946934475e-12,-3.3983647444368456e-14 +2022-12-10,4.5016035686287784e-12,2.4100273935330932e-14 +2022-12-11,4.817615925816179e-12,3.1601235718740034e-13 +2022-12-12,4.0909395718235765e-12,-7.266763539926023e-13 +2022-12-13,4.027807070277758e-12,-6.313250154581859e-14 +2022-12-14,3.940504493043248e-12,-8.73025772345098e-14 +2022-12-15,3.6788372701940004e-12,-2.6166722284924766e-13 +2022-12-16,4.239396687400848e-12,5.605594172068478e-13 +2022-12-17,4.473348218945673e-12,2.3395153154482456e-13 +2022-12-18,5.002833753078755e-12,5.294855341330819e-13 +2022-12-19,5.07450769067059e-12,7.167393759183572e-14 +2022-12-20,4.7211923384143615e-12,-3.533153522562289e-13 +2022-12-21,4.653966725046945e-12,-6.72256133674162e-14 +2022-12-22,3.902104435713695e-12,-7.518622893332504e-13 +2022-12-23,3.947344976300508e-12,4.52405405868129e-14 +2022-12-24,3.9647180573747584e-12,1.7373081074250693e-14 +2022-12-25,3.55709397076128e-12,-4.0762408661347824e-13 +2022-12-26,3.5216359497879413e-12,-3.5458020973338904e-14 +2022-12-27,3.4169069189683743e-12,-1.0472903081956694e-13 +2022-12-28,3.646245899111424e-12,2.293389801430497e-13 +2022-12-29,3.747329145590166e-12,1.0108324647874228e-13 +2022-12-30,3.713109400984497e-12,-3.4219744605669354e-14 +2022-12-31,3.644612044448732e-12,-6.84973565357653e-14 +2023-01-01,3.5172023529793205e-12,-1.2740969146941113e-13 +2023-01-02,3.1072350138458293e-12,-4.0996733913349127e-13 +2023-01-03,3.1243589375471865e-12,1.712392370135721e-14 +2023-01-04,2.944881929403387e-12,-1.7947700814379936e-13 +2023-01-05,2.905665845103356e-12,-3.9216084300031274e-14 +2023-01-06,2.8983329922294374e-12,-7.332852873918434e-15 +2023-01-07,2.882085190682736e-12,-1.6247801546701324e-14 +2023-01-08,2.6049893835959057e-12,-2.770958070868304e-13 +2023-01-09,2.1548166015630405e-12,-4.5017278203286514e-13 +2023-01-10,2.223423554044423e-12,6.86069524813826e-14 +2023-01-11,2.062395961545052e-12,-1.6102759249937097e-13 +2023-01-12,1.8885320635583495e-12,-1.7386389798670263e-13 +2023-01-13,1.7468311554203605e-12,-1.4170090813798907e-13 +2023-01-14,1.5997856191407191e-12,-1.4704553627964133e-13 +2023-01-15,1.756670517944559e-12,1.5688489880383992e-13 +2023-01-16,1.5952305544394264e-12,-1.6143996350513263e-13 +2023-01-17,1.379991073285129e-12,-2.1523948115429737e-13 +2023-01-18,1.2439755094686714e-12,-1.3601556381645767e-13 +2023-01-19,1.282945992768378e-12,3.8970483299706564e-14 +2023-01-20,9.587261630183806e-13,-3.2421982974999733e-13 +2023-01-21,1.0627890720576019e-12,1.0406290903922124e-13 +2023-01-22,1.0860716331144035e-12,2.328256105680161e-14 +2023-01-23,1.0083016162697989e-12,-7.77700168446046e-14 +2023-01-24,9.434935992097114e-13,-6.480801706008745e-14 +2023-01-25,9.052906500365658e-13,-3.82029491731456e-14 +2023-01-26,9.813642848832232e-13,7.607363484665741e-14 +2023-01-27,8.244855570225522e-13,-1.5687872786067107e-13 +2023-01-28,8.086464134727202e-13,-1.5839143549831957e-14 +2023-01-29,6.78370434432786e-13,-1.3027597903993418e-13 +2023-01-30,5.657113032080852e-13,-1.1265913122470086e-13 +2023-01-31,5.915743720245089e-13,2.5863068816423762e-14 +2023-02-01,5.628539963614728e-13,-2.872037566303617e-14 +2023-02-02,5.97941287757587e-13,3.508729139611424e-14 +2023-02-03,6.671334048907117e-13,6.919211713312468e-14 +2023-02-04,6.237481478892965e-13,-4.33852570014152e-14 +2023-02-05,5.863044628005571e-13,-3.744368508873943e-14 +2023-02-06,6.823531419246395e-13,9.604867912408244e-14 +2023-02-07,6.814807920163213e-13,-8.723499083181755e-16 +2023-02-08,6.156144661815122e-13,-6.586632583480911e-14 +2023-02-09,5.150917018639054e-13,-1.0052276431760685e-13 +2023-02-10,5.48854149731279e-13,3.376244786737364e-14 +2023-02-11,5.515788059105185e-13,2.7246561792394792e-15 +2023-02-12,5.256639831849568e-13,-2.5914822725561687e-14 +2023-02-13,5.145991294116553e-13,-1.1064853773301523e-14 +2023-02-14,5.933926876763992e-13,7.879355826474393e-14 +2023-02-15,4.5374936041241777e-13,-1.3964332726398142e-13 +2023-02-16,3.8585337678714865e-13,-6.789598362526912e-14 +2023-02-17,3.8971494574491845e-13,3.861568957769799e-15 +2023-02-18,4.221682749124492e-13,3.2453329167530735e-14 +2023-02-19,4.192113333761841e-13,-2.9569415362650773e-15 +2023-02-20,3.849819391882162e-13,-3.42293941879679e-14 +2023-02-21,4.3259300514577643e-13,4.7611065957560226e-14 +2023-02-22,3.806490794989894e-13,-5.1943925646787054e-14 +2023-02-23,3.830377842649762e-13,2.3887047659868006e-15 +2023-02-24,3.690566008269865e-13,-1.3981183437989688e-14 +2023-02-25,3.4467659330125705e-13,-2.4380007525729444e-14 +2023-02-26,3.3711682965421494e-13,-7.55976364704211e-15 +2023-02-27,3.055349420728287e-13,-3.1581887581386244e-14 +2023-02-28,3.01186480189829e-13,-4.348461882999698e-15 +2023-03-01,3.0179561495040087e-13,6.091347605718749e-16 +2023-03-02,3.008597391013022e-13,-9.35875849098663e-16 +2023-03-03,3.382719946919311e-13,3.741225559062889e-14 +2023-03-04,3.340717488087643e-13,-4.200245883166788e-15 +2023-03-05,3.5142500072409246e-13,1.7353251915328156e-14 +2023-03-06,3.66372255816849e-13,1.4947255092756535e-14 +2023-03-07,3.287019750563189e-13,-3.76702807605301e-14 +2023-03-08,3.3998883676705975e-13,1.1286861710740854e-14 +2023-03-09,3.153710936010048e-13,-2.4617743166054927e-14 +2023-03-10,2.5050111675968125e-13,-6.486997684132357e-14 +2023-03-11,2.0014945619463898e-13,-5.035166056504227e-14 +2023-03-12,1.9643140015610947e-13,-3.7180560385295114e-15 +2023-03-13,1.8448584696369347e-13,-1.1945553192416e-14 +2023-03-14,1.573487788044309e-13,-2.7137068159262556e-14 +2023-03-15,1.6622956276818453e-13,8.880783963753615e-15 +2023-03-16,1.8250873342057004e-13,1.6279170652385513e-14 +2023-03-17,1.4707577904862728e-13,-3.543295437194276e-14 +2023-03-18,1.3821648333313535e-13,-8.859295715491925e-15 +2023-03-19,1.4591264098431912e-13,7.696157651183762e-15 +2023-03-20,1.1023388975581836e-13,-3.567875122850075e-14 +2023-03-21,1.037581207929142e-13,-6.475768962904162e-15 +2023-03-22,9.853938561095306e-14,-5.218735181961139e-15 +2023-03-23,1.0836312698268316e-13,9.823741371730095e-15 +2023-03-24,1.0182102490716807e-13,-6.542102075515083e-15 +2023-03-25,1.0732450760467523e-13,5.503482697507158e-15 +2023-03-26,1.1122535791255101e-13,3.900850307875775e-15 +2023-03-27,9.847162336824993e-14,-1.275373454430108e-14 +2023-03-28,1.0605483774688878e-13,7.583214378638852e-15 +2023-03-29,1.0423277800567839e-13,-1.8220597412103875e-15 +2023-03-30,1.2003523401645286e-13,1.580245601077447e-14 +2023-03-31,1.1318401230556267e-13,-6.851221710890188e-15 +2023-04-01,1.1403508338438536e-13,8.510710788226855e-16 +2023-04-02,1.1337409785161225e-13,-6.60985532773103e-16 +2023-04-03,9.958927075072558e-14,-1.3784827100886677e-14 +2023-04-04,9.474834333737997e-14,-4.8409274133456065e-15 +2023-04-05,9.878478492433688e-14,4.0364415869569086e-15 +2023-04-06,9.38117907820954e-14,-4.9729941422414856e-15 +2023-04-07,9.426886618992832e-14,4.570754078329296e-16 +2023-04-08,8.965429485261058e-14,-4.61457133731774e-15 +2023-04-09,8.300782750988794e-14,-6.6464673427226404e-15 +2023-04-10,8.011946652844795e-14,-2.8883609814399955e-15 +2023-04-11,8.118449522085739e-14,1.0650286924094456e-15 +2023-04-12,7.587290618231384e-14,-5.311589038543557e-15 +2023-04-13,6.480460774104148e-14,-1.1068298441272358e-14 +2023-04-14,6.574616385080037e-14,9.41556109758892e-16 +2023-04-15,6.607111569982272e-14,3.249518490223445e-16 +2023-04-16,6.134304737635229e-14,-4.728068323470423e-15 +2023-04-17,6.134793815470906e-14,4.890778356764696e-18 +2023-04-18,5.6827339845738744e-14,-4.520598308970313e-15 +2023-04-19,4.7309864234768465e-14,-9.517475610970279e-15 +2023-04-20,4.962710539828688e-14,2.3172411635184154e-15 +2023-04-21,4.513291378656409e-14,-4.494191611722793e-15 +2023-04-22,4.5655133173702946e-14,5.222193871388584e-16 +2023-04-23,4.6046806572963854e-14,3.9167339926090724e-16 +2023-04-24,4.704223774650212e-14,9.954311735382647e-16 +2023-04-25,4.260029419123912e-14,-4.441943555262999e-15 +2023-04-26,3.4928348469719315e-14,-7.671945721519804e-15 +2023-04-27,3.45855711204683e-14,-3.4277734925101296e-16 +2023-04-28,3.4693064167795623e-14,1.0749304732732105e-16 +2023-04-29,3.5256305278291317e-14,5.632411104956932e-16 +2023-04-30,3.0250109940976344e-14,-5.006195337314972e-15 +2023-05-01,2.83229048373687e-14,-1.9272051036076433e-15 +2023-05-02,2.912640575976598e-14,8.0350092239728e-16 +2023-05-03,2.7997920059978546e-14,-1.1284856997874354e-15 +2023-05-04,2.8265794115089577e-14,2.678740551110308e-16 +2023-05-05,2.5144173263681305e-14,-3.1216208514082716e-15 +2023-05-06,2.1030243104775366e-14,-4.1139301589059384e-15 +2023-05-07,2.0435985739858494e-14,-5.94257364916873e-16 +2023-05-08,2.1904082126512135e-14,1.468096386653642e-15 +2023-05-09,2.3776733841689698e-14,1.872651715177562e-15 +2023-05-10,2.235210552519348e-14,-1.424628316496219e-15 +2023-05-11,2.1005479278909378e-14,-1.346626246284101e-15 +2023-05-12,1.9827157471549472e-14,-1.1783218073599053e-15 +2023-05-13,1.9870605023366773e-14,4.344755181730044e-17 +2023-05-14,2.0589679757179372e-14,7.190747338125995e-16 +2023-05-15,2.0855229152436247e-14,2.6554939525687427e-16 +2023-05-16,2.152116132006152e-14,6.659321676252736e-16 +2023-05-17,1.9082920159503236e-14,-2.4382411605582845e-15 +2023-05-18,1.8240446779193776e-14,-8.424733803094597e-16 +2023-05-19,1.8310582417984778e-14,7.013563879100202e-17 +2023-05-20,1.7901422423166855e-14,-4.0915999481792353e-16 +2023-05-21,1.8299290012618682e-14,3.978675894518276e-16 +2023-05-22,1.9413392916020062e-14,1.1141029034013797e-15 +2023-05-23,1.8841546355830167e-14,-5.718465601898944e-16 +2023-05-24,1.5549584842146187e-14,-3.29196151368398e-15 +2023-05-25,1.613937316857323e-14,5.89788326427043e-16 +2023-05-26,1.587921712243242e-14,-2.601560461408094e-16 +2023-05-27,1.6082828233253508e-14,2.0361111082108742e-16 +2023-05-28,1.502571799024775e-14,-1.0571102430057591e-15 +2023-05-29,1.5024975862772713e-14,-7.42127475036595e-19 +2023-05-30,1.5294912884920538e-14,2.699370221478256e-16 +2023-05-31,1.5070935374943715e-14,-2.2397750997682307e-16 +2023-06-01,1.58902210071812e-14,8.192856322374848e-16 +2023-06-02,1.561869474242012e-14,-2.7152626476107985e-16 +2023-06-03,1.5096652239859785e-14,-5.220425025603353e-16 +2023-06-04,1.4967861984553067e-14,-1.2879025530671802e-16 +2023-06-05,1.2872395601452505e-14,-2.0954663831005617e-15 +2023-06-06,1.1796827650153314e-14,-1.0755679512991906e-15 +2023-06-07,1.1425608099220951e-14,-3.712195509323632e-16 +2023-06-08,1.1926450935510199e-14,5.00842836289248e-16 +2023-06-09,1.190954611995343e-14,-1.690481555676921e-17 +2023-06-10,1.0845337691386993e-14,-1.0642084285664365e-15 +2023-06-11,1.0749739261179332e-14,-9.559843020766103e-17 +2023-06-12,1.0571751548214651e-14,-1.7798771296468125e-16 +2023-06-13,1.1574199450280356e-14,1.0024479020657048e-15 +2023-06-14,1.0876187745425625e-14,-6.980117048547314e-16 +2023-06-15,1.0817986816934948e-14,-5.820092849067625e-17 +2023-06-16,9.982923209843329e-15,-8.350636070916197e-16 +2023-06-17,8.960873906372331e-15,-1.0220493034709977e-15 +2023-06-18,8.929493547893315e-15,-3.1380358479016284e-17 +2023-06-19,9.285450590223848e-15,3.5595704233053346e-16 +2023-06-20,8.814899164015074e-15,-4.705514262087742e-16 +2023-06-21,7.09275567044519e-15,-1.7221434935698837e-15 +2023-06-22,6.466954281065887e-15,-6.258013893793035e-16 +2023-06-23,6.295417447212355e-15,-1.7153683385353208e-16 +2023-06-24,6.588048310275985e-15,2.926308630636305e-16 +2023-06-25,5.9771017090817885e-15,-6.109466011941966e-16 +2023-06-26,6.6014005395076035e-15,6.24298830425815e-16 +2023-06-27,6.877983241334419e-15,2.7658270182681545e-16 +2023-06-28,6.615296470726041e-15,-2.6268677060837833e-16 +2023-06-29,5.939819295702643e-15,-6.754771750233978e-16 +2023-06-30,5.59537134370521e-15,-3.4444795199743277e-16 +2023-07-01,5.6162412647754765e-15,2.086992107026642e-17 +2023-07-02,5.388365531180823e-15,-2.278757335946538e-16 +2023-07-03,5.662258710055154e-15,2.738931788743314e-16 +2023-07-04,5.7473429958019665e-15,8.508428574681246e-17 +2023-07-05,5.550858483935372e-15,-1.9648451186659436e-16 +2023-07-06,4.888396530706567e-15,-6.624619532288051e-16 +2023-07-07,4.735887240556653e-15,-1.5250929014991426e-16 +2023-07-08,4.849657187582519e-15,1.1376994702586608e-16 +2023-07-09,5.0103313055608936e-15,1.6067411797837467e-16 +2023-07-10,4.6349999626461935e-15,-3.753313429147001e-16 +2023-07-11,4.583736865916679e-15,-5.1263096729514627e-17 +2023-07-12,4.907026528102579e-15,3.2328966218590027e-16 +2023-07-13,4.4453068732306026e-15,-4.617196548719766e-16 +2023-07-14,3.988225504558404e-15,-4.570813686721985e-16 +2023-07-15,4.0928225338156386e-15,1.0459702925723451e-16 +2023-07-16,4.210433232623775e-15,1.176106988081367e-16 +2023-07-17,3.8504433427001026e-15,-3.5998988992367276e-16 +2023-07-18,3.9874118552775444e-15,1.369685125774419e-16 +2023-07-19,3.912077868382938e-15,-7.533398689460611e-17 +2023-07-20,3.651978974862932e-15,-2.6009889352000605e-16 +2023-07-21,3.647009636613184e-15,-4.96933824974867e-18 +2023-07-22,3.3653807747738357e-15,-2.8162886183934794e-16 +2023-07-23,3.4470494000640957e-15,8.166862529026004e-17 +2023-07-24,3.464943854340155e-15,1.789445427605916e-17 +2023-07-25,3.5697140700751306e-15,1.0477021573497568e-16 +2023-07-26,3.584325340511114e-15,1.4611270435983132e-17 +2023-07-27,3.567257522063568e-15,-1.7067818447545895e-17 +2023-07-28,3.507441256618291e-15,-5.981626544527662e-17 +2023-07-29,3.473125539266645e-15,-3.4315717351646143e-17 +2023-07-30,3.619504086664348e-15,1.4637854739770297e-16 +2023-07-31,3.705058730965465e-15,8.555464430111729e-17 +2023-08-01,3.6726432595029276e-15,-3.2415471462537734e-17 +2023-08-02,3.4505716240435654e-15,-2.2207163545936216e-16 +2023-08-03,3.41696643178048e-15,-3.360519226308559e-17 +2023-08-04,3.3063944608498916e-15,-1.1057197093058823e-16 +2023-08-05,3.370586916961223e-15,6.419245611133138e-17 +2023-08-06,3.389058171701991e-15,1.8471254740767934e-17 +2023-08-07,3.3339977670286167e-15,-5.506040467337419e-17 +2023-08-08,3.021592770557748e-15,-3.1240499647086862e-16 +2023-08-09,3.0730580549297545e-15,5.146528437200646e-17 +2023-08-10,3.1234731438442553e-15,5.0415088914500805e-17 +2023-08-11,3.113898785219765e-15,-9.574358624490337e-18 +2023-08-12,3.1054656188612406e-15,-8.433166358524426e-18 +2023-08-13,2.995359544402957e-15,-1.1010607445828374e-16 +2023-08-14,3.0381677348508113e-15,4.280819044785441e-17 +2023-08-15,3.099029114354691e-15,6.086137950387957e-17 +2023-08-16,3.081008876642303e-15,-1.802023771238798e-17 +2023-08-17,2.553989604965466e-15,-5.270192716768368e-16 +2023-08-18,2.4007712081741258e-15,-1.5321839679134026e-16 +2023-08-19,2.222202792378226e-15,-1.7856841579589986e-16 +2023-08-20,2.1951060104809265e-15,-2.7096781897299396e-17 +2023-08-21,2.3994287912543715e-15,2.0432278077344501e-16 +2023-08-22,2.121535340373663e-15,-2.778934508807084e-16 +2023-08-23,1.9716441504040718e-15,-1.4989118996959132e-16 +2023-08-24,1.8503257543884823e-15,-1.2131839601558945e-16 +2023-08-25,1.9585567238079497e-15,1.0823096941946741e-16 +2023-08-26,1.986500822991138e-15,2.794409918318844e-17 +2023-08-27,1.9900570623266095e-15,3.556239335471353e-18 +2023-08-28,1.942276632603776e-15,-4.7780429722833406e-17 +2023-08-29,1.8545319914653133e-15,-8.774464113846283e-17 +2023-08-30,1.7455635536308935e-15,-1.0896843783441979e-16 +2023-08-31,1.5638882797300597e-15,-1.8167527390083384e-16 +2023-09-01,1.4531876664574587e-15,-1.10700613272601e-16 +2023-09-02,1.4687452799881964e-15,1.5557613530737725e-17 +2023-09-03,1.503793516411049e-15,3.504823642285261e-17 +2023-09-04,1.5099961552657887e-15,6.202638854739725e-18 +2023-09-05,1.575365457085457e-15,6.536930181966825e-17 +2023-09-06,1.6795591211494701e-15,1.0419366406401314e-16 +2023-09-07,1.5699413498962786e-15,-1.0961777125319154e-16 +2023-09-08,1.5349678763172496e-15,-3.497347357902901e-17 +2023-09-09,1.5400412454092648e-15,5.073369092015267e-18 +2023-09-10,1.5496182766353422e-15,9.57703122607739e-18 +2023-09-11,1.4562291947784774e-15,-9.338908185686487e-17 +2023-09-12,1.2578059255681918e-15,-1.9842326921028553e-16 +2023-09-13,1.2710181632365565e-15,1.3212237668364673e-17 +2023-09-14,1.1736604023905134e-15,-9.735776084604314e-17 +2023-09-15,1.22864862095304e-15,5.498821856252667e-17 +2023-09-16,1.2280633766156543e-15,-5.852443373857749e-19 +2023-09-17,1.2096072175104379e-15,-1.8456159105216384e-17 +2023-09-18,1.1155991502241605e-15,-9.400806728627734e-17 +2023-09-19,1.1766887661500308e-15,6.108961592587031e-17 +2023-09-20,1.23770433759843e-15,6.101557144839907e-17 +2023-09-21,1.1271196937298327e-15,-1.1058464386859722e-16 +2023-09-22,1.1611107206406934e-15,3.399102691086073e-17 +2023-09-23,1.1772887350260435e-15,1.6178014385350113e-17 +2023-09-24,1.190583761057023e-15,1.3295026030979423e-17 +2023-09-25,1.1739970553216506e-15,-1.658670573537233e-17 +2023-09-26,1.1498963458448912e-15,-2.4100709476759416e-17 +2023-09-27,1.0417615015343768e-15,-1.0813484431051443e-16 +2023-09-28,8.547565108611315e-16,-1.8700499067324532e-16 +2023-09-29,7.909170533225054e-16,-6.383945753862605e-17 +2023-09-30,7.913038676335803e-16,3.868143110749268e-19 +2023-10-01,7.680294927233244e-16,-2.3274374910255912e-17 +2023-10-02,7.047647399636038e-16,-6.326475275972062e-17 +2023-10-03,7.261155954900651e-16,2.13508555264613e-17 +2023-10-04,6.897171844379992e-16,-3.6398411052065875e-17 +2023-10-05,6.897169545963258e-16,-2.2984167340554517e-22 +2023-10-06,7.501645571336524e-16,6.04476025373266e-17 +2023-10-07,7.465412684352094e-16,-3.623288698443056e-18 +2023-10-08,7.372354563485013e-16,-9.305812086708092e-18 +2023-10-09,6.952741907901003e-16,-4.1961265558400975e-17 +2023-10-10,6.712567170689736e-16,-2.401747372112671e-17 +2023-10-11,6.543017118516591e-16,-1.695500521731451e-17 +2023-10-12,6.391829198663141e-16,-1.5118791985344934e-17 +2023-10-13,6.703133954396215e-16,3.1130475573307314e-17 +2023-10-14,6.530394181581853e-16,-1.7273977281436182e-17 +2023-10-15,6.550248698916935e-16,1.985451733508221e-18 +2023-10-16,6.404016844675706e-16,-1.4623185424122928e-17 +2023-10-17,6.34436235789568e-16,-5.965448678002546e-18 +2023-10-18,5.930571785915181e-16,-4.1379057198049946e-17 +2023-10-19,5.969918848927411e-16,3.934706301222994e-18 +2023-10-20,5.425926005742344e-16,-5.43992843185067e-17 +2023-10-21,5.19919036516253e-16,-2.2673564057981337e-17 +2023-10-22,5.079903468289602e-16,-1.1928689687292794e-17 +2023-10-23,4.316073755288438e-16,-7.638297130011646e-17 +2023-10-24,3.8327758553635943e-16,-4.832978999248435e-17 +2023-10-25,4.1502477980754034e-16,3.174719427118091e-17 +2023-10-26,3.8650546173629175e-16,-2.851931807124859e-17 +2023-10-27,4.044925006187789e-16,1.798703888248713e-17 +2023-10-28,4.020375803030989e-16,-2.4549203156799693e-18 +2023-10-29,4.024767492040588e-16,4.391689009598889e-19 +2023-10-30,4.190400628781522e-16,1.65633136740934e-17 +2023-10-31,4.354565125961847e-16,1.6416449718032493e-17 +2023-11-01,4.2015813606028403e-16,-1.5298376535900664e-17 +2023-11-02,3.9345235138076763e-16,-2.6705784679516396e-17 +2023-11-03,3.8960116345134322e-16,-3.851187929424408e-18 +2023-11-04,3.769135038410287e-16,-1.2687659610314538e-17 +2023-11-05,3.9835216754910073e-16,2.1438663708072046e-17 +2023-11-06,3.8689104965383287e-16,-1.1461117895267867e-17 +2023-11-07,3.6935515603012996e-16,-1.753589362370291e-17 +2023-11-08,3.6413543458888733e-16,-5.219721441242627e-18 +2023-11-09,3.215647906233415e-16,-4.257064396554584e-17 +2023-11-10,3.490238175355473e-16,2.745902691220582e-17 +2023-11-11,3.2427525963537457e-16,-2.474855790017274e-17 +2023-11-12,3.2266510986073087e-16,-1.6101497746437023e-18 +2023-11-13,3.0908839794379564e-16,-1.357671191693522e-17 +2023-11-14,2.8806929477380064e-16,-2.1019103169995007e-17 +2023-11-15,2.5627594584925805e-16,-3.1793348924542583e-17 +2023-11-16,2.458678061441003e-16,-1.0408139705157759e-17 +2023-11-17,2.1960543153413019e-16,-2.6262374609970107e-17 +2023-11-18,2.125345891788915e-16,-7.07084235523868e-18 +2023-11-19,2.046236728505663e-16,-7.910916328325208e-18 +2023-11-20,2.0494331220910639e-16,3.19639358540086e-19 +2023-11-21,1.9819190468684226e-16,-6.751407522264124e-18 +2023-11-22,1.746647139198444e-16,-2.352719076699787e-17 +2023-11-23,1.8286808796531636e-16,8.203374045471968e-18 +2023-11-24,1.9240829651788678e-16,9.540208552570416e-18 +2023-11-25,1.9912064380019534e-16,6.7123472823085685e-18 +2023-11-26,1.7408262155886481e-16,-2.5038022241330532e-17 +2023-11-27,1.6526121997757633e-16,-8.82140158128848e-18 +2023-11-28,1.5703014066550092e-16,-8.231079312075416e-18 +2023-11-29,1.672028907028028e-16,1.0172750037301878e-17 +2023-11-30,1.749844091294196e-16,7.781518426616799e-18 +2023-12-01,1.8173049430481697e-16,6.746085175397381e-18 +2023-12-02,1.6533078551144493e-16,-1.639970879337205e-17 +2023-12-03,1.5581378138701254e-16,-9.517004124432387e-18 +2023-12-04,1.4758527807426538e-16,-8.228503312747156e-18 +2023-12-05,1.4961017875249854e-16,2.0249006782331588e-18 +2023-12-06,1.586135942355031e-16,9.003415483004568e-18 +2023-12-07,1.4561218633968285e-16,-1.300140789582026e-17 +2023-12-08,1.5100644473710354e-16,5.3942583974206865e-18 +2023-12-09,1.5186257790814743e-16,8.561331710438973e-19 +2023-12-10,1.6291435350384433e-16,1.1051775595696902e-17 +2023-12-11,1.2647101220311632e-16,-3.644334130072802e-17 +2023-12-12,1.3285576012863262e-16,6.384747925516306e-18 +2023-12-13,1.2749016354436802e-16,-5.365596584264604e-18 +2023-12-14,1.1467836365879483e-16,-1.2811799885573188e-17 +2023-12-15,1.1661973439871716e-16,1.9413707399223292e-18 +2023-12-16,1.2320013742726703e-16,6.580403028549874e-18 +2023-12-17,1.1977624639295915e-16,-3.42389103430788e-18 +2023-12-18,1.0251875346558396e-16,-1.7257492927375198e-17 +2023-12-19,7.960097674942898e-17,-2.2917776716154972e-17 +2023-12-20,7.215025092436871e-17,-7.450725825060273e-18 +2023-12-21,7.038672996383205e-17,-1.763520960536659e-18 +2023-12-22,6.038244276888152e-17,-1.0004287194950527e-17 +2023-12-23,6.090293267265385e-17,5.204899037723231e-19 +2023-12-24,5.616023062729915e-17,-4.742702045354696e-18 +2023-12-25,6.027195975800173e-17,4.1117291307025754e-18 +2023-12-26,4.990293086363189e-17,-1.036902889436984e-17 +2023-12-27,3.6840912650301755e-17,-1.3062018213330133e-17 +2023-12-28,3.4530439961267187e-17,-2.310472689034568e-18 +2023-12-29,3.6212138306674307e-17,1.6816983454071203e-18 +2023-12-30,3.564198884449846e-17,-5.701494621758478e-19 +2023-12-31,3.5389467541995526e-17,-2.525213025029334e-19 +2024-01-01,3.483883167049312e-17,-5.506358715024057e-19 +2024-01-02,3.2553944872766675e-17,-2.2848867977264445e-18 +2024-01-03,3.4840487019331096e-17,2.28654214656442e-18 +2024-01-04,3.261629663280905e-17,-2.2241903865220476e-18 +2024-01-05,2.998046110972905e-17,-2.6358355230799992e-18 +2024-01-06,3.060547411890126e-17,6.250130091722082e-19 +2024-01-07,3.115468926229872e-17,5.492151433974626e-19 +2024-01-08,2.768811172209358e-17,-3.466577540205141e-18 +2024-01-09,2.895202205077714e-17,1.2639103286835642e-18 +2024-01-10,3.0496342333634956e-17,1.5443202828578132e-18 +2024-01-11,3.5153486401019276e-17,4.6571440673843196e-18 +2024-01-12,2.9423959004953264e-17,-5.729527396066012e-18 +2024-01-13,3.159229323290299e-17,2.1683342279497246e-18 +2024-01-14,3.025886582684365e-17,-1.3334274060593379e-18 +2024-01-15,3.3060665210100276e-17,2.801799383256625e-18 +2024-01-16,3.496907899869415e-17,1.9084137885938723e-18 +2024-01-17,3.521370167122516e-17,2.44622672531009e-19 +2024-01-18,3.3903074060288195e-17,-1.3106276109369616e-18 +2024-01-19,3.2648336651550423e-17,-1.254737408737772e-18 +2024-01-20,3.200049544459225e-17,-6.478412069581736e-19 +2024-01-21,3.1808015837774096e-17,-1.9247960681815404e-19 +2024-01-22,2.6319537905265628e-17,-5.488477932508467e-18 +2024-01-23,2.090009071884968e-17,-5.419447186415949e-18 +2024-01-24,2.3261728984557514e-17,2.3616382657078353e-18 +2024-01-25,2.4755151042968794e-17,1.4934220584112798e-18 +2024-01-26,2.6079235859301407e-17,1.3240848163326125e-18 +2024-01-27,2.620096397414794e-17,1.2172811484653377e-19 +2024-01-28,2.640857454861505e-17,2.0761057446710805e-19 +2024-01-29,2.625544820082831e-17,-1.531263477867397e-19 +2024-01-30,2.5871799059412468e-17,-3.836491414158412e-19 +2024-01-31,2.3949716167936398e-17,-1.92208289147607e-18 +2024-02-01,2.265547827996999e-17,-1.294237887966409e-18 +2024-02-02,2.3263960187783784e-17,6.084819078137953e-19 +2024-02-03,2.2434526352785294e-17,-8.294338349984896e-19 +2024-02-04,2.386132059963088e-17,1.4267942468455865e-18 +2024-02-05,2.2974500423725943e-17,-8.868201759049378e-19 +2024-02-06,2.0531031864531412e-17,-2.443468559194531e-18 +2024-02-07,1.9665407175268066e-17,-8.656246892633457e-19 +2024-02-08,2.0244991092761334e-17,5.795839174932672e-19 +2024-02-09,1.9857498625929505e-17,-3.874924668318289e-19 +2024-02-10,1.9972454311237248e-17,1.1495568530774296e-19 +2024-02-11,1.9673842432852726e-17,-2.986118783845217e-19 +2024-02-12,1.6549741155741962e-17,-3.1241012771107642e-18 +2024-02-13,1.7477998658504716e-17,9.28257502762754e-19 +2024-02-14,1.5727294181626624e-17,-1.750704476878092e-18 +2024-02-15,1.4447898536323757e-17,-1.2793956453028672e-18 +2024-02-16,1.418969537595128e-17,-2.582031603724769e-19 +2024-02-17,1.5304721349149497e-17,1.1150259731982168e-18 +2024-02-18,1.4538056611876286e-17,-7.666647372732105e-19 +2024-02-19,1.3877474835659375e-17,-6.605817762169111e-19 +2024-02-20,1.616246485995132e-17,2.2849900242919455e-18 +2024-02-21,1.4300692162468896e-17,-1.8617726974824244e-18 +2024-02-22,1.3426769885560804e-17,-8.739222769080916e-19 +2024-02-23,1.5573209465254246e-17,2.1464395796934415e-18 +2024-02-24,1.499843033128702e-17,-5.747791339672252e-19 +2024-02-25,1.3298631629559734e-17,-1.6997987017272865e-18 +2024-02-26,1.3150773637541996e-17,-1.4785799201773788e-19 +2024-02-27,1.3730348490592959e-17,5.795748530509623e-19 +2024-02-28,1.3375088889070781e-17,-3.5525960152217733e-19 +2024-02-29,1.082299242656984e-17,-2.552096462500942e-18 +2024-03-01,1.2118241904449807e-17,1.2952494778799677e-18 +2024-03-02,1.2659337495332827e-17,5.410955908830202e-19 +2024-03-03,1.1904588091268449e-17,-7.547494040643782e-19 +2024-03-04,1.2305612071617413e-17,4.0102398034896357e-19 +2024-03-05,9.39186568727471e-18,-2.913746384342702e-18 +2024-03-06,8.953530633570043e-18,-4.383350537046675e-19 +2024-03-07,7.895685706645577e-18,-1.0578449269244666e-18 +2024-03-08,8.973816106976463e-18,1.0781304003308869e-18 +2024-03-09,9.503620256832843e-18,5.298041498563791e-19 +2024-03-10,8.319200034515605e-18,-1.184420222317237e-18 +2024-03-11,8.054123744129269e-18,-2.6507629038633636e-19 +2024-03-12,7.035820127518822e-18,-1.0183036166104475e-18 +2024-03-13,5.992457736279659e-18,-1.043362391239163e-18 +2024-03-14,6.2704825185468155e-18,2.7802478226715686e-19 +2024-03-15,7.121514346106975e-18,8.510318275601592e-19 +2024-03-16,5.800514009557412e-18,-1.3210003365495626e-18 +2024-03-17,5.722404144888488e-18,-7.810986466892427e-20 +2024-03-18,5.5441034496330226e-18,-1.7830069525546528e-19 +2024-03-19,3.974055512769356e-18,-1.5700479368636667e-18 +2024-03-20,3.2962342521392063e-18,-6.778212606301495e-19 +2024-03-21,3.886606949657737e-18,5.903726975185305e-19 +2024-03-22,3.587805281310877e-18,-2.988016683468595e-19 +2024-03-23,3.985405035504584e-18,3.975997541937069e-19 +2024-03-24,3.909603024823238e-18,-7.580201068134595e-20 +2024-03-25,3.717682959616048e-18,-1.9192006520719002e-19 +2024-03-26,3.699405472969095e-18,-1.8277486646953323e-20 +2024-03-27,4.1660537855816015e-18,4.666483126125066e-19 +2024-03-28,4.637511975579355e-18,4.714581899977536e-19 +2024-03-29,5.145355475674827e-18,5.078435000954715e-19 +2024-03-30,5.1780318411376165e-18,3.267636546278991e-20 +2024-03-31,4.6981479453986205e-18,-4.798838957389961e-19 +2024-04-01,3.932183552577763e-18,-7.659643928208577e-19 +2024-04-02,3.5433952416657766e-18,-3.8878831091198624e-19 +2024-04-03,4.217950482243846e-18,6.745552405780697e-19 +2024-04-04,4.62208990409809e-18,4.041394218542439e-19 +2024-04-05,4.254230370539672e-18,-3.6785953355841785e-19 +2024-04-06,4.4789057624538064e-18,2.2467539191413416e-19 +2024-04-07,3.9715663035611206e-18,-5.073394588926858e-19 +2024-04-08,3.3302644738436075e-18,-6.413018297175131e-19 +2024-04-09,3.040573450073117e-18,-2.896910237704905e-19 +2024-04-10,2.9768435121754107e-18,-6.372993789770628e-20 +2024-04-11,2.6964435742200138e-18,-2.803999379553969e-19 +2024-04-12,2.424693109793593e-18,-2.7175046442642096e-19 +2024-04-13,2.435816459993089e-18,1.1123350199496033e-20 +2024-04-14,3.1994221909280547e-18,7.636057309349658e-19 +2024-04-15,2.5629670664562986e-18,-6.364551244717561e-19 +2024-04-16,2.1805341031341306e-18,-3.8243296332216803e-19 +2024-04-17,1.982782262235653e-18,-1.9775184089847754e-19 +2024-04-18,2.06335995379796e-18,8.057769156230682e-20 +2024-04-19,1.9899199649503572e-18,-7.343998884760265e-20 +2024-04-20,1.8743153460687163e-18,-1.1560461888164089e-19 +2024-04-21,2.0185699976097447e-18,1.442546515410284e-19 +2024-04-22,2.118011119407821e-18,9.944112179807616e-20 +2024-04-23,1.8729872938797103e-18,-2.4502382552811053e-19 +2024-04-24,1.5526075528657398e-18,-3.2037974101397056e-19 +2024-04-25,1.4203998011219429e-18,-1.322077517437969e-19 +2024-04-26,1.5107495733561414e-18,9.034977223419849e-20 +2024-04-27,1.3994029924541625e-18,-1.1134658090197889e-19 +2024-04-28,1.2441465428984527e-18,-1.5525644955570981e-19 +2024-04-29,1.1649150376691768e-18,-7.92315052292759e-20 +2024-04-30,1.11943796151951e-18,-4.547707614966679e-20 +2024-05-01,9.757853422316527e-19,-1.436526192878573e-19 +2024-05-02,8.797273851471095e-19,-9.605795708454321e-20 +2024-05-03,9.196442941107076e-19,3.991690896359808e-20 +2024-05-04,1.0111533208776146e-18,9.150902676690706e-20 +2024-05-05,9.414042763411248e-19,-6.974904453648984e-20 +2024-05-06,9.211940650946364e-19,-2.0210211246488407e-20 +2024-05-07,1.050373168854579e-18,1.291791037599427e-19 +2024-05-08,1.0314514619752466e-18,-1.8921706879332505e-20 +2024-05-09,1.0435033808696659e-18,1.2051918894419326e-20 +2024-05-10,9.746868550759533e-19,-6.881652579371263e-20 +2024-05-11,9.536135117163692e-19,-2.1073343359584044e-20 +2024-05-12,9.906078682700529e-19,3.6994356553683664e-20 +2024-05-13,9.468274884574648e-19,-4.378037981258814e-20 +2024-05-14,8.494864829920644e-19,-9.734100546540031e-20 +2024-05-15,8.164998633138006e-19,-3.298661967826385e-20 +2024-05-16,7.594795452270984e-19,-5.702031808670221e-20 +2024-05-17,7.12931399716304e-19,-4.654814551079434e-20 +2024-05-18,7.044470830072248e-19,-8.484316709079204e-21 +2024-05-19,7.249433339202934e-19,2.0496250913068565e-20 +2024-05-20,6.806889017870205e-19,-4.425443213327288e-20 +2024-05-21,7.288094165422386e-19,4.812051475521805e-20 +2024-05-22,7.702633882656173e-19,4.145397172337874e-20 +2024-05-23,7.650153112013885e-19,-5.248077064228823e-21 +2024-05-24,7.628821154507524e-19,-2.133195750636068e-21 +2024-05-25,7.882132202311114e-19,2.5331104780358983e-20 +2024-05-26,8.166900787357548e-19,2.847685850464336e-20 +2024-05-27,8.072165877980214e-19,-9.473490937733344e-21 +2024-05-28,7.541815768564718e-19,-5.303501094154966e-20 +2024-05-29,7.653128129996942e-19,1.11312361432224e-20 +2024-05-30,7.478703573679138e-19,-1.7442455631780403e-20 +2024-05-31,8.060260286921416e-19,5.815567132422781e-20 +2024-06-01,7.97262610114045e-19,-8.763418578096557e-21 +2024-06-02,8.314767306197313e-19,3.42141205056863e-20 +2024-06-03,8.902545807030722e-19,5.87778500833409e-20 +2024-06-04,9.236088093176683e-19,3.335422861459614e-20 +2024-06-05,9.693227495647127e-19,4.571394024704431e-20 +2024-06-06,9.613798449054722e-19,-7.942904659240482e-21 +2024-06-07,9.077166012799477e-19,-5.3663243625524505e-20 +2024-06-08,9.648415107874104e-19,5.712490950746272e-20 +2024-06-09,9.457836455076538e-19,-1.905786527975657e-20 +2024-06-10,9.385573292448056e-19,-7.22631626284823e-21 +2024-06-11,7.189784621120177e-19,-2.195788671327879e-19 +2024-06-12,6.386619739802357e-19,-8.031648813178201e-20 +2024-06-13,6.177835209338974e-19,-2.087845304633825e-20 +2024-06-14,5.673689313175049e-19,-5.0414589616392535e-20 +2024-06-15,5.29309266421016e-19,-3.8059664896488886e-20 +2024-06-16,5.317797855587397e-19,2.4705191377237118e-21 +2024-06-17,5.337462887780221e-19,1.9665032192823748e-21 +2024-06-18,4.731163530787787e-19,-6.062993569924338e-20 +2024-06-19,4.891390115214644e-19,1.60226584426857e-20 +2024-06-20,5.305663191003126e-19,4.142730757884819e-20 +2024-06-21,5.907452588796648e-19,6.01789397793522e-20 +2024-06-22,5.984902930420397e-19,7.745034162374878e-21 +2024-06-23,5.2228695831310335e-19,-7.620333472893632e-20 +2024-06-24,5.259042685474675e-19,3.6173102343641775e-21 +2024-06-25,5.625095255035266e-19,3.660525695605904e-20 +2024-06-26,6.453908288101319e-19,8.288130330660532e-20 +2024-06-27,5.905298162777071e-19,-5.486101253242478e-20 +2024-06-28,6.261083409142096e-19,3.557852463650252e-20 +2024-06-29,6.39500546228045e-19,1.3392205313835405e-20 +2024-06-30,6.426437389262165e-19,3.1431926981715023e-21 +2024-07-01,6.433269822039838e-19,6.832432777672633e-22 +2024-07-02,6.428055649037495e-19,-5.214173002342486e-22 +2024-07-03,5.621332918896635e-19,-8.067227301408606e-20 +2024-07-04,4.52119618608687e-19,-1.1001367328097646e-19 +2024-07-05,4.1371634252412804e-19,-3.8403276084558977e-20 +2024-07-06,3.8942000017093373e-19,-2.429634235319431e-20 +2024-07-07,3.8006717374895157e-19,-9.35282642198216e-21 +2024-07-08,2.9799796490255646e-19,-8.206920884639511e-20 +2024-07-09,3.208907124594096e-19,2.2892747556853158e-20 +2024-07-10,3.808760090083399e-19,5.998529654893028e-20 +2024-07-11,3.814388304797459e-19,5.628214714059859e-22 +2024-07-12,4.258879101168201e-19,4.44490796370742e-20 +2024-07-13,4.537936070337725e-19,2.7905696916952406e-20 +2024-07-14,4.107817322640817e-19,-4.301187476969081e-20 +2024-07-15,2.9503962369664764e-19,-1.1574210856743404e-19 +2024-07-16,2.956250361577121e-19,5.854124610644335e-22 +2024-07-17,2.9688254407851347e-19,1.2575079208013958e-21 +2024-07-18,3.131641238900519e-19,1.6281579811538418e-20 +2024-07-19,2.998851320837322e-19,-1.3278991806319701e-20 +2024-07-20,3.0023400102663387e-19,3.4886894290167823e-22 +2024-07-21,3.255494579818227e-19,2.5315456955188808e-20 +2024-07-22,3.0288409146757614e-19,-2.2665366514246533e-20 +2024-07-23,3.2306266757535734e-19,2.01785761077812e-20 +2024-07-24,2.9625962195777553e-19,-2.6803045617581818e-20 +2024-07-25,2.8568112842603e-19,-1.0578493531745519e-20 +2024-07-26,2.6983320063971644e-19,-1.584792778631357e-20 +2024-07-27,2.561153672036833e-19,-1.371783343603316e-20 +2024-07-28,2.4599191426346024e-19,-1.0123452940223039e-20 +2024-07-29,2.050452419594928e-19,-4.094667230396743e-20 +2024-07-30,1.9514585889146183e-19,-9.89938306803098e-21 +2024-07-31,2.049827055436568e-19,9.836846652194964e-21 +2024-08-01,1.6770258164437326e-19,-3.7280123899283526e-20 +2024-08-02,1.582349813018248e-19,-9.46760034254846e-21 +2024-08-03,1.4072023413220684e-19,-1.7514747169617965e-20 +2024-08-04,1.276290123501479e-19,-1.3091221782058946e-20 +2024-08-05,1.0999134367065448e-19,-1.763766867949341e-20 +2024-08-06,1.4444365856017323e-19,3.445231488951875e-20 +2024-08-07,1.3178317318944834e-19,-1.2660485370724892e-20 +2024-08-08,1.322767313246755e-19,4.935581352271522e-22 +2024-08-09,1.315008989388003e-19,-7.758323858751988e-22 +2024-08-10,1.3453671438974215e-19,3.035815450941853e-21 +2024-08-11,1.1776836150661045e-19,-1.6768352883131696e-20 +2024-08-12,9.66900865790948e-20,-2.107827492751565e-20 +2024-08-13,9.043508436759476e-20,-6.255002211500041e-21 +2024-08-14,8.762606451013256e-20,-2.8090198574622014e-21 +2024-08-15,8.479007071585568e-20,-2.835993794276883e-21 +2024-08-16,7.482206386674001e-20,-9.96800684911567e-21 +2024-08-17,7.628341701911683e-20,1.461353152376819e-21 +2024-08-18,6.476168299645027e-20,-1.1521734022666551e-20 +2024-08-19,6.142532308919394e-20,-3.3363599072563365e-21 +2024-08-20,5.287596272184232e-20,-8.549360367351619e-21 +2024-08-21,5.0353117872322735e-20,-2.5228448495195853e-21 +2024-08-22,5.1427989766852476e-20,1.0748718945297417e-21 +2024-08-23,5.0702120252395946e-20,-7.258695144565305e-22 +2024-08-24,5.398475210264501e-20,3.282631850249066e-21 +2024-08-25,5.650870386877675e-20,2.5239517661317374e-21 +2024-08-26,5.206398084496895e-20,-4.444723023807799e-21 +2024-08-27,4.021332635351626e-20,-1.1850654491452688e-20 +2024-08-28,4.958841912162392e-20,9.375092768107657e-21 +2024-08-29,4.528951789654231e-20,-4.298901225081607e-21 +2024-08-30,4.0085052219167664e-20,-5.204465677374648e-21 +2024-08-31,4.079827122990326e-20,7.132190107355955e-22 +2024-09-01,3.7482605954087324e-20,-3.3156652758159353e-21 +2024-09-02,3.7654232490555214e-20,1.7162653646788985e-22 +2024-09-03,4.0132921135856355e-20,2.478688645301141e-21 +2024-09-04,3.5364621421850186e-20,-4.768299714006169e-21 +2024-09-05,3.5834785592187775e-20,4.701641703375896e-22 +2024-09-06,3.2331944075434535e-20,-3.50284151675324e-21 +2024-09-07,2.8880967934341134e-20,-3.450976141093401e-21 +2024-09-08,2.536856553182717e-20,-3.512402402513964e-21 +2024-09-09,2.764890698100824e-20,2.2803414491810698e-21 +2024-09-10,3.166681806250678e-20,4.017911081498537e-21 +2024-09-11,3.395679466694741e-20,2.2899766044406317e-21 +2024-09-12,3.6454258024679544e-20,2.497463357732135e-21 +2024-09-13,3.0191907523682954e-20,-6.262350500996589e-21 +2024-09-14,3.0433325665863557e-20,2.414181421806024e-22 +2024-09-15,2.712767013872302e-20,-3.305655527140536e-21 +2024-09-16,2.8101558858668534e-20,9.738887199455134e-22 +2024-09-17,2.6895687824124195e-20,-1.20587103454434e-21 +2024-09-18,2.9219674809392564e-20,2.3239869852683698e-21 +2024-09-19,2.6986291608346638e-20,-2.233383201045926e-21 +2024-09-20,2.6661226975780274e-20,-3.250646325663639e-22 +2024-09-21,2.661821737904692e-20,-4.3009596733355804e-23 +2024-09-22,2.926255609013239e-20,2.6443387110854708e-21 +2024-09-23,2.7943060965832005e-20,-1.3194951243003841e-21 +2024-09-24,2.6642132718302514e-20,-1.3009282475294908e-21 +2024-09-25,2.5540468866422246e-20,-1.1016638518802687e-21 +2024-09-26,2.516900771243375e-20,-3.714611539884956e-22 +2024-09-27,2.4140841354627884e-20,-1.028166357805866e-21 +2024-09-28,2.4324015495157586e-20,1.8317414052970176e-22 +2024-09-29,2.4239614398336404e-20,-8.440109682118171e-23 +2024-09-30,2.3164778257240893e-20,-1.0748361410955116e-21 +2024-10-01,1.8628697232301373e-20,-4.536081024939519e-21 +2024-10-02,1.7058556373020335e-20,-1.5701408592810382e-21 +2024-10-03,1.6480666811880205e-20,-5.778895611401303e-22 +2024-10-04,1.8486706800630754e-20,2.0060399887505494e-21 +2024-10-05,1.9070017121901012e-20,5.833103212702577e-22 +2024-10-06,1.934658648646967e-20,2.7656936456865725e-22 +2024-10-07,2.0710615858956294e-20,1.3640293724866242e-21 +2024-10-08,2.371436560943077e-20,3.0037497504744753e-21 +2024-10-09,2.519560815456448e-20,1.4812425451337122e-21 +2024-10-10,2.786138629485406e-20,2.665778140289578e-21 +2024-10-11,2.51745377234089e-20,-2.6868485714451582e-21 +2024-10-12,2.4476464327549486e-20,-6.980733958594147e-22 +2024-10-13,2.544517635251337e-20,9.687120249638848e-22 +2024-10-14,2.4187995379310336e-20,-1.2571809732030348e-21 +2024-10-15,2.7048999581920442e-20,2.8610042026101056e-21 +2024-10-16,2.893740503768265e-20,1.8884054557622107e-21 +2024-10-17,3.1139137921105434e-20,2.2017328834227817e-21 +2024-10-18,3.272547495545037e-20,1.586337034344934e-21 +2024-10-19,3.3716012603026013e-20,9.90537647575645e-22 +2024-10-20,3.065843470731916e-20,-3.0575778957068524e-21 +2024-10-21,2.804125081213507e-20,-2.6171838951840935e-21 +2024-10-22,2.7952054416641754e-20,-8.919639549331365e-23 +2024-10-23,2.4375991840649297e-20,-3.576062575992456e-21 +2024-10-24,2.3660715764596583e-20,-7.152760760527139e-22 +2024-10-25,2.4422914526315978e-20,7.621987617193949e-22 +2024-10-26,2.4606846286443345e-20,1.8393176012736705e-22 +2024-10-27,2.5141820596918814e-20,5.349743104754683e-22 +2024-10-28,2.4574036868253787e-20,-5.677837286650268e-22 +2024-10-29,2.2679979630358438e-20,-1.8940572378953487e-21 +2024-10-30,2.173325605028652e-20,-9.46723580071918e-22 +2024-10-31,1.8905804822963872e-20,-2.827451227322648e-21 +2024-11-01,1.686197651262459e-20,-2.043828310339283e-21 +2024-11-02,1.6957036668902894e-20,9.506015627830482e-23 +2024-11-03,1.6596549763922585e-20,-3.6048690498030935e-22 +2024-11-04,1.5251228461863613e-20,-1.3453213020589714e-21 +2024-11-05,1.7489169596591102e-20,2.2379411347274886e-21 +2024-11-06,1.4520816289467292e-20,-2.9683533071238094e-21 +2024-11-07,1.362220252889824e-20,-8.986137605690526e-22 +2024-11-08,1.5167920616421106e-20,1.5457180875228657e-21 +2024-11-09,1.5141286453219093e-20,-2.6634163202012927e-23 +2024-11-10,1.460467938959968e-20,-5.366070636194121e-22 +2024-11-11,1.4334308821500162e-20,-2.7037056809951843e-22 +2024-11-12,1.3646017031319943e-20,-6.882917901802187e-22 +2024-11-13,1.2064111746468132e-20,-1.5819052848518116e-21 +2024-11-14,1.057974749895462e-20,-1.4843642475135117e-21 +2024-11-15,1.2363940039443022e-20,1.784192540488402e-21 +2024-11-16,1.2081321323029427e-20,-2.826187164135947e-22 +2024-11-17,1.1962252503643243e-20,-1.1906881938618438e-22 +2024-11-18,1.2954732930730903e-20,9.924804270876603e-22 +2024-11-19,1.5168230823401668e-20,2.213497892670765e-21 +2024-11-20,1.8044009751004965e-20,2.875778927603296e-21 +2024-11-21,1.9496935723860765e-20,1.4529259728558e-21 +2024-11-22,1.8740925318777047e-20,-7.560104050837174e-22 +2024-11-23,1.820235274584439e-20,-5.385725729326562e-22 +2024-11-24,1.7253750807824135e-20,-9.486019380202561e-22 +2024-11-25,1.8684287211574236e-20,1.430536403750101e-21 +2024-11-26,1.9845504436154994e-20,1.1612172245807584e-21 +2024-11-27,1.6900334881826074e-20,-2.94516955432892e-21 +2024-11-28,1.9032957108694707e-20,2.132622226868632e-21 +2024-11-29,2.0108556563694022e-20,1.0755994549993155e-21 +2024-11-30,1.8693355091403317e-20,-1.415201472290705e-21 +2024-12-01,2.0438809137227777e-20,1.7454540458244602e-21 +2024-12-02,2.0006178335963134e-20,-4.326308012646433e-22 +2024-12-03,2.0018920761259278e-20,1.2742425296143622e-23 +2024-12-04,1.6380366959007575e-20,-3.638553802251703e-21 +2024-12-05,1.6110501681399257e-20,-2.6986527760831765e-22 +2024-12-06,1.4881998929605592e-20,-1.2285027517936655e-21 +2024-12-07,1.5147123055953253e-20,2.651241263476608e-22 +2024-12-08,1.5476779610699064e-20,3.2965655474581194e-22 +2024-12-09,1.399440489933024e-20,-1.4823747113688232e-21 +2024-12-10,1.5504170239036423e-20,1.5097653397061813e-21 +2024-12-11,1.5100550315101212e-20,-4.0361992393521046e-22 +2024-12-12,1.502041263700464e-20,-8.013767809657264e-23 +2024-12-13,1.6266678525523277e-20,1.2462658885186376e-21 +2024-12-14,1.6650909574667654e-20,3.842310491443772e-22 +2024-12-15,1.7356857572517746e-20,7.059479978500921e-22 +2024-12-16,1.481049962668988e-20,-2.5463579458278677e-21 +2024-12-17,1.4520579029465685e-20,-2.8992059722419307e-22 +2024-12-18,1.476967928724705e-20,2.4910025778136373e-22 +2024-12-19,1.1613290389710421e-20,-3.156388897536628e-21 +2024-12-20,1.2220780063225117e-20,6.074896735146958e-22 +2024-12-21,1.0298430223427269e-20,-1.9223498397978483e-21 +2024-12-22,8.867394918790094e-21,-1.4310353046371745e-21 +2024-12-23,9.869773569297117e-21,1.0023786505070224e-21 +2024-12-24,9.985698543258772e-21,1.1592497396165558e-22 +2024-12-25,1.1048106486683577e-20,1.0624079434248051e-21 +2024-12-26,1.0427151015511874e-20,-6.209554711717038e-22 +2024-12-27,1.1146185284890296e-20,7.190342693784226e-22 +2024-12-28,1.0367410390832586e-20,-7.7877489405771e-22 +2024-12-29,1.0293082351520022e-20,-7.432803931256409e-23 +2024-12-30,9.679919125136816e-21,-6.131632263832063e-22 +2024-12-31,7.772353898342425e-21,-1.9075652267943904e-21 +2025-01-01,8.177089057968883e-21,4.047351596264574e-22 +2025-01-02,7.4434793577563e-21,-7.336097002125825e-22 +2025-01-03,6.3053989334275376e-21,-1.1380804243287628e-21 +2025-01-04,6.626844101790572e-21,3.2144516836303435e-22 +2025-01-05,7.000064181780105e-21,3.7322007998953305e-22 +2025-01-06,7.678361071079463e-21,6.782968892993576e-22 +2025-01-07,5.94041989448709e-21,-1.7379411765923726e-21 +2025-01-08,5.772192997846775e-21,-1.6822689664031492e-22 +2025-01-09,5.70991758552822e-21,-6.227541231855491e-23 +2025-01-10,5.614730003885672e-21,-9.51875816425479e-23 +2025-01-11,5.7915547053045815e-21,1.7682470141890932e-22 +2025-01-12,5.442057019668902e-21,-3.494976856356796e-22 +2025-01-13,4.6714316457928026e-21,-7.706253738760993e-22 +2025-01-14,4.171150989322094e-21,-5.002806564707086e-22 +2025-01-15,3.6602666779620095e-21,-5.108843113600845e-22 +2025-01-16,4.195417294208433e-21,5.351506162464234e-22 +2025-01-17,4.548996540483327e-21,3.5357924627489435e-22 +2025-01-18,4.527222277970962e-21,-2.1774262512365334e-23 +2025-01-19,3.289968500026508e-21,-1.237253777944454e-21 +2025-01-20,2.4263728059634592e-21,-8.635956940630486e-22 +2025-01-21,2.3608428261933097e-21,-6.552997977014957e-23 +2025-01-22,2.3354286408178835e-21,-2.5414185375426134e-23 +2025-01-23,2.5165127228696517e-21,1.8108408205176812e-22 +2025-01-24,2.1521199082408977e-21,-3.6439281462875396e-22 +2025-01-25,2.137582754957651e-21,-1.453715328324661e-23 +2025-01-26,1.830289907226228e-21,-3.072928477314232e-22 +2025-01-27,1.4692441868645079e-21,-3.6104572036172e-22 +2025-01-28,1.427392620099902e-21,-4.185156676460594e-23 +2025-01-29,1.451804281421836e-21,2.4411661321934014e-23 +2025-01-30,1.5178026278278145e-21,6.599834640597857e-23 +2025-01-31,1.5038605469808234e-21,-1.3942080846991106e-23 +2025-02-01,1.290222454263837e-21,-2.136380927169865e-22 +2025-02-02,1.192554856696803e-21,-9.766759756703394e-23 +2025-02-03,1.1724582632182402e-21,-2.0096593478562807e-23 +2025-02-04,1.1601225015439352e-21,-1.2335761674304952e-23 +2025-02-05,1.0677650062725152e-21,-9.235749527142004e-23 +2025-02-06,8.163229853198255e-22,-2.5144202095268966e-22 +2025-02-07,8.32677067485445e-22,1.6354082165619504e-23 +2025-02-08,8.885482222953775e-22,5.587115480993243e-23 +2025-02-09,9.03457058195932e-22,1.4908835900554493e-23 +2025-02-10,9.468813797413306e-22,4.342432154539866e-23 +2025-02-11,7.855784135156622e-22,-1.6130296622566845e-22 +2025-02-12,8.439289233934289e-22,5.835050987776669e-23 +2025-02-13,7.77274609720983e-22,-6.66543136724459e-23 +2025-02-14,6.748904842177274e-22,-1.0238412550325552e-22 +2025-02-15,6.984160666788451e-22,2.35255824611177e-23 +2025-02-16,7.003501038544264e-22,1.934037175581243e-24 +2025-02-17,6.625684722757483e-22,-3.77816315786781e-23 +2025-02-18,5.70451512374576e-22,-9.211695990117232e-23 +2025-02-19,6.161756744518152e-22,4.5724162077239243e-23 +2025-02-20,6.608027290416008e-22,4.4627054589785604e-23 +2025-02-21,5.919305717777297e-22,-6.887215726387116e-23 +2025-02-22,6.180181608347356e-22,2.6087589057005933e-23 +2025-02-23,6.269596483685297e-22,8.941487533794144e-24 +2025-02-24,5.650406829062374e-22,-6.191896546229232e-23 +2025-02-25,6.304298250087632e-22,6.538914210252576e-23 +2025-02-26,5.064846764466655e-22,-1.2394514856209768e-22 +2025-02-27,4.574274542902246e-22,-4.905722215644086e-23 +2025-02-28,4.262610210583947e-22,-3.116643323182997e-23 +2025-03-01,4.1574308809076775e-22,-1.0517932967626912e-23 +2025-03-02,3.986455074286778e-22,-1.7097580662089943e-23 +2025-03-03,3.506080164909073e-22,-4.8037490937770507e-23 +2025-03-04,3.3977899268387043e-22,-1.0829023807036864e-23 +2025-03-05,3.0848383088287876e-22,-3.129516180099167e-23 +2025-03-06,2.6463910110095696e-22,-4.38447297819218e-23 +2025-03-07,3.4385823346926713e-22,7.921913236831016e-23 +2025-03-08,3.568580836563524e-22,1.2999850187085257e-23 +2025-03-09,2.713746210518682e-22,-8.548346260448418e-23 +2025-03-10,2.4254572445196437e-22,-2.8828896599903835e-23 +2025-03-11,2.6771583290967384e-22,2.5170108457709475e-23 +2025-03-12,2.05249399878598e-22,-6.246643303107585e-23 +2025-03-13,2.0334928331810438e-22,-1.9001165604936154e-24 +2025-03-14,1.9227204697875182e-22,-1.1077236339352557e-23 +2025-03-15,2.0046192775426771e-22,8.189880775515895e-24 +2025-03-16,1.9056163788136746e-22,-9.900289872900256e-24 +2025-03-17,1.9123211520808656e-22,6.7047732671910375e-25 +2025-03-18,1.7135602337460345e-22,-1.987609183348311e-23 +2025-03-19,1.6539167591808139e-22,-5.964347456522067e-24 +2025-03-20,1.738809155837119e-22,8.489239665630504e-24 +2025-03-21,1.7410108940390918e-22,2.2017382019729303e-25 +2025-03-22,1.743380339959476e-22,2.3694459203842673e-25 +2025-03-23,1.8345941799809142e-22,9.121384002143816e-24 +2025-03-24,1.7281763956231891e-22,-1.064177843577251e-23 +2025-03-25,1.7516124993338187e-22,2.3436103710629515e-24 +2025-03-26,1.6440209861854897e-22,-1.0759151314832893e-23 +2025-03-27,1.6847395934540435e-22,4.071860726855375e-24 +2025-03-28,1.4939509293070151e-22,-1.9078866414702836e-23 +2025-03-29,1.18601971220379e-22,-3.079312171032251e-23 +2025-03-30,1.0770059276391533e-22,-1.0901378456463669e-23 +2025-03-31,1.0715840129645962e-22,-5.4219146745571595e-25 +2025-04-01,1.0375578535637283e-22,-3.402615940086793e-24 +2025-04-02,8.969954173208545e-23,-1.405624362428738e-23 +2025-04-03,8.136282526813664e-23,-8.336716463948805e-24 +2025-04-04,8.280173193525184e-23,1.4389066671152025e-24 +2025-04-05,8.444864962168626e-23,1.6469176864344189e-24 +2025-04-06,5.839890858660636e-23,-2.6049741035079906e-23 +2025-04-07,5.901575911049396e-23,6.168505238876076e-25 +2025-04-08,5.1938391451330074e-23,-7.07736765916389e-24 +2025-04-09,4.2433857282452675e-23,-9.504534168877399e-24 +2025-04-10,3.798996539813259e-23,-4.4438918843200856e-24 +2025-04-11,4.2696466908547554e-23,4.7065015104149644e-24 +2025-04-12,3.509355086794176e-23,-7.602916040605796e-24 +2025-04-13,3.6995724110818874e-23,1.9021732428771155e-24 +2025-04-14,3.432021261560266e-23,-2.6755114952162127e-24 +2025-04-15,3.205615903113206e-23,-2.264053584470604e-24 +2025-04-16,3.915486677368652e-23,7.098707742554461e-24 +2025-04-17,4.4491942894724014e-23,5.3370761210374954e-24 +2025-04-18,4.7951794433437295e-23,3.4598515387132804e-24 +2025-04-19,4.845164309515774e-23,4.998486617204435e-25 +2025-04-20,4.641952164378573e-23,-2.032121451372009e-24 +2025-04-21,4.288379549625295e-23,-3.535726147532781e-24 +2025-04-22,3.719453800313693e-23,-5.68925749311602e-24 +2025-04-23,3.984748150078131e-23,2.6529434976443836e-24 +2025-04-24,3.816268916440979e-23,-1.6847923363715237e-24 +2025-04-25,4.6560103041657375e-23,8.397413877247587e-24 +2025-04-26,4.2824479814512085e-23,-3.7356232271452905e-24 +2025-04-27,4.139758294727725e-23,-1.4268968672348358e-24 +2025-04-28,3.1974299370638354e-23,-9.423283576638896e-24 +2025-04-29,3.2936322740798116e-23,9.620233701597622e-25 +2025-04-30,3.172575641016687e-23,-1.2105663306312467e-24 +2025-05-01,2.753497456765644e-23,-4.190781842510428e-24 +2025-05-02,2.4800285366759794e-23,-2.7346892008966475e-24 +2025-05-03,2.5223868313060835e-23,4.23582946301041e-25 +2025-05-04,2.6090343383699034e-23,8.664750706381999e-25 +2025-05-05,2.4926548776546762e-23,-1.1637946071522724e-24 +2025-05-06,2.3443386378806337e-23,-1.4831623977404245e-24 +2025-05-07,2.0109920773739393e-23,-3.333465605066944e-24 +2025-05-08,1.1169929339052378e-23,-8.939991434687015e-24 +2025-05-09,8.85105385069971e-24,-2.318875488352668e-24 +2025-05-10,6.071041509047993e-24,-2.7800123416517173e-24 +2025-05-11,6.677468365412218e-24,6.064268563642251e-25 +2025-05-12,7.93776475975865e-24,1.2602963943464325e-24 +2025-05-13,5.926975932305714e-24,-2.0107888274529365e-24 +2025-05-14,6.248636939749861e-24,3.2166100744414715e-25 +2025-05-15,6.411915927530202e-24,1.6327898778034122e-25 +2025-05-16,6.606522922311863e-24,1.9460699478166078e-25 +2025-05-17,6.26855232762521e-24,-3.379705946866532e-25 +2025-05-18,5.279289257493984e-24,-9.892630701312255e-25 +2025-05-19,6.20151426910877e-24,9.222250116147857e-25 +2025-05-20,6.171869463910923e-24,-2.964480519784695e-26 +2025-05-21,5.856468334358661e-24,-3.1540112955226195e-25 +2025-05-22,5.323847409171531e-24,-5.326209251871302e-25 +2025-05-23,4.360314633201817e-24,-9.635327759697137e-25 +2025-05-24,4.579349231683187e-24,2.1903459848137007e-25 +2025-05-25,4.4522018468904184e-24,-1.2714738479276893e-25 +2025-05-26,4.23465584403433e-24,-2.175460028560884e-25 +2025-05-27,3.715100488711242e-24,-5.195553553230877e-25 +2025-05-28,3.953293875339831e-24,2.3819338662858906e-25 +2025-05-29,3.653291492813526e-24,-3.0000238252630542e-25 +2025-05-30,3.2710017265347048e-24,-3.8228976627882115e-25 +2025-05-31,3.1011461737339244e-24,-1.6985555280078042e-25 +2025-06-01,3.1003234095266122e-24,-8.227642073121262e-28 +2025-06-02,2.5654965910843717e-24,-5.348268184422405e-25 +2025-06-03,2.624276771872429e-24,5.878018078805712e-26 +2025-06-04,2.757572802812076e-24,1.3329603093964707e-25 +2025-06-05,2.369355644443102e-24,-3.882171583689739e-25 +2025-06-06,2.2493237541073855e-24,-1.2003189033571649e-25 +2025-06-07,2.2482753720916363e-24,-1.0483820157492518e-27 +2025-06-08,2.2502414155936202e-24,1.9660435019839374e-27 +2025-06-09,1.912123517150079e-24,-3.3811789844354136e-25 +2025-06-10,1.8042530234530765e-24,-1.0787049369700233e-25 +2025-06-11,1.5008398755219195e-24,-3.0341314793115697e-25 +2025-06-12,1.4375131150378134e-24,-6.332676048410616e-26 +2025-06-13,1.4584050204994164e-24,2.0891905461603e-26 +2025-06-14,1.486820340314092e-24,2.8415319814675583e-26 +2025-06-15,1.5796983667300828e-24,9.287802641599085e-26 +2025-06-16,1.7096385100358988e-24,1.2994014330581598e-25 +2025-06-17,1.6182038727596705e-24,-9.14346372762283e-26 +2025-06-18,1.9011021233800235e-24,2.82898250620353e-25 +2025-06-19,1.867122630547963e-24,-3.3979492832060546e-26 +2025-06-20,1.7482715140706e-24,-1.1885111647736305e-25 +2025-06-21,1.535462533415485e-24,-2.1280898065511485e-25 +2025-06-22,1.7314035630599265e-24,1.9594102964444147e-25 +2025-06-23,2.058204130696377e-24,3.2680056763645052e-25 +2025-06-24,2.101629233206306e-24,4.3425102509928924e-26 +2025-06-25,2.394531462202855e-24,2.929022289965492e-25 +2025-06-26,2.3429621525837337e-24,-5.1569309619121475e-26 +2025-06-27,2.48421455144281e-24,1.4125239885907644e-25 +2025-06-28,2.6354381885474407e-24,1.5122363710463059e-25 +2025-06-29,2.6115625489156984e-24,-2.3875639631742275e-26 +2025-06-30,2.6958756402633297e-24,8.431309134763122e-26 +2025-07-01,2.6275501540402754e-24,-6.832548622305426e-26 +2025-07-02,2.321564953047572e-24,-3.0598520099270354e-25 +2025-07-03,2.440130074883799e-24,1.185651218362273e-25 +2025-07-04,2.226359967604128e-24,-2.1377010727967134e-25 +2025-07-05,2.2135754522952964e-24,-1.278451530883141e-26 +2025-07-06,2.362691649078098e-24,1.491161967828015e-25 +2025-07-07,2.460720692438224e-24,9.802904336012605e-26 +2025-07-08,2.467306506617988e-24,6.585814179764153e-27 +2025-07-09,2.5193779675740005e-24,5.207146095601238e-26 +2025-07-10,2.5560120026138994e-24,3.6634035039898844e-26 +2025-07-11,2.9543650726849616e-24,3.983530700710622e-25 +2025-07-12,2.9588336340478272e-24,4.468561362865641e-27 +2025-07-13,3.007319790883614e-24,4.848615683578681e-26 +2025-07-14,2.7023686978151436e-24,-3.049510930684704e-25 +2025-07-15,2.5315516429469353e-24,-1.7081705486820835e-25 +2025-07-16,1.919307186011114e-24,-6.122444569358214e-25 +2025-07-17,1.9776251457414045e-24,5.831795973029057e-26 +2025-07-18,2.3098323320921637e-24,3.322071863507592e-25 +2025-07-19,2.4018931528183743e-24,9.206082072621058e-26 +2025-07-20,2.0572530948073474e-24,-3.4464005801102683e-25 +2025-07-21,2.282216044962015e-24,2.2496295015466755e-25 +2025-07-22,2.743703686656587e-24,4.614876416945718e-25 +2025-07-23,2.665911711552904e-24,-7.779197510368273e-26 +2025-07-24,2.6255072858131803e-24,-4.0404425739723786e-26 +2025-07-25,1.851624682607966e-24,-7.738826032052143e-25 +2025-07-26,2.0037546692043322e-24,1.5212998659636617e-25 +2025-07-27,1.9254588364494023e-24,-7.829583275492993e-26 +2025-07-28,1.689469361292517e-24,-2.359894751568851e-25 +2025-07-29,1.5758367133457905e-24,-1.1363264794672669e-25 +2025-07-30,1.5225883542731013e-24,-5.324835907268914e-26 +2025-07-31,1.2345481064117073e-24,-2.88040247861394e-25 +2025-08-01,1.0430955120244434e-24,-1.9145259438726397e-25 +2025-08-02,1.030321075730697e-24,-1.2774436293746354e-26 +2025-08-03,1.0586152635749192e-24,2.829418784422216e-26 +2025-08-04,8.222993507727466e-25,-2.3631591280217254e-25 +2025-08-05,8.956868878186423e-25,7.338753704589568e-26 +2025-08-06,9.496049676306912e-25,5.391807981204888e-26 +2025-08-07,8.586116455886216e-25,-9.099332204206954e-26 +2025-08-08,7.471153130585601e-25,-1.1149633253006156e-25 +2025-08-09,6.39929702012257e-25,-1.0718561104630306e-25 +2025-08-10,7.059054621332913e-25,6.597576012103424e-26 +2025-08-11,5.6929674468603445e-25,-1.366087174472568e-25 +2025-08-12,4.785746866214918e-25,-9.072205806454262e-26 +2025-08-13,5.032782102180204e-25,2.470352359652858e-26 +2025-08-14,5.21527380305668e-25,1.8249170087647555e-26 +2025-08-15,4.825792757848856e-25,-3.8948104520782396e-26 +2025-08-16,5.099740629496005e-25,2.73947871647149e-26 +2025-08-17,5.276496360279434e-25,1.7675573078342965e-26 +2025-08-18,4.406373071061091e-25,-8.701232892183438e-26 +2025-08-19,3.8477483679660896e-25,-5.58624703095001e-26 +2025-08-20,4.351410067154599e-25,5.0366169918850976e-26 +2025-08-21,4.883355136173604e-25,5.319450690190043e-26 +2025-08-22,5.253757029540478e-25,3.704018933668747e-26 +2025-08-23,5.299897817769092e-25,4.614078822861331e-27 +2025-08-24,5.162822238399331e-25,-1.3707557936976104e-26 +2025-08-25,4.0679188253255466e-25,-1.094903413073784e-25 +2025-08-26,3.4648578985749226e-25,-6.03060926750624e-26 +2025-08-27,3.3219518283250096e-25,-1.4290607024991303e-26 +2025-08-28,2.7546874436379253e-25,-5.672643846870842e-26 +2025-08-29,2.724064187913404e-25,-3.0623255724521377e-27 +2025-08-30,2.886136862199064e-25,1.6207267428566023e-26 +2025-08-31,2.5735566665027125e-25,-3.1258019569635167e-26 +2025-09-01,2.645211664478425e-25,7.16549979757124e-27 +2025-09-02,2.1927944553415346e-25,-4.524172091368903e-26 +2025-09-03,2.203031732975011e-25,1.0237277633476285e-27 +2025-09-04,2.0404587442401165e-25,-1.6257298873489442e-26 +2025-09-05,2.0212098249955814e-25,-1.9248919244535053e-27 +2025-09-06,2.072934219263633e-25,5.1724394268051695e-27 +2025-09-07,2.07177631048928e-25,-1.1579087743533146e-28 +2025-09-08,2.265709830469584e-25,1.9393351998030422e-26 +2025-09-09,2.08811565338849e-25,-1.7759417708109397e-26 +2025-09-10,2.0393550770911698e-25,-4.876057629732033e-27 +2025-09-11,2.0015440892677742e-25,-3.781098782339557e-27 +2025-09-12,1.6077873133856438e-25,-3.937567758821304e-26 +2025-09-13,1.5458566581871386e-25,-6.193065519850521e-27 +2025-09-14,1.5748868724686971e-25,2.903021428155857e-27 +2025-09-15,1.4410347423995322e-25,-1.3385213006916494e-26 +2025-09-16,1.5176004007602172e-25,7.656565836068499e-27 +2025-09-17,1.6911342298885255e-25,1.7353382912830833e-26 +2025-09-18,1.794358013838248e-25,1.0322378394972238e-26 +2025-09-19,1.8467635656533131e-25,5.2405551815065236e-27 +2025-09-20,1.8815398708355749e-25,3.4776305182261736e-27 +2025-09-21,1.8738400604367253e-25,-7.699810398849517e-28 +2025-09-22,1.6876537499319866e-25,-1.8618631050473877e-26 +2025-09-23,1.8088355083918846e-25,1.2118175845989799e-26 +2025-09-24,1.9386633808375263e-25,1.2982787244564173e-26 +2025-09-25,1.5952789824916123e-25,-3.43384398345914e-26 +2025-09-26,1.4919306131708462e-25,-1.0334836932076616e-26 +2025-09-27,1.5266366071826243e-25,3.470599401177818e-27 +2025-09-28,1.3535299377839435e-25,-1.7310666939868088e-26 +2025-09-29,1.4793845063876851e-25,1.2585456860374167e-26 +2025-09-30,1.4338143166604343e-25,-4.5570189727250855e-27 +2025-10-01,1.5196058149508723e-25,8.579149829043805e-27 +2025-10-02,1.6418821375002033e-25,1.2227632254933094e-26 +2025-10-03,1.8742581366333024e-25,2.323759991330991e-26 +2025-10-04,1.8677223267239405e-25,-6.535809909361833e-28 +2025-10-05,1.8130650033898778e-25,-5.4657323334062686e-27 +2025-10-06,1.6874273855580655e-25,-1.2563761783181238e-26 +2025-10-07,1.8210357457736472e-25,1.3360836021558178e-26 +2025-10-08,2.0593427619930231e-25,2.383070162193759e-26 +2025-10-09,1.9158705763565157e-25,-1.4347218563650742e-26 +2025-10-10,1.6472901881342002e-25,-2.685803882223155e-26 +2025-10-11,1.7700398404316328e-25,1.227496522974326e-26 +2025-10-12,1.8052502842356865e-25,3.521044380405368e-27 +2025-10-13,1.5900414534261027e-25,-2.1520883080958382e-26 +2025-10-14,1.1626318222942875e-25,-4.274096311318152e-26 +2025-10-15,1.1855528422328204e-25,2.292101993853295e-27 +2025-10-16,1.0931053523836433e-25,-9.244748984917712e-27 +2025-10-17,9.266746949474469e-26,-1.664306574361964e-26 +2025-10-18,9.54247802871967e-26,2.757310792452011e-27 +2025-10-19,9.233341676864351e-26,-3.091363518553191e-27 +2025-10-20,8.416409507978035e-26,-8.169321688863159e-27 +2025-10-21,7.05313084650324e-26,-1.363278661474796e-26 +2025-10-22,6.984808535186424e-26,-6.832231131681584e-28 +2025-10-23,6.684433316975199e-26,-3.003752182112249e-27 +2025-10-24,6.079261167143792e-26,-6.051721498314072e-27 +2025-10-25,6.267447064953187e-26,1.881858978093958e-27 +2025-10-26,5.520896257076909e-26,-7.465508078762787e-27 +2025-10-27,4.495779165148417e-26,-1.025117091928492e-26 +2025-10-28,4.580163207126524e-26,8.438404197810738e-28 +2025-10-29,4.9154777989118905e-26,3.3531459178536636e-27 +2025-10-30,4.2769580804242965e-26,-6.38519718487594e-27 +2025-10-31,4.508813536043916e-26,2.318554556196196e-27 +2025-11-01,4.777008655390543e-26,2.6819511934662717e-27 +2025-11-02,4.8908596592191417e-26,1.1385100382859846e-27 +2025-11-03,5.975685400270356e-26,1.084825741051214e-26 +2025-11-04,6.215264674312867e-26,2.395792740425114e-27 +2025-11-05,6.852376187019645e-26,6.3711151270677746e-27 +2025-11-06,6.853343368488337e-26,9.671814686920307e-30 +2025-11-07,6.131828864469164e-26,-7.215145040191721e-27 +2025-11-08,6.489290371893812e-26,3.5746150742464714e-27 +2025-11-09,6.094443319486662e-26,-3.9484705240714915e-27 +2025-11-10,6.341320153013204e-26,2.46876833526542e-27 +2025-11-11,5.181509773748147e-26,-1.1598103792650577e-26 +2025-11-12,5.175375887431692e-26,-6.133886316454546e-29 +2025-11-13,4.1156278848997756e-26,-1.0597480025319166e-26 +2025-11-14,3.962313050111926e-26,-1.5331483478784975e-27 +2025-11-15,4.8344919830563067e-26,8.721789329443808e-27 +2025-11-16,4.1584138265179625e-26,-6.760781565383442e-27 +2025-11-17,3.086912026651021e-26,-1.0715017998669415e-26 +2025-11-18,2.7998911968996834e-26,-2.870208297513376e-27 +2025-11-19,2.1601698668894837e-26,-6.397213300101997e-27 +2025-11-20,2.1933042223738517e-26,3.313435548436796e-28 +2025-11-21,1.9555424454701124e-26,-2.3776177690373927e-27 +2025-11-22,2.1602756466742298e-26,2.047332012041174e-27 +2025-11-23,2.1837885648136985e-26,2.3512918139468763e-28 +2025-11-24,2.1675541339409094e-26,-1.6234430872789098e-28 +2025-11-25,2.7413816101033097e-26,5.738274761624003e-27 +2025-11-26,2.655190185864344e-26,-8.619142423896592e-28 +2025-11-27,2.5385943118213546e-26,-1.1659587404298917e-27 +2025-11-28,2.85094235138075e-26,3.1234803955939554e-27 +2025-11-29,3.010237919746406e-26,1.5929556836565557e-27 +2025-11-30,3.226264663181138e-26,2.1602674343473218e-27 +2025-12-01,2.55768315590666e-26,-6.685815072744778e-27 +2025-12-02,2.2018379625221034e-26,-3.558451933845567e-27 +2025-12-03,2.053636725662549e-26,-1.4820123685955436e-27 +2025-12-04,2.2971290755921607e-26,2.4349234992961163e-27 +2025-12-05,2.3539102024667875e-26,5.678112687462685e-28 +2025-12-06,2.4863202481510803e-26,1.3241004568429279e-27 +2025-12-07,2.572062931171428e-26,8.574268302034755e-28 +2025-12-08,2.6118388191313334e-26,3.9775887959905527e-28 +2025-12-09,2.2199245245777952e-26,-3.919142945535382e-27 +2025-12-10,1.8815478128894314e-26,-3.3837671168836384e-27 +2025-12-11,1.7307699535221546e-26,-1.5077785936727678e-27 +2025-12-12,1.7430925277552538e-26,1.2322574233099157e-28 +2025-12-13,1.7241826467082998e-26,-1.8909881046953935e-28 +2025-12-14,1.7446152555585574e-26,2.043260885025754e-28 +2025-12-15,1.5803256071892403e-26,-1.642896483693171e-27 +2025-12-16,1.7615070258498417e-26,1.8118141866060145e-27 +2025-12-17,1.8726564066532095e-26,1.1114938080336775e-27 +2025-12-18,1.8195814630110644e-26,-5.307494364214505e-28 +2025-12-19,1.5247018494200506e-26,-2.9487961359101387e-27 +2025-12-20,1.5770463237897244e-26,5.234447436967386e-28 +2025-12-21,1.568841559316409e-26,-8.204764473315407e-29 +2025-12-22,1.5155651548104677e-26,-5.327640450594126e-28 +2025-12-23,1.535259093722938e-26,1.9693938912470217e-28 +2025-12-24,1.649973021834696e-26,1.1471392811175797e-27 +2025-12-25,1.5240611354305713e-26,-1.2591188640412468e-27 +2025-12-26,1.7739604416411096e-26,2.4989930621053834e-27 +2025-12-27,1.7219418728482127e-26,-5.20185687928969e-28 +2025-12-28,1.7105954295876125e-26,-1.1346443260600215e-28 +2025-12-29,1.4021418689761326e-26,-3.0845356061147988e-27 +2025-12-30,1.4094053053198434e-26,7.263436343710807e-29 +2025-12-31,1.4958884362533677e-26,8.648313093352426e-28 diff --git a/strategy/results/bb_202602_trade_detail.csv b/strategy/results/bb_202602_trade_detail.csv new file mode 100644 index 0000000..b3dff4d --- /dev/null +++ b/strategy/results/bb_202602_trade_detail.csv @@ -0,0 +1,315 @@ +序号,方向,开仓时间,平仓时间,开仓价,平仓价,保证金,杠杆,数量,毛盈亏,手续费,净盈亏 +1,做多,2026-02-01 00:45:00,2026-02-01 04:20:00,2503.98,2377.2,2.0,50,0.0399,-5.06,0.05,-5.11 +2,做空,2026-02-01 04:20:00,2026-02-01 04:35:00,2377.2,2360.24,1.95,50,0.041,0.7,0.05,0.65 +3,做多,2026-02-01 04:35:00,2026-02-01 05:00:00,2360.24,2373.42,1.95,50,0.0414,0.55,0.05,0.5 +4,做空,2026-02-01 05:00:00,2026-02-01 09:05:00,2373.42,2433.28,1.96,50,0.0413,-2.47,0.05,-2.52 +5,做多,2026-02-01 09:05:00,2026-02-01 12:10:00,2433.28,2451.12,1.94,50,0.0398,0.71,0.05,0.66 +6,做空,2026-02-01 12:10:00,2026-02-01 13:00:00,2451.12,2439.68,1.94,50,0.0396,0.45,0.05,0.4 +7,做多,2026-02-01 13:00:00,2026-02-01 15:40:00,2439.68,2430.01,1.95,50,0.0399,-0.39,0.05,-0.43 +8,做空,2026-02-01 15:40:00,2026-02-01 18:30:00,2430.01,2406.59,1.94,50,0.0399,0.94,0.05,0.89 +9,做多,2026-02-01 18:30:00,2026-02-01 19:35:00,2406.59,2404.44,1.95,50,0.0405,-0.09,0.05,-0.14 +10,做空,2026-02-01 19:35:00,2026-02-01 20:20:00,2404.44,2387.44,1.95,50,0.0405,0.69,0.05,0.64 +11,做多,2026-02-01 20:20:00,2026-02-01 21:00:00,2387.44,2402.27,1.95,50,0.0409,0.61,0.05,0.56 +12,做空,2026-02-01 21:00:00,2026-02-01 21:40:00,2402.27,2392.0,1.96,50,0.0408,0.42,0.05,0.37 +13,做多,2026-02-01 21:40:00,2026-02-02 00:25:00,2392.0,2318.96,1.96,50,0.041,-3.0,0.05,-3.04 +14,做空,2026-02-02 00:25:00,2026-02-02 03:45:00,2318.96,2313.79,1.93,50,0.0416,0.22,0.05,0.17 +15,做多,2026-02-02 03:45:00,2026-02-02 04:35:00,2313.79,2342.69,1.93,50,0.0418,1.21,0.05,1.16 +16,做空,2026-02-02 04:35:00,2026-02-02 05:55:00,2342.69,2289.17,1.94,50,0.0415,2.22,0.05,2.17 +17,做多,2026-02-02 05:55:00,2026-02-02 06:10:00,2289.17,2323.39,1.96,50,0.0429,1.47,0.05,1.42 +18,做空,2026-02-02 06:10:00,2026-02-02 07:05:00,2323.39,2235.28,1.98,50,0.0426,3.75,0.05,3.7 +19,做多,2026-02-02 07:05:00,2026-02-02 08:15:00,2235.28,2307.06,2.01,50,0.0451,3.23,0.05,3.18 +20,做空,2026-02-02 08:15:00,2026-02-02 09:00:00,2307.06,2302.75,2.06,50,0.0446,0.19,0.05,0.14 +21,做多,2026-02-02 09:00:00,2026-02-02 14:15:00,2302.75,2211.45,2.06,50,0.0447,-4.08,0.05,-4.13 +22,做空,2026-02-02 14:15:00,2026-02-02 14:35:00,2211.45,2166.31,2.02,50,0.0456,2.06,0.05,2.01 +23,做多,2026-02-02 14:35:00,2026-02-02 14:40:00,2166.31,2219.94,2.04,50,0.047,2.52,0.05,2.47 +24,做空,2026-02-02 14:40:00,2026-02-02 17:15:00,2219.94,2250.82,2.06,50,0.0464,-1.43,0.05,-1.49 +25,做多,2026-02-02 17:15:00,2026-02-02 17:25:00,2250.82,2277.79,2.05,50,0.0455,1.23,0.05,1.17 +26,做空,2026-02-02 17:25:00,2026-02-02 22:10:00,2277.79,2305.44,2.06,50,0.0452,-1.25,0.05,-1.3 +27,做多,2026-02-02 22:10:00,2026-02-02 22:35:00,2305.44,2350.92,2.04,50,0.0443,2.02,0.05,1.96 +28,做空,2026-02-02 22:35:00,2026-02-03 00:50:00,2350.92,2357.15,2.06,50,0.0439,-0.27,0.05,-0.33 +29,做多,2026-02-03 00:50:00,2026-02-03 09:00:00,2357.15,2349.37,2.06,50,0.0437,-0.34,0.05,-0.39 +30,做空,2026-02-03 09:00:00,2026-02-03 10:10:00,2349.37,2327.51,2.06,50,0.0439,0.96,0.05,0.91 +31,做多,2026-02-03 10:10:00,2026-02-03 15:10:00,2327.51,2322.01,2.07,50,0.0445,-0.24,0.05,-0.3 +32,做空,2026-02-03 15:10:00,2026-02-03 16:10:00,2322.01,2311.05,2.07,50,0.0446,0.49,0.05,0.44 +33,做多,2026-02-03 16:10:00,2026-02-03 20:10:00,2311.05,2290.92,2.07,50,0.0449,-0.9,0.05,-0.95 +34,做空,2026-02-03 20:10:00,2026-02-03 22:15:00,2290.92,2299.99,2.06,50,0.045,-0.41,0.05,-0.46 +35,做多,2026-02-03 22:15:00,2026-02-03 23:25:00,2299.99,2292.96,2.06,50,0.0447,-0.31,0.05,-0.37 +36,做空,2026-02-03 23:25:00,2026-02-04 00:15:00,2292.96,2265.27,2.05,50,0.0448,1.24,0.05,1.19 +37,做多,2026-02-04 00:15:00,2026-02-04 03:10:00,2265.27,2178.1,2.07,50,0.0456,-3.97,0.05,-4.02 +38,做空,2026-02-04 03:10:00,2026-02-04 06:05:00,2178.1,2259.5,2.02,50,0.0465,-3.78,0.05,-3.84 +39,做多,2026-02-04 06:05:00,2026-02-04 09:00:00,2259.5,2264.51,1.99,50,0.0439,0.22,0.05,0.17 +40,做空,2026-02-04 09:00:00,2026-02-04 10:30:00,2264.51,2254.5,2.0,50,0.0441,0.44,0.05,0.39 +41,做多,2026-02-04 10:30:00,2026-02-04 11:10:00,2254.5,2275.54,2.0,50,0.0443,0.93,0.05,0.88 +42,做空,2026-02-04 11:10:00,2026-02-04 12:25:00,2275.54,2274.79,2.01,50,0.0441,0.03,0.05,-0.02 +43,做多,2026-02-04 12:25:00,2026-02-04 20:20:00,2274.79,2253.17,2.01,50,0.0441,-0.95,0.05,-1.0 +44,做空,2026-02-04 20:20:00,2026-02-04 20:25:00,2253.17,2234.15,2.0,50,0.0443,0.84,0.05,0.79 +45,做多,2026-02-04 20:25:00,2026-02-05 01:00:00,2234.15,2141.81,2.0,50,0.0449,-4.14,0.05,-4.19 +46,做空,2026-02-05 01:00:00,2026-02-05 01:35:00,2141.81,2100.23,1.96,50,0.0458,1.9,0.05,1.86 +47,做多,2026-02-05 01:35:00,2026-02-05 02:25:00,2100.23,2122.35,1.98,50,0.0471,1.04,0.05,0.99 +48,做空,2026-02-05 02:25:00,2026-02-05 03:20:00,2122.35,2138.64,1.99,50,0.0469,-0.76,0.05,-0.81 +49,做多,2026-02-05 03:20:00,2026-02-05 03:45:00,2138.64,2159.36,1.98,50,0.0463,0.96,0.05,0.91 +50,做空,2026-02-05 03:45:00,2026-02-05 05:05:00,2159.36,2158.46,1.99,50,0.0461,0.04,0.05,-0.01 +51,做多,2026-02-05 05:05:00,2026-02-05 10:35:00,2158.46,2153.58,1.99,50,0.0461,-0.22,0.05,-0.27 +52,做空,2026-02-05 10:35:00,2026-02-05 11:15:00,2153.58,2113.19,2.0,50,0.0463,1.87,0.05,1.82 +53,做多,2026-02-05 11:15:00,2026-02-05 12:40:00,2113.19,2121.89,2.01,50,0.0477,0.41,0.05,0.36 +54,做空,2026-02-05 12:40:00,2026-02-05 13:20:00,2121.89,2085.5,2.02,50,0.0475,1.73,0.05,1.68 +55,做多,2026-02-05 13:20:00,2026-02-05 15:00:00,2085.5,2115.39,2.03,50,0.0488,1.46,0.05,1.41 +56,做空,2026-02-05 15:00:00,2026-02-05 15:55:00,2115.39,2089.53,2.05,50,0.0484,1.25,0.05,1.2 +57,做多,2026-02-05 15:55:00,2026-02-05 16:25:00,2089.53,2110.34,2.06,50,0.0493,1.03,0.05,0.97 +58,做空,2026-02-05 16:25:00,2026-02-05 18:55:00,2110.34,2096.48,2.07,50,0.049,0.68,0.05,0.63 +59,做多,2026-02-05 18:55:00,2026-02-05 21:05:00,2096.48,2071.86,2.07,50,0.0495,-1.22,0.05,-1.27 +60,做空,2026-02-05 21:05:00,2026-02-06 01:20:00,2071.86,1987.12,2.06,50,0.0497,4.21,0.05,4.16 +61,做多,2026-02-06 01:20:00,2026-02-06 06:25:00,1987.12,1871.41,2.1,50,0.0529,-6.12,0.05,-6.17 +62,做空,2026-02-06 06:25:00,2026-02-06 08:10:00,1871.41,1766.83,2.04,50,0.0545,5.7,0.05,5.65 +63,做多,2026-02-06 08:10:00,2026-02-06 09:35:00,1766.83,1909.28,2.11,50,0.0596,8.49,0.06,8.43 +64,做空,2026-02-06 09:35:00,2026-02-06 11:50:00,1909.28,1885.62,2.19,50,0.0573,1.36,0.05,1.3 +65,做多,2026-02-06 11:50:00,2026-02-06 13:05:00,1885.62,1911.81,2.2,50,0.0584,1.53,0.06,1.47 +66,做空,2026-02-06 13:05:00,2026-02-06 16:15:00,1911.81,1879.3,2.22,50,0.0579,1.88,0.05,1.83 +67,做多,2026-02-06 16:15:00,2026-02-06 17:10:00,1879.3,1885.97,2.23,50,0.0594,0.4,0.06,0.34 +68,做空,2026-02-06 17:10:00,2026-02-06 19:00:00,1885.97,1924.17,2.24,50,0.0593,-2.26,0.06,-2.32 +69,做多,2026-02-06 19:00:00,2026-02-06 19:15:00,1924.17,1924.74,2.21,50,0.0575,0.03,0.06,-0.02 +70,做空,2026-02-06 19:15:00,2026-02-06 20:05:00,1924.74,1922.87,2.21,50,0.0575,0.11,0.06,0.05 +71,做多,2026-02-06 20:05:00,2026-02-06 21:00:00,1922.87,1932.91,2.21,50,0.0575,0.58,0.06,0.52 +72,做空,2026-02-06 21:00:00,2026-02-06 23:15:00,1932.91,1971.8,2.22,50,0.0573,-2.23,0.06,-2.29 +73,做多,2026-02-06 23:15:00,2026-02-06 23:45:00,1971.8,1990.88,2.19,50,0.0556,1.06,0.06,1.01 +74,做空,2026-02-06 23:45:00,2026-02-07 02:05:00,1990.88,2032.15,2.2,50,0.0553,-2.28,0.06,-2.34 +75,做多,2026-02-07 02:05:00,2026-02-07 04:35:00,2032.15,2073.09,2.18,50,0.0536,2.19,0.06,2.14 +76,做空,2026-02-07 04:35:00,2026-02-07 07:15:00,2073.09,2053.48,2.2,50,0.053,1.04,0.05,0.99 +77,做多,2026-02-07 07:15:00,2026-02-07 11:00:00,2053.48,2064.11,2.21,50,0.0538,0.57,0.06,0.52 +78,做空,2026-02-07 11:00:00,2026-02-07 14:15:00,2064.11,2073.13,2.23,50,0.054,-0.49,0.06,-0.54 +79,做多,2026-02-07 14:15:00,2026-02-07 19:55:00,2073.13,2017.76,2.22,50,0.0536,-2.97,0.05,-3.02 +80,做空,2026-02-07 19:55:00,2026-02-07 21:35:00,2017.76,2027.6,2.19,50,0.0543,-0.53,0.06,-0.59 +81,做多,2026-02-07 21:35:00,2026-02-08 02:15:00,2027.6,2076.87,2.18,50,0.0539,2.65,0.06,2.6 +82,做空,2026-02-08 02:15:00,2026-02-08 06:10:00,2076.87,2099.58,2.21,50,0.0532,-1.21,0.06,-1.26 +83,做多,2026-02-08 06:10:00,2026-02-08 10:20:00,2099.58,2102.05,2.2,50,0.0523,0.13,0.05,0.07 +84,做空,2026-02-08 10:20:00,2026-02-08 12:15:00,2102.05,2074.69,2.2,50,0.0524,1.43,0.05,1.38 +85,做多,2026-02-08 12:15:00,2026-02-08 12:55:00,2074.69,2086.46,2.22,50,0.0534,0.63,0.06,0.57 +86,做空,2026-02-08 12:55:00,2026-02-08 14:05:00,2086.46,2079.62,2.22,50,0.0532,0.36,0.06,0.31 +87,做多,2026-02-08 14:05:00,2026-02-08 16:20:00,2079.62,2096.67,2.22,50,0.0535,0.91,0.06,0.86 +88,做空,2026-02-08 16:20:00,2026-02-08 17:35:00,2096.67,2103.15,2.23,50,0.0532,-0.34,0.06,-0.4 +89,做多,2026-02-08 17:35:00,2026-02-08 18:05:00,2103.15,2107.65,2.23,50,0.053,0.24,0.06,0.18 +90,做空,2026-02-08 18:05:00,2026-02-08 18:20:00,2107.65,2087.85,2.23,50,0.0529,1.05,0.06,0.99 +91,做多,2026-02-08 18:20:00,2026-02-08 19:15:00,2087.85,2110.36,2.24,50,0.0536,1.21,0.06,1.15 +92,做空,2026-02-08 19:15:00,2026-02-08 21:05:00,2110.36,2123.28,2.25,50,0.0533,-0.69,0.06,-0.75 +93,做多,2026-02-08 21:05:00,2026-02-09 02:15:00,2123.28,2094.55,2.24,50,0.0528,-1.52,0.06,-1.57 +94,做空,2026-02-09 02:15:00,2026-02-09 04:45:00,2094.55,2104.6,2.22,50,0.0531,-0.53,0.06,-0.59 +95,做多,2026-02-09 04:45:00,2026-02-09 06:55:00,2104.6,2107.44,2.22,50,0.0527,0.15,0.06,0.09 +96,做空,2026-02-09 06:55:00,2026-02-09 08:25:00,2107.44,2081.4,2.22,50,0.0526,1.37,0.05,1.32 +97,做多,2026-02-09 08:25:00,2026-02-09 09:20:00,2081.4,2098.76,2.24,50,0.0539,0.94,0.06,0.88 +98,做空,2026-02-09 09:20:00,2026-02-09 09:40:00,2098.76,2063.62,2.25,50,0.0537,1.89,0.06,1.83 +99,做多,2026-02-09 09:40:00,2026-02-09 10:35:00,2063.62,2079.96,2.27,50,0.055,0.9,0.06,0.84 +100,做空,2026-02-09 10:35:00,2026-02-09 14:15:00,2079.96,2075.79,2.28,50,0.0548,0.23,0.06,0.17 +101,做多,2026-02-09 14:15:00,2026-02-09 15:10:00,2075.79,2084.33,2.28,50,0.0549,0.47,0.06,0.41 +102,做空,2026-02-09 15:10:00,2026-02-09 15:35:00,2084.33,2067.23,2.28,50,0.0548,0.94,0.06,0.88 +103,做多,2026-02-09 15:35:00,2026-02-09 20:00:00,2067.23,2031.57,2.29,50,0.0554,-1.98,0.06,-2.03 +104,做空,2026-02-09 20:00:00,2026-02-10 02:20:00,2031.57,2115.84,2.27,50,0.0559,-4.71,0.06,-4.77 +105,做多,2026-02-10 02:20:00,2026-02-10 03:30:00,2115.84,2131.85,2.22,50,0.0525,0.84,0.06,0.78 +106,做空,2026-02-10 03:30:00,2026-02-10 04:00:00,2131.85,2130.8,2.23,50,0.0523,0.05,0.06,-0.0 +107,做多,2026-02-10 04:00:00,2026-02-10 04:05:00,2130.8,2135.34,2.23,50,0.0523,0.24,0.06,0.18 +108,做空,2026-02-10 04:05:00,2026-02-10 04:15:00,2135.34,2122.59,2.23,50,0.0522,0.67,0.06,0.61 +109,做多,2026-02-10 04:15:00,2026-02-10 16:20:00,2122.59,2011.91,2.24,50,0.0527,-5.83,0.05,-5.88 +110,做空,2026-02-10 16:20:00,2026-02-10 17:50:00,2011.91,2015.22,2.19,50,0.0544,-0.18,0.05,-0.23 +111,做多,2026-02-10 17:50:00,2026-02-10 19:30:00,2015.22,2019.66,2.19,50,0.0543,0.24,0.05,0.19 +112,做空,2026-02-10 19:30:00,2026-02-10 19:40:00,2019.66,2007.94,2.19,50,0.0542,0.63,0.05,0.58 +113,做多,2026-02-10 19:40:00,2026-02-10 21:15:00,2007.94,2012.02,2.19,50,0.0546,0.22,0.05,0.17 +114,做空,2026-02-10 21:15:00,2026-02-10 22:35:00,2012.02,2012.47,2.19,50,0.0545,-0.02,0.05,-0.08 +115,做多,2026-02-10 22:35:00,2026-02-11 00:10:00,2012.47,2032.87,2.19,50,0.0545,1.11,0.06,1.06 +116,做空,2026-02-11 00:10:00,2026-02-11 02:20:00,2032.87,2013.69,2.2,50,0.0542,1.04,0.05,0.98 +117,做多,2026-02-11 02:20:00,2026-02-11 03:30:00,2013.69,2013.39,2.21,50,0.0549,-0.02,0.06,-0.07 +118,做空,2026-02-11 03:30:00,2026-02-11 05:30:00,2013.39,2001.89,2.21,50,0.0549,0.63,0.05,0.58 +119,做多,2026-02-11 05:30:00,2026-02-11 07:35:00,2001.89,2018.01,2.22,50,0.0554,0.89,0.06,0.84 +120,做空,2026-02-11 07:35:00,2026-02-11 09:20:00,2018.01,2018.06,2.22,50,0.0551,-0.0,0.06,-0.06 +121,做多,2026-02-11 09:20:00,2026-02-11 10:20:00,2018.06,2027.05,2.23,50,0.0553,0.5,0.06,0.44 +122,做空,2026-02-11 10:20:00,2026-02-11 10:45:00,2027.05,2014.32,2.24,50,0.0552,0.7,0.06,0.65 +123,做多,2026-02-11 10:45:00,2026-02-11 15:35:00,2014.32,1951.85,2.24,50,0.0557,-3.48,0.05,-3.53 +124,做空,2026-02-11 15:35:00,2026-02-11 16:05:00,1951.85,1939.79,2.21,50,0.0566,0.68,0.05,0.63 +125,做多,2026-02-11 16:05:00,2026-02-11 17:00:00,1939.79,1949.26,2.21,50,0.057,0.54,0.06,0.48 +126,做空,2026-02-11 17:00:00,2026-02-11 17:45:00,1949.26,1944.0,2.22,50,0.0569,0.3,0.06,0.24 +127,做多,2026-02-11 17:45:00,2026-02-11 20:05:00,1944.0,1961.67,2.22,50,0.0571,1.01,0.06,0.95 +128,做空,2026-02-11 20:05:00,2026-02-11 21:25:00,1961.67,1948.28,2.23,50,0.0568,0.76,0.06,0.71 +129,做多,2026-02-11 21:25:00,2026-02-11 21:30:00,1948.28,1963.0,2.23,50,0.0574,0.84,0.06,0.79 +130,做空,2026-02-11 21:30:00,2026-02-12 03:30:00,1963.0,1943.01,2.24,50,0.0571,1.14,0.06,1.09 +131,做多,2026-02-12 03:30:00,2026-02-12 03:45:00,1943.01,1952.12,2.25,50,0.058,0.53,0.06,0.47 +132,做空,2026-02-12 03:45:00,2026-02-12 04:25:00,1952.12,1941.02,2.26,50,0.0578,0.64,0.06,0.59 +133,做多,2026-02-12 04:25:00,2026-02-12 05:20:00,1941.02,1968.22,2.26,50,0.0583,1.58,0.06,1.53 +134,做空,2026-02-12 05:20:00,2026-02-12 06:10:00,1968.22,1960.92,2.28,50,0.0578,0.42,0.06,0.37 +135,做多,2026-02-12 06:10:00,2026-02-12 08:05:00,1960.92,1951.09,2.28,50,0.0581,-0.57,0.06,-0.63 +136,做空,2026-02-12 08:05:00,2026-02-12 12:30:00,1951.09,1967.55,2.29,50,0.0586,-0.97,0.06,-1.02 +137,做多,2026-02-12 12:30:00,2026-02-12 14:10:00,1967.55,1970.2,2.28,50,0.0579,0.15,0.06,0.1 +138,做空,2026-02-12 14:10:00,2026-02-12 16:25:00,1970.2,1958.73,2.28,50,0.0578,0.66,0.06,0.61 +139,做多,2026-02-12 16:25:00,2026-02-12 17:10:00,1958.73,1968.27,2.28,50,0.0583,0.56,0.06,0.5 +140,做空,2026-02-12 17:10:00,2026-02-12 20:50:00,1968.27,1976.76,2.29,50,0.0581,-0.49,0.06,-0.55 +141,做多,2026-02-12 20:50:00,2026-02-12 21:30:00,1976.76,1985.8,2.28,50,0.0577,0.52,0.06,0.46 +142,做空,2026-02-12 21:30:00,2026-02-12 22:45:00,1985.8,1978.53,2.29,50,0.0575,0.42,0.06,0.36 +143,做多,2026-02-12 22:45:00,2026-02-13 01:35:00,1978.53,1920.11,2.29,50,0.0578,-3.38,0.06,-3.43 +144,做空,2026-02-13 01:35:00,2026-02-13 04:10:00,1920.11,1920.22,2.25,50,0.0587,-0.01,0.06,-0.06 +145,做多,2026-02-13 04:10:00,2026-02-13 06:30:00,1920.22,1927.46,2.25,50,0.0587,0.42,0.06,0.37 +146,做空,2026-02-13 06:30:00,2026-02-13 08:15:00,1927.46,1940.1,2.26,50,0.0585,-0.74,0.06,-0.8 +147,做多,2026-02-13 08:15:00,2026-02-13 09:05:00,1940.1,1941.5,2.26,50,0.0582,0.08,0.06,0.02 +148,做空,2026-02-13 09:05:00,2026-02-13 10:20:00,1941.5,1946.1,2.26,50,0.0582,-0.27,0.06,-0.32 +149,做多,2026-02-13 10:20:00,2026-02-13 10:50:00,1946.1,1947.9,2.25,50,0.0579,0.1,0.06,0.05 +150,做空,2026-02-13 10:50:00,2026-02-13 12:10:00,1947.9,1950.84,2.25,50,0.0579,-0.17,0.06,-0.23 +151,做多,2026-02-13 12:10:00,2026-02-13 12:25:00,1950.84,1949.6,2.25,50,0.0577,-0.07,0.06,-0.13 +152,做空,2026-02-13 12:25:00,2026-02-13 12:30:00,1949.6,1950.08,2.25,50,0.0577,-0.03,0.06,-0.08 +153,做多,2026-02-13 12:30:00,2026-02-13 16:20:00,1950.08,1939.99,2.25,50,0.0576,-0.58,0.06,-0.64 +154,做空,2026-02-13 16:20:00,2026-02-13 19:05:00,1939.99,1955.6,2.24,50,0.0578,-0.9,0.06,-0.96 +155,做多,2026-02-13 19:05:00,2026-02-13 20:25:00,1955.6,1961.63,2.23,50,0.057,0.34,0.06,0.29 +156,做空,2026-02-13 20:25:00,2026-02-13 21:05:00,1961.63,1957.39,2.23,50,0.0569,0.24,0.06,0.19 +157,做多,2026-02-13 21:05:00,2026-02-13 21:20:00,1957.39,1967.19,2.23,50,0.0571,0.56,0.06,0.5 +158,做空,2026-02-13 21:20:00,2026-02-14 02:00:00,1967.19,2056.73,2.24,50,0.0569,-5.1,0.06,-5.15 +159,做多,2026-02-14 02:00:00,2026-02-14 02:35:00,2056.73,2061.34,2.19,50,0.0532,0.25,0.05,0.19 +160,做空,2026-02-14 02:35:00,2026-02-14 04:15:00,2061.34,2049.81,2.19,50,0.0531,0.61,0.05,0.56 +161,做多,2026-02-14 04:15:00,2026-02-14 05:00:00,2049.81,2054.62,2.19,50,0.0535,0.26,0.05,0.2 +162,做空,2026-02-14 05:00:00,2026-02-14 07:35:00,2054.62,2047.52,2.19,50,0.0534,0.38,0.05,0.32 +163,做多,2026-02-14 07:35:00,2026-02-14 09:50:00,2047.52,2053.35,2.2,50,0.0537,0.31,0.06,0.26 +164,做空,2026-02-14 09:50:00,2026-02-14 09:55:00,2053.35,2053.37,2.22,50,0.054,-0.0,0.06,-0.06 +165,做多,2026-02-14 09:55:00,2026-02-14 11:25:00,2053.37,2050.56,2.22,50,0.0539,-0.15,0.06,-0.21 +166,做空,2026-02-14 11:25:00,2026-02-14 13:00:00,2050.56,2052.1,2.21,50,0.054,-0.08,0.06,-0.14 +167,做多,2026-02-14 13:00:00,2026-02-14 15:30:00,2052.1,2052.31,2.21,50,0.0539,0.01,0.06,-0.04 +168,做空,2026-02-14 15:30:00,2026-02-14 15:35:00,2052.31,2050.7,2.21,50,0.0538,0.09,0.06,0.03 +169,做多,2026-02-14 15:35:00,2026-02-14 15:50:00,2050.7,2057.65,2.21,50,0.0539,0.37,0.06,0.32 +170,做空,2026-02-14 15:50:00,2026-02-14 20:15:00,2057.65,2094.01,2.21,50,0.0538,-1.95,0.06,-2.01 +171,做多,2026-02-14 20:15:00,2026-02-14 22:20:00,2094.01,2069.5,2.19,50,0.0523,-1.28,0.05,-1.34 +172,做空,2026-02-14 22:20:00,2026-02-15 00:00:00,2069.5,2086.28,2.18,50,0.0526,-0.88,0.05,-0.94 +173,做多,2026-02-15 00:00:00,2026-02-15 02:20:00,2086.28,2082.08,2.17,50,0.052,-0.22,0.05,-0.27 +174,做空,2026-02-15 02:20:00,2026-02-15 03:15:00,2082.08,2084.26,2.16,50,0.052,-0.11,0.05,-0.17 +175,做多,2026-02-15 03:15:00,2026-02-15 03:30:00,2084.26,2085.58,2.16,50,0.0519,0.07,0.05,0.01 +176,做空,2026-02-15 03:30:00,2026-02-15 07:15:00,2085.58,2087.12,2.16,50,0.0518,-0.08,0.05,-0.13 +177,做多,2026-02-15 07:15:00,2026-02-15 10:05:00,2087.12,2058.92,2.16,50,0.0517,-1.46,0.05,-1.51 +178,做空,2026-02-15 10:05:00,2026-02-15 10:20:00,2058.92,2054.96,2.16,50,0.0524,0.21,0.05,0.15 +179,做多,2026-02-15 10:20:00,2026-02-15 12:05:00,2054.96,2072.91,2.16,50,0.0525,0.94,0.05,0.89 +180,做空,2026-02-15 12:05:00,2026-02-15 14:00:00,2072.91,2086.85,2.17,50,0.0523,-0.73,0.05,-0.78 +181,做多,2026-02-15 14:00:00,2026-02-15 14:35:00,2086.85,2090.16,2.16,50,0.0517,0.17,0.05,0.12 +182,做空,2026-02-15 14:35:00,2026-02-15 16:25:00,2090.16,2075.54,2.16,50,0.0517,0.76,0.05,0.7 +183,做多,2026-02-15 16:25:00,2026-02-15 20:20:00,2075.54,2062.81,2.17,50,0.0522,-0.66,0.05,-0.72 +184,做空,2026-02-15 20:20:00,2026-02-15 20:45:00,2062.81,2046.45,2.16,50,0.0523,0.86,0.05,0.8 +185,做多,2026-02-15 20:45:00,2026-02-15 22:30:00,2046.45,1999.25,2.17,50,0.0529,-2.5,0.05,-2.55 +186,做空,2026-02-15 22:30:00,2026-02-16 00:05:00,1999.25,1999.62,2.14,50,0.0535,-0.02,0.05,-0.07 +187,做多,2026-02-16 00:05:00,2026-02-16 05:30:00,1999.62,1959.09,2.14,50,0.0535,-2.17,0.05,-2.22 +188,做空,2026-02-16 05:30:00,2026-02-16 07:00:00,1959.09,1956.8,2.12,50,0.054,0.12,0.05,0.07 +189,做多,2026-02-16 07:00:00,2026-02-16 08:05:00,1956.8,1973.71,2.12,50,0.0541,0.91,0.05,0.86 +190,做空,2026-02-16 08:05:00,2026-02-16 10:20:00,1973.71,1958.9,2.14,50,0.0541,0.8,0.05,0.75 +191,做多,2026-02-16 10:20:00,2026-02-16 12:00:00,1958.9,1963.67,2.14,50,0.0547,0.26,0.05,0.21 +192,做空,2026-02-16 12:00:00,2026-02-16 19:05:00,1963.67,1973.75,2.14,50,0.0546,-0.55,0.05,-0.6 +193,做多,2026-02-16 19:05:00,2026-02-16 20:25:00,1973.75,1991.31,2.14,50,0.0542,0.95,0.05,0.9 +194,做空,2026-02-16 20:25:00,2026-02-16 21:25:00,1991.31,1976.1,2.15,50,0.0539,0.82,0.05,0.77 +195,做多,2026-02-16 21:25:00,2026-02-16 22:50:00,1976.1,1969.72,2.15,50,0.0545,-0.35,0.05,-0.4 +196,做空,2026-02-16 22:50:00,2026-02-16 23:30:00,1969.72,1940.59,2.15,50,0.0545,1.59,0.05,1.54 +197,做多,2026-02-16 23:30:00,2026-02-17 01:30:00,1940.59,1983.81,2.16,50,0.0557,2.41,0.06,2.35 +198,做空,2026-02-17 01:30:00,2026-02-17 02:35:00,1983.81,1974.99,2.19,50,0.0551,0.49,0.05,0.43 +199,做多,2026-02-17 02:35:00,2026-02-17 03:35:00,1974.99,1977.15,2.19,50,0.0555,0.12,0.05,0.06 +200,做空,2026-02-17 03:35:00,2026-02-17 06:45:00,1977.15,1991.2,2.19,50,0.0554,-0.78,0.06,-0.83 +201,做多,2026-02-17 06:45:00,2026-02-17 07:05:00,1991.2,1993.01,2.18,50,0.0548,0.1,0.05,0.04 +202,做空,2026-02-17 07:05:00,2026-02-17 10:00:00,1993.01,1986.61,2.18,50,0.0547,0.35,0.05,0.3 +203,做多,2026-02-17 10:00:00,2026-02-17 12:20:00,1986.61,1996.22,2.2,50,0.0553,0.53,0.06,0.48 +204,做空,2026-02-17 12:20:00,2026-02-17 13:15:00,1996.22,1975.63,2.2,50,0.0551,1.14,0.05,1.08 +205,做多,2026-02-17 13:15:00,2026-02-17 14:25:00,1975.63,1981.79,2.21,50,0.056,0.34,0.06,0.29 +206,做空,2026-02-17 14:25:00,2026-02-17 15:05:00,1981.79,1975.75,2.21,50,0.0558,0.34,0.06,0.28 +207,做多,2026-02-17 15:05:00,2026-02-17 18:00:00,1975.75,1974.07,2.22,50,0.0561,-0.09,0.06,-0.15 +208,做空,2026-02-17 18:00:00,2026-02-17 18:15:00,1974.07,1963.99,2.21,50,0.0561,0.57,0.06,0.51 +209,做多,2026-02-17 18:15:00,2026-02-17 19:00:00,1963.99,1966.66,2.22,50,0.0565,0.15,0.06,0.1 +210,做空,2026-02-17 19:00:00,2026-02-17 19:45:00,1966.66,1966.75,2.22,50,0.0564,-0.01,0.06,-0.06 +211,做多,2026-02-17 19:45:00,2026-02-17 20:05:00,1966.75,1973.21,2.22,50,0.0564,0.36,0.06,0.31 +212,做空,2026-02-17 20:05:00,2026-02-17 20:50:00,1973.21,1970.9,2.22,50,0.0563,0.13,0.06,0.07 +213,做多,2026-02-17 20:50:00,2026-02-17 21:10:00,1970.9,1979.05,2.22,50,0.0563,0.46,0.06,0.4 +214,做空,2026-02-17 21:10:00,2026-02-17 22:35:00,1979.05,1978.92,2.22,50,0.0562,0.01,0.06,-0.05 +215,做多,2026-02-17 22:35:00,2026-02-18 00:00:00,1978.92,1986.74,2.22,50,0.0562,0.44,0.06,0.38 +216,做空,2026-02-18 00:00:00,2026-02-18 01:10:00,1986.74,1964.67,2.23,50,0.056,1.24,0.06,1.18 +217,做多,2026-02-18 01:10:00,2026-02-18 02:20:00,1964.67,1986.33,2.24,50,0.0569,1.23,0.06,1.18 +218,做空,2026-02-18 02:20:00,2026-02-18 04:30:00,1986.33,1993.32,2.25,50,0.0566,-0.4,0.06,-0.45 +219,做多,2026-02-18 04:30:00,2026-02-18 04:40:00,1993.32,1997.94,2.24,50,0.0563,0.26,0.06,0.2 +220,做空,2026-02-18 04:40:00,2026-02-18 06:50:00,1997.94,1993.94,2.24,50,0.0562,0.22,0.06,0.17 +221,做多,2026-02-18 06:50:00,2026-02-18 11:25:00,1993.94,1993.01,2.25,50,0.0563,-0.05,0.06,-0.11 +222,做空,2026-02-18 11:25:00,2026-02-18 12:35:00,1993.01,1994.19,2.26,50,0.0568,-0.07,0.06,-0.12 +223,做多,2026-02-18 12:35:00,2026-02-18 14:20:00,1994.19,2001.76,2.26,50,0.0567,0.43,0.06,0.37 +224,做空,2026-02-18 14:20:00,2026-02-18 17:50:00,2001.76,2017.24,2.26,50,0.0566,-0.88,0.06,-0.93 +225,做多,2026-02-18 17:50:00,2026-02-18 22:30:00,2017.24,1967.63,2.25,50,0.0559,-2.77,0.05,-2.83 +226,做空,2026-02-18 22:30:00,2026-02-18 22:45:00,1967.63,1955.53,2.23,50,0.0566,0.68,0.06,0.63 +227,做多,2026-02-18 22:45:00,2026-02-18 23:05:00,1955.53,1983.75,2.23,50,0.0571,1.61,0.06,1.55 +228,做空,2026-02-18 23:05:00,2026-02-19 02:15:00,1983.75,1963.63,2.25,50,0.0566,1.14,0.06,1.08 +229,做多,2026-02-19 02:15:00,2026-02-19 04:30:00,1963.63,1947.9,2.26,50,0.0575,-0.9,0.06,-0.96 +230,做空,2026-02-19 04:30:00,2026-02-19 07:15:00,1947.9,1946.27,2.25,50,0.0577,0.09,0.06,0.04 +231,做多,2026-02-19 07:15:00,2026-02-19 07:25:00,1946.27,1947.6,2.25,50,0.0577,0.08,0.06,0.02 +232,做空,2026-02-19 07:25:00,2026-02-19 08:25:00,1947.6,1952.44,2.25,50,0.0577,-0.28,0.06,-0.34 +233,做多,2026-02-19 08:25:00,2026-02-19 09:10:00,1952.44,1969.01,2.25,50,0.0577,0.96,0.06,0.9 +234,做空,2026-02-19 09:10:00,2026-02-19 12:45:00,1969.01,1971.59,2.26,50,0.0574,-0.15,0.06,-0.2 +235,做多,2026-02-19 12:45:00,2026-02-19 14:05:00,1971.59,1971.53,2.26,50,0.0573,-0.0,0.06,-0.06 +236,做空,2026-02-19 14:05:00,2026-02-19 15:40:00,1971.53,1981.57,2.26,50,0.0573,-0.57,0.06,-0.63 +237,做多,2026-02-19 15:40:00,2026-02-19 17:20:00,1981.57,1977.7,2.25,50,0.0568,-0.22,0.06,-0.28 +238,做空,2026-02-19 17:20:00,2026-02-19 17:45:00,1977.7,1961.93,2.25,50,0.0568,0.9,0.06,0.84 +239,做多,2026-02-19 17:45:00,2026-02-19 22:50:00,1961.93,1939.99,2.26,50,0.0575,-1.26,0.06,-1.32 +240,做空,2026-02-19 22:50:00,2026-02-20 00:05:00,1939.99,1915.04,2.24,50,0.0578,1.44,0.06,1.39 +241,做多,2026-02-20 00:05:00,2026-02-20 01:15:00,1915.04,1941.03,2.26,50,0.0589,1.53,0.06,1.47 +242,做空,2026-02-20 01:15:00,2026-02-20 03:25:00,1941.03,1935.82,2.27,50,0.0585,0.3,0.06,0.25 +243,做多,2026-02-20 03:25:00,2026-02-20 04:45:00,1935.82,1947.16,2.27,50,0.0587,0.67,0.06,0.61 +244,做空,2026-02-20 04:45:00,2026-02-20 05:55:00,1947.16,1947.67,2.28,50,0.0585,-0.03,0.06,-0.09 +245,做多,2026-02-20 05:55:00,2026-02-20 07:00:00,1947.67,1943.15,2.28,50,0.0584,-0.26,0.06,-0.32 +246,做空,2026-02-20 07:00:00,2026-02-20 12:00:00,1943.15,1948.02,2.27,50,0.0585,-0.28,0.06,-0.34 +247,做多,2026-02-20 12:00:00,2026-02-20 13:30:00,1948.02,1960.28,2.28,50,0.0586,0.72,0.06,0.66 +248,做空,2026-02-20 13:30:00,2026-02-20 14:30:00,1960.28,1954.43,2.29,50,0.0584,0.34,0.06,0.28 +249,做多,2026-02-20 14:30:00,2026-02-20 15:15:00,1954.43,1959.51,2.29,50,0.0586,0.3,0.06,0.24 +250,做空,2026-02-20 15:15:00,2026-02-20 18:40:00,1959.51,1961.18,2.29,50,0.0585,-0.1,0.06,-0.16 +251,做多,2026-02-20 18:40:00,2026-02-20 20:50:00,1961.18,1946.59,2.29,50,0.0584,-0.85,0.06,-0.91 +252,做空,2026-02-20 20:50:00,2026-02-20 21:00:00,1946.59,1943.99,2.28,50,0.0586,0.15,0.06,0.1 +253,做多,2026-02-20 21:00:00,2026-02-20 22:30:00,1943.99,1944.3,2.28,50,0.0587,0.02,0.06,-0.04 +254,做空,2026-02-20 22:30:00,2026-02-21 06:10:00,1944.3,1964.49,2.28,50,0.0586,-1.18,0.06,-1.24 +255,做多,2026-02-21 06:10:00,2026-02-21 07:05:00,1964.49,1968.92,2.27,50,0.0577,0.26,0.06,0.2 +256,做空,2026-02-21 07:05:00,2026-02-21 08:45:00,1968.92,1963.92,2.27,50,0.0576,0.29,0.06,0.23 +257,做多,2026-02-21 08:45:00,2026-02-21 12:25:00,1963.92,1959.01,2.28,50,0.058,-0.29,0.06,-0.34 +258,做空,2026-02-21 12:25:00,2026-02-21 20:25:00,1959.01,1969.99,2.28,50,0.0581,-0.64,0.06,-0.7 +259,做多,2026-02-21 20:25:00,2026-02-21 22:05:00,1969.99,1981.03,2.27,50,0.0576,0.64,0.06,0.58 +260,做空,2026-02-21 22:05:00,2026-02-21 23:30:00,1981.03,1988.19,2.27,50,0.0574,-0.41,0.06,-0.47 +261,做多,2026-02-21 23:30:00,2026-02-21 23:40:00,1988.19,1989.55,2.27,50,0.057,0.08,0.06,0.02 +262,做空,2026-02-21 23:40:00,2026-02-22 00:00:00,1989.55,1979.46,2.27,50,0.057,0.58,0.06,0.52 +263,做多,2026-02-22 00:00:00,2026-02-22 01:40:00,1979.46,1988.74,2.27,50,0.0574,0.53,0.06,0.48 +264,做空,2026-02-22 01:40:00,2026-02-22 03:50:00,1988.74,1987.85,2.28,50,0.0572,0.05,0.06,-0.01 +265,做多,2026-02-22 03:50:00,2026-02-22 09:00:00,1987.85,1973.58,2.28,50,0.0573,-0.82,0.06,-0.87 +266,做空,2026-02-22 09:00:00,2026-02-22 11:15:00,1973.58,1968.26,2.28,50,0.0577,0.31,0.06,0.25 +267,做多,2026-02-22 11:15:00,2026-02-22 15:25:00,1968.26,1975.34,2.28,50,0.0579,0.41,0.06,0.35 +268,做空,2026-02-22 15:25:00,2026-02-22 16:20:00,1975.34,1973.39,2.28,50,0.0577,0.11,0.06,0.06 +269,做多,2026-02-22 16:20:00,2026-02-22 17:15:00,1973.39,1973.0,2.28,50,0.0578,-0.02,0.06,-0.08 +270,做空,2026-02-22 17:15:00,2026-02-22 20:00:00,1973.0,1976.79,2.28,50,0.0578,-0.22,0.06,-0.28 +271,做多,2026-02-22 20:00:00,2026-02-22 22:30:00,1976.79,1951.75,2.28,50,0.0576,-1.44,0.06,-1.5 +272,做空,2026-02-22 22:30:00,2026-02-23 01:30:00,1951.75,1935.57,2.26,50,0.0579,0.94,0.06,0.88 +273,做多,2026-02-23 01:30:00,2026-02-23 02:15:00,1935.57,1941.0,2.27,50,0.0586,0.32,0.06,0.26 +274,做空,2026-02-23 02:15:00,2026-02-23 02:35:00,1941.0,1940.45,2.27,50,0.0585,0.03,0.06,-0.02 +275,做多,2026-02-23 02:35:00,2026-02-23 02:50:00,1940.45,1942.01,2.27,50,0.0585,0.09,0.06,0.03 +276,做空,2026-02-23 02:50:00,2026-02-23 04:50:00,1942.01,1939.47,2.27,50,0.0584,0.15,0.06,0.09 +277,做多,2026-02-23 04:50:00,2026-02-23 05:35:00,1939.47,1949.72,2.27,50,0.0585,0.6,0.06,0.54 +278,做空,2026-02-23 05:35:00,2026-02-23 07:20:00,1949.72,1951.6,2.28,50,0.0584,-0.11,0.06,-0.17 +279,做多,2026-02-23 07:20:00,2026-02-23 07:55:00,1951.6,1957.01,2.27,50,0.0582,0.32,0.06,0.26 +280,做空,2026-02-23 07:55:00,2026-02-23 08:25:00,1957.01,1947.41,2.28,50,0.0581,0.56,0.06,0.5 +281,做多,2026-02-23 08:25:00,2026-02-23 11:05:00,1947.41,1866.1,2.29,50,0.0589,-4.79,0.05,-4.85 +282,做空,2026-02-23 11:05:00,2026-02-23 11:15:00,1866.1,1858.39,2.25,50,0.0602,0.46,0.06,0.41 +283,做多,2026-02-23 11:15:00,2026-02-23 13:15:00,1858.39,1866.46,2.25,50,0.0605,0.49,0.06,0.43 +284,做空,2026-02-23 13:15:00,2026-02-23 16:35:00,1866.46,1877.82,2.25,50,0.0604,-0.69,0.06,-0.74 +285,做多,2026-02-23 16:35:00,2026-02-23 17:10:00,1877.82,1884.54,2.25,50,0.0598,0.4,0.06,0.35 +286,做空,2026-02-23 17:10:00,2026-02-23 20:30:00,1884.54,1907.37,2.25,50,0.0596,-1.36,0.06,-1.42 +287,做多,2026-02-23 20:30:00,2026-02-23 20:35:00,1907.37,1919.57,2.23,50,0.0585,0.71,0.06,0.66 +288,做空,2026-02-23 20:35:00,2026-02-23 22:35:00,1919.57,1906.62,2.24,50,0.0583,0.76,0.06,0.7 +289,做多,2026-02-23 22:35:00,2026-02-24 10:30:00,1906.62,1849.89,2.25,50,0.0589,-3.34,0.05,-3.4 +290,做空,2026-02-24 10:30:00,2026-02-24 11:00:00,1849.89,1836.02,2.22,50,0.06,0.83,0.06,0.78 +291,做多,2026-02-24 11:00:00,2026-02-24 13:05:00,1836.02,1836.44,2.23,50,0.0607,0.03,0.06,-0.03 +292,做空,2026-02-24 13:05:00,2026-02-24 13:20:00,1836.44,1815.44,2.23,50,0.0606,1.27,0.06,1.22 +293,做多,2026-02-24 13:20:00,2026-02-24 16:30:00,1815.44,1832.52,2.24,50,0.0616,1.05,0.06,1.0 +294,做空,2026-02-24 16:30:00,2026-02-24 17:05:00,1832.52,1824.3,2.25,50,0.0613,0.5,0.06,0.45 +295,做多,2026-02-24 17:05:00,2026-02-24 20:10:00,1824.3,1826.47,2.25,50,0.0617,0.13,0.06,0.08 +296,做空,2026-02-24 20:10:00,2026-02-24 21:20:00,1826.47,1819.72,2.25,50,0.0616,0.42,0.06,0.36 +297,做多,2026-02-24 21:20:00,2026-02-24 22:35:00,1819.72,1821.38,2.25,50,0.062,0.1,0.06,0.05 +298,做空,2026-02-24 22:35:00,2026-02-25 02:10:00,1821.38,1846.04,2.25,50,0.0619,-1.53,0.06,-1.58 +299,做多,2026-02-25 02:10:00,2026-02-25 03:05:00,1846.04,1853.79,2.24,50,0.0606,0.47,0.06,0.41 +300,做空,2026-02-25 03:05:00,2026-02-25 05:00:00,1853.79,1850.16,2.24,50,0.0605,0.22,0.06,0.16 +301,做多,2026-02-25 05:00:00,2026-02-25 09:05:00,1850.16,1864.09,2.24,50,0.0606,0.84,0.06,0.79 +302,做空,2026-02-25 09:05:00,2026-02-25 12:00:00,1864.09,1900.0,2.26,50,0.0607,-2.18,0.06,-2.24 +303,做多,2026-02-25 12:00:00,2026-02-25 14:20:00,1900.0,1892.77,2.24,50,0.0589,-0.43,0.06,-0.48 +304,做空,2026-02-25 14:20:00,2026-02-25 14:50:00,1892.77,1885.31,2.23,50,0.059,0.44,0.06,0.38 +305,做多,2026-02-25 14:50:00,2026-02-25 16:20:00,1885.31,1896.51,2.24,50,0.0593,0.66,0.06,0.61 +306,做空,2026-02-25 16:20:00,2026-02-25 19:05:00,1896.51,1914.28,2.24,50,0.0591,-1.05,0.06,-1.11 +307,做多,2026-02-25 19:05:00,2026-02-25 19:10:00,1914.28,1914.26,2.23,50,0.0583,-0.0,0.06,-0.06 +308,做空,2026-02-25 19:10:00,2026-02-26 03:10:00,1914.26,2065.7,2.23,50,0.0583,-8.82,0.06,-8.88 +309,做多,2026-02-26 03:10:00,2026-02-26 04:50:00,2065.7,2077.16,2.14,50,0.0518,0.59,0.05,0.54 +310,做空,2026-02-26 04:50:00,2026-02-26 06:40:00,2077.16,2088.92,2.15,50,0.0516,-0.61,0.05,-0.66 +311,做多,2026-02-26 06:40:00,2026-02-26 10:45:00,2088.92,2048.37,2.14,50,0.0512,-2.08,0.05,-2.13 +312,做空,2026-02-26 10:45:00,2026-02-26 13:15:00,2048.37,2059.76,2.13,50,0.0519,-0.59,0.05,-0.64 +313,做多,2026-02-26 13:15:00,2026-02-26 14:05:00,2059.76,2070.3,2.12,50,0.0515,0.54,0.05,0.49 +314,做空,2026-02-26 14:05:00,2026-02-26 14:45:00,2070.3,2061.26,2.12,50,0.0513,0.46,0.05,0.41 diff --git a/strategy/results/bb_5m_param_sweep_conservative_2020_2025.csv b/strategy/results/bb_5m_param_sweep_conservative_2020_2025.csv new file mode 100644 index 0000000..33469fb --- /dev/null +++ b/strategy/results/bb_5m_param_sweep_conservative_2020_2025.csv @@ -0,0 +1,37 @@ +period,std,train_final,train_ret_pct,train_trades,train_liq,test_final,test_ret_pct,test_trades,test_liq,score +30,3.0,6.461292242669117e-12,-99.99999999999677,6251,2111,1.5236368612973373e-11,-99.99999999999238,5324,1148,1.5236368612973373e-11 +20,3.0,1.8100835126072174e-13,-99.99999999999991,8303,2213,2.004484456301478e-13,-99.9999999999999,7119,1125,2.004484456301478e-13 +30,2.8,2.4311483078671436e-12,-99.99999999999878,7043,2250,1.7667468163728375e-13,-99.99999999999991,6027,1207,1.7667468163728375e-13 +20,2.8,7.846644590273088e-17,-100.0,9405,2411,1.373663083431439e-15,-100.0,8162,1200,1.373663083431439e-15 +15,3.0,4.000972689149238e-14,-99.99999999999999,10176,2274,1.334121125924488e-15,-100.0,9020,1127,1.334121125924488e-15 +12,3.0,1.3648909498077833e-16,-100.0,12248,2312,3.221031658827695e-16,-100.0,10961,1111,3.221031658827695e-16 +30,2.5,3.5612711817081846e-19,-100.0,8364,2548,2.6039428085637916e-16,-100.0,7169,1309,2.6039428085637916e-16 +10,3.0,1.0851271143245777e-19,-100.0,14554,2331,1.5973234572926277e-17,-100.0,12954,1056,1.5973234572926277e-17 +15,2.8,1.0867209668553655e-17,-100.0,11611,2443,2.8298588113655214e-18,-100.0,10334,1169,2.8298588113655214e-18 +8,3.0,5.306932488644652e-21,-100.0,17958,2357,1.2736252312876604e-19,-100.0,16166,1010,1.2736252312876604e-19 +12,2.8,1.4286513547325967e-19,-100.0,13966,2448,1.0033977462584242e-19,-100.0,12480,1164,1.0033977462584242e-19 +20,2.5,2.2403774532126082e-23,-100.0,11128,2662,7.765130502770661e-20,-100.0,9730,1294,7.765130502770661e-20 +30,2.2,7.112452348296382e-24,-100.0,9746,2837,2.178522685356585e-20,-100.0,8376,1404,2.178522685356585e-20 +10,2.8,1.14378568397889e-22,-100.0,16467,2419,1.7504767423183517e-20,-100.0,14860,1099,1.7504767423183517e-20 +15,2.5,1.2889707168075324e-24,-100.0,13904,2665,7.701898585592486e-22,-100.0,12376,1244,7.701898585592486e-22 +30,2.0,3.3954467452863534e-30,-100.0,10737,3038,3.006982280285153e-23,-100.0,9277,1476,3.006982280285153e-23 +8,2.8,2.3911268173585217e-25,-100.0,20200,2424,2.6239693580748698e-23,-100.0,18347,1047,2.6239693580748698e-23 +12,2.5,1.5959390099076778e-26,-100.0,16840,2666,2.5122374088172532e-24,-100.0,15097,1197,2.5122374088172532e-24 +20,2.2,4.075155061653048e-30,-100.0,13056,2898,1.6217540014835198e-24,-100.0,11509,1387,1.6217540014835198e-24 +10,2.5,1.5239252240418153e-27,-100.0,19776,2602,3.478054992553642e-26,-100.0,17847,1143,3.478054992553642e-26 +30,1.8,2.905397760666862e-35,-100.0,11783,3196,1.4643221654306065e-26,-100.0,10238,1510,1.4643221654306065e-26 +20,2.0,4.5258883799074187e-35,-100.0,14558,3084,6.0778437333199835e-28,-100.0,12766,1425,6.0778437333199835e-28 +15,2.2,1.0473150457667376e-34,-100.0,16471,2949,4.616747557539696e-28,-100.0,14639,1329,4.616747557539696e-28 +8,2.5,3.728422330048161e-32,-100.0,24241,2572,8.443947733942594e-30,-100.0,22035,1088,8.443947733942594e-30 +12,2.2,4.023491430830127e-34,-100.0,19939,2849,2.0103723058079613e-31,-100.0,17925,1278,2.0103723058079613e-31 +15,2.0,1.5077333275255206e-39,-100.0,18290,3047,4.5852539168192905e-32,-100.0,16384,1379,4.5852539168192905e-32 +20,1.8,3.1358668307895184e-40,-100.0,16081,3234,3.528256253001935e-32,-100.0,14238,1477,3.528256253001935e-32 +10,2.2,9.818937063199508e-37,-100.0,23289,2808,8.301596164191992e-34,-100.0,21116,1192,8.301596164191992e-34 +12,2.0,2.89871510624932e-41,-100.0,22108,2997,5.7249833676044525e-36,-100.0,19972,1312,5.7249833676044525e-36 +15,1.8,1.9646377910410098e-43,-100.0,20241,3165,1.887622828901651e-36,-100.0,18203,1403,1.887622828901651e-36 +8,2.2,3.137207043844276e-39,-100.0,28429,2715,3.907836948794964e-37,-100.0,26080,1123,3.907836948794964e-37 +10,2.0,3.772919321721765e-43,-100.0,25796,2936,3.0387903785706536e-39,-100.0,23573,1242,3.0387903785706536e-39 +12,1.8,2.2809761615524126e-47,-100.0,24375,3136,2.3011372195381717e-40,-100.0,22137,1322,2.3011372195381717e-40 +8,2.0,1.0509234742751481e-45,-100.0,31437,2841,8.788965059420589e-44,-100.0,28899,1160,8.788965059420589e-44 +10,1.8,5.805887390677206e-50,-100.0,28616,3081,2.7972542140757193e-44,-100.0,26107,1254,2.7972542140757193e-44 +8,1.8,2.081454986276226e-52,-100.0,34477,2948,9.722792700824057e-50,-100.0,31739,1170,9.722792700824057e-50 diff --git a/strategy/results/bb_5m_param_sweep_conservative_2020_2025_no_pyramid.csv b/strategy/results/bb_5m_param_sweep_conservative_2020_2025_no_pyramid.csv new file mode 100644 index 0000000..a43db44 --- /dev/null +++ b/strategy/results/bb_5m_param_sweep_conservative_2020_2025_no_pyramid.csv @@ -0,0 +1,37 @@ +period,std,train_final,train_ret_pct,train_trades,train_liq,test_final,test_ret_pct,test_trades,test_liq +30,3.0,10.33503463017524,-94.83248268491238,6729,2627,9.105543803335324,-95.44722809833233,5622,1452 +30,2.8,5.776936552726516,-97.11153172363674,7595,2844,5.8310318500270775,-97.08448407498646,6321,1513 +20,3.0,2.8530376604538237,-98.57348116977309,8932,2894,3.117142538047551,-98.44142873097623,7487,1533 +30,2.5,3.3090997870703003,-98.34545010646485,8894,3101,2.9901743436510984,-98.50491282817445,7453,1604 +20,2.8,0.859787066661548,-99.57010646666923,10085,3122,1.9227920948602537,-99.03860395256987,8513,1595 +30,2.2,0.6281222070732229,-99.68593889646338,10267,3369,1.236067041291377,-99.38196647935432,8634,1668 +20,2.5,0.25278361222515633,-99.87360819388742,11847,3394,1.049877999265477,-99.47506100036726,10073,1644 +15,3.0,1.466920389212773,-99.26653980539362,10948,3115,0.9504725191291745,-99.52476374043542,9444,1587 +15,2.8,0.40768152859129914,-99.79615923570435,12417,3310,0.7301936713745412,-99.63490316431273,10761,1640 +30,2.0,0.27389542637526637,-99.86305228681236,11185,3489,0.5860341454411505,-99.70698292727943,9512,1716 +12,3.0,0.4596628661296959,-99.77016856693515,13093,3243,0.4599583255360801,-99.77002083723195,11385,1580 +15,2.5,0.07101870013743423,-99.96449064993128,14756,3554,0.27989601683829196,-99.86005199158086,12771,1662 +20,2.2,0.068694671965183,-99.96565266401741,13743,3599,0.2447384990957471,-99.87763075045213,11824,1712 +30,1.8,0.07356202139088691,-99.96321898930455,12192,3609,0.23106787386920916,-99.88446606306539,10474,1746 +12,2.8,0.20911756492338415,-99.8954412175383,14849,3399,0.2173258061277338,-99.89133709693613,12877,1605 +10,3.0,0.1284276762723427,-99.93578616186383,15455,3345,0.1658833559115693,-99.91705832204421,13421,1582 +20,2.0,0.027822496858016875,-99.98608875157099,15185,3723,0.10850768549118871,-99.9457461572544,13061,1728 +10,2.8,0.062411539565720396,-99.96879423021714,17473,3515,0.0858355994398584,-99.95708220028007,15299,1600 +12,2.5,0.0635800161079057,-99.96820999194605,17762,3624,0.07595434907945135,-99.96202282546028,15517,1641 +15,2.2,0.011211866028193341,-99.9943940669859,17256,3759,0.07346375074383373,-99.96326812462809,14996,1687 +20,1.8,0.010177972068216252,-99.99491101396589,16657,3813,0.041379392242463335,-99.97931030387876,14523,1765 +8,3.0,0.037529843697168386,-99.98123507815141,18948,3467,0.030619960044026544,-99.98469001997799,16661,1580 +15,2.0,0.004790098785046004,-99.99760495060748,19085,3851,0.0250058198917987,-99.9874970900541,16699,1703 +10,2.5,0.020080566762398937,-99.9899597166188,20810,3675,0.02154161161844521,-99.98922919419078,18304,1622 +12,2.2,0.006198215965126392,-99.99690089201744,20863,3802,0.01569234833017946,-99.9921538258349,18304,1675 +8,2.8,0.00916331137620061,-99.9954183443119,21278,3593,0.013446224481937236,-99.99327688775904,18831,1590 +15,1.8,0.00195636598029706,-99.99902181700985,20986,3912,0.007973883235858103,-99.99601305838208,18506,1711 +12,2.0,0.0012611903383017201,-99.99936940483084,22983,3884,0.0049442565518793904,-99.99752787172406,20318,1667 +10,2.2,0.0015631498325544685,-99.99921842508373,24294,3843,0.004016982771284942,-99.99799150861436,21533,1619 +8,2.5,0.0015805889869186715,-99.99920970550654,25383,3778,0.00222758185497439,-99.99888620907251,22550,1619 +12,1.8,0.0003285760597477184,-99.99983571197012,25197,3969,0.0014253657508011418,-99.9992873171246,22474,1670 +10,2.0,0.00030181924086439277,-99.99984909037957,26744,3905,0.0007558609511890611,-99.9996220695244,23966,1645 +8,2.2,0.00022388168465948394,-99.99988805915767,29572,3888,0.000283647480462369,-99.99985817625976,26546,1608 +10,1.8,0.00010484354042229784,-99.9999475782298,29476,3949,0.00015541841539480644,-99.9999222907923,26481,1640 +8,2.0,3.0427493228289115e-05,-99.99998478625339,32549,3962,3.787843338427551e-05,-99.99998106078331,29334,1613 +8,1.8,5.318861339787151e-06,-99.99999734056934,35502,3981,6.1348022466747185e-06,-99.99999693259888,32157,1599 diff --git a/strategy/results/bb_5m_practical_upgrade_bandwidth_tune.csv b/strategy/results/bb_5m_practical_upgrade_bandwidth_tune.csv new file mode 100644 index 0000000..ae7f878 --- /dev/null +++ b/strategy/results/bb_5m_practical_upgrade_bandwidth_tune.csv @@ -0,0 +1,49 @@ +bb_period,bb_std,cooldown,min_bw,final,ret,trades,liq,win,dd,sharpe,fee,rebate +30,3.2,6,0.01,202.98777028457513,1.4938851422875672,2208,0,64.4927536231884,-2.2659000933991535,0.5747142550615898,4.492191078113778,4.042051704177064 +30,3.2,6,0.008,202.88007457111019,1.4400372855550927,2497,0,63.99679615538646,-2.3593132155964156,0.5474772340529435,5.077568757707738,4.568895760736814 +30,3.2,12,0.01,202.58279532236259,1.2913976611812927,2176,0,63.60294117647059,-2.590578505705281,0.49034397612249453,4.425821502882915,3.9823209224653042 +30,3.2,12,0.008,202.43724464440305,1.2186223222015258,2453,0,63.06563391765185,-2.6964621320131528,0.45661035313826664,4.984364752542757,4.4850138457153115 +30,3.2,6,0.005,202.2604553875168,1.1302276937583997,2848,0,63.55337078651685,-3.5097750900355322,0.4233881729734044,5.800483411417114,5.2195225693696905 +30,3.2,6,0.0,201.9035397473293,0.9517698736646452,2983,0,62.45390546429769,-3.6901419995414244,0.3554736578132862,6.071731305514356,5.463647284287156 +30,3.2,12,0.005,201.87948930618595,0.9397446530929727,2788,0,62.51793400286944,-3.7314549188814397,0.3459557408534809,5.673598716356395,5.1053271761221275 +30,3.2,24,0.008,201.81718023856013,0.9085901192800634,2321,0,60.83584661783714,-3.1850135601426643,0.3332848294762347,4.711163723354367,4.239135720345717 +40,3.2,24,0.008,201.7362421481199,0.8681210740599568,1762,0,61.80476730987514,-1.9330254703131686,0.33009880295284993,3.5617733962125127,3.2028717014335406 +30,3.2,24,0.01,201.69506662016363,0.8475333100818148,2071,0,61.41960405601159,-3.0289149936820934,0.31756756837299815,4.202969916048575,3.7817585189246183 +30,3.2,12,0.0,201.60362661159775,0.8018133057988733,2922,0,61.327857631759066,-3.88911319759859,0.2941026586132461,5.943783104874334,5.348494371558028 +30,3.0,6,0.01,201.5881617500534,0.7940808750266939,2543,0,63.429020841525755,-2.368575342977323,0.2998262616505584,5.151884495340698,4.633970942969105 +40,3.2,24,0.01,201.53527397642122,0.7676369882106115,1605,0,62.55451713395639,-1.9504615008019073,0.2907552932707512,3.2424316070919357,2.91546508291806 +30,3.0,6,0.008,201.359992187183,0.6799960935914982,2918,0,63.19396847155586,-2.027912276846223,0.2610014112678299,5.899172349883858,5.306536721796989 +30,3.0,12,0.01,201.3241380805589,0.662069040279448,2506,0,62.729449321628096,-2.8976334001800694,0.24838320050757742,5.080944389695803,4.570128417005312 +30,3.0,12,0.008,201.31165446949683,0.6558272347484149,2866,0,62.35170969993021,-2.494460658608773,0.24878271250544268,5.80043717869557,5.217675411997363 +30,3.0,24,0.01,201.26991592259085,0.6349579612954273,2368,0,61.02195945945946,-3.348407035056823,0.23124334375082511,4.807697212750294,4.324206690738638 +30,3.0,24,0.008,201.25444575369687,0.6272228768484354,2688,0,60.56547619047619,-3.1621600662850256,0.22981479221382087,5.449274512519768,4.901629784853851 +30,3.2,24,0.005,201.17465506334136,0.587327531670681,2627,0,60.22078416444614,-4.2867277356414775,0.21102822502134555,5.338402308340532,4.803653591872367 +40,3.2,6,0.008,201.0778775233752,0.5389387616876036,1853,0,63.680518078791145,-1.545875090009332,0.21018483710385255,3.730990845759943,3.3551758773915945 +40,3.2,24,0.005,201.05984222600543,0.5299211130027146,1924,0,61.018711018711016,-2.175922708147283,0.19495371215945767,3.885764208269912,3.494473381060668 +40,3.2,24,0.0,200.85259022124131,0.4262951106206571,1977,0,60.59686393525544,-2.2131317121589404,0.15572489459076294,3.9910079187965377,3.589195518538243 +40,3.2,6,0.01,200.74117229778386,0.3705861488919311,1680,0,63.988095238095234,-1.788489097899884,0.14388428114556331,3.3801026625472996,3.039379763592075 +40,3.2,6,0.005,200.6975214875542,0.3487607437771061,2038,0,63.297350343473994,-1.8348344987913379,0.1307282485158805,4.1020755008586685,3.689158017516957 +30,3.2,24,0.0,200.6742618681597,0.33713093407985184,2748,0,58.806404657933044,-4.526694095829043,0.12031876886338758,5.578810922296089,5.020023604160509 +40,3.2,12,0.008,200.65656048664087,0.32828024332043526,1824,0,62.88377192982456,-1.7544366504391178,0.12833478287726025,3.6720632612140545,3.3021471605391497 +30,3.0,6,0.005,200.51551216591736,0.2577560829586787,3377,0,62.51110453064851,-2.9778328420115088,0.09497684815116508,6.823545946251757,6.138485174444638 +40,3.2,6,0.0,200.44496962075274,0.2224848103763719,2097,0,62.994754411063425,-2.042148146654995,0.08158240969215196,4.218333320816779,3.79379346557969 +40,3.0,24,0.008,200.41889346236763,0.2094467311838173,2057,0,61.93485658726301,-2.473425069100074,0.07868630999290598,4.146171354749355,3.72884910922223 +30,3.0,12,0.005,200.35022974683667,0.17511487341833742,3300,0,61.36363636363637,-3.584345639913721,0.06306984952787358,6.672617704418062,6.002651107710117 +40,3.2,12,0.01,200.24642098781575,0.12321049390787665,1659,0,63.29113924050633,-2.2088172045713748,0.047913641900456855,3.3367725501172822,3.000389348021997 +40,3.2,12,0.005,200.22091496566105,0.11045748283052605,2002,0,62.38761238761239,-2.0783640787319086,0.03817994892546192,4.027940397396305,3.6224432772034887 +40,3.0,24,0.01,200.12568455038564,0.06284227519282126,1879,0,62.16072378924961,-2.6329610918170374,0.023564976494820568,3.787542396891309,3.4060828242510723 +40,3.0,6,0.008,200.0678037808892,0.03390189044459646,2194,0,63.947128532360985,-2.2038606611252476,0.01294800862092224,4.410398919734593,3.966658239689972 +30,3.0,6,0.0,200.00414940285927,0.002074701429634729,3569,0,61.58587839731017,-3.4138707553280483,-0.0006647490253754809,7.204083538326778,6.4809759087145915 +40,3.2,12,0.0,199.9609691102816,-0.019515444859194986,2060,0,61.99029126213592,-2.293284464503728,-0.012281258667209633,4.142089182262913,3.725180692979831 +30,3.0,12,0.0,199.86477350989745,-0.06761324505127675,3488,0,60.321100917431195,-3.9479783254082292,-0.026217988255613115,7.044972103443261,6.337776620729888 +30,3.0,24,0.005,199.8322173667805,-0.08389131660975124,3078,0,59.25925925925925,-4.517336088935309,-0.031095706303734948,6.227919385867038,5.602429614435114 +40,3.0,24,0.005,199.5939851399495,-0.20300743002525223,2287,0,60.690861390467866,-3.1641220863467083,-0.07962941557219835,4.605201690819581,4.141987512861499 +40,3.0,12,0.008,199.5739264063975,-0.21303679680124785,2148,0,63.17504655493482,-2.615052284973501,-0.08139777980329083,4.316235063292179,3.8819178516682813 +40,3.0,6,0.01,199.4783021660671,-0.2608489169664523,1988,0,63.581488933601605,-2.6165649578562693,-0.09950203972642017,3.991524078241081,3.5896750888907443 +40,3.0,24,0.0,199.34357556785355,-0.3282122160732257,2360,0,60.21186440677966,-3.3377613611040715,-0.1256995824626251,4.74929125388248,4.271670892552751 +30,3.0,24,0.0,199.30001953765344,-0.34999023117327965,3243,0,58.125192722787546,-4.896971344439777,-0.12506755033132605,6.553042403347132,5.89504751509868 +40,3.0,12,0.01,199.12086527405495,-0.4395673629725252,1956,0,62.985685071574636,-2.934702029502688,-0.16766517034426934,3.9282781540179963,3.532758588982499 +40,3.0,6,0.005,199.01319225044602,-0.49340387477698755,2458,0,62.9780309194467,-3.206770049240731,-0.19188065769564314,4.932566481122759,4.436623248761567 +40,3.0,6,0.0,198.65444873410513,-0.6727756329474346,2539,0,62.46553761323356,-3.483785802636902,-0.25943426479073867,5.091061673108702,4.579273159284268 +40,3.0,12,0.005,198.53430497909721,-0.7328475104513927,2400,0,62.041666666666664,-3.6063962830445178,-0.2822792363382157,4.814513695479092,4.33038262002996 +40,3.0,12,0.0,198.16460271518014,-0.9176986424099312,2480,0,61.41129032258065,-3.8946055152910333,-0.35154409034010436,4.970878228218944,4.47111508616677 diff --git a/strategy/results/bb_5m_practical_upgrade_candidates.csv b/strategy/results/bb_5m_practical_upgrade_candidates.csv new file mode 100644 index 0000000..ea08e2b --- /dev/null +++ b/strategy/results/bb_5m_practical_upgrade_candidates.csv @@ -0,0 +1,9 @@ +name,bb_period,bb_std,lev,trend_ema,cooldown_bars,stop_loss,take_profit,final,ret,trades,liq,win,dd,sharpe,fee,rebate +D_trend288_cd12,30,3.0,1,288.0,12,0.0,0.0,199.86477350989745,-0.06761324505127675,3488,0,60.321100917431195,-3.9479783254082292,-0.026217988255613115,7.044972103443261,6.337776620729888 +B_trend288,30,3.0,1,288.0,0,0.0,0.0,199.7540264365565,-0.1229867817217496,3668,0,62.05016357688113,-3.996173585769327,-0.046036770219455056,7.41289979748533,6.668913917641575 +C_trend576,30,3.0,1,576.0,0,0.0,0.0,199.20628338025136,-0.39685830987431814,4143,0,61.18754525706011,-4.6188391069942725,-0.14008705265439372,8.355454097286774,7.515422312937967 +E_trend288_cd12_sl12_tp15,30,3.0,1,288.0,12,0.012,0.015,195.3494628170402,-2.3252685914798974,3710,0,52.129380053908356,-4.882606479135802,-1.4756369432482566,7.362551062011999,6.62365864234843 +F_trend288_cd6_sl10_tp20,30,3.0,1,288.0,6,0.01,0.02,195.3050328845755,-2.347483557712252,3796,0,48.840885142255004,-5.078860622065719,-1.5321092835282057,7.536365316666955,6.7800929289619924 +H_bb20_30_trend576_cd12,20,3.0,1,576.0,12,0.01,0.015,189.48915432155357,-5.255422839223215,6395,0,49.1164972634871,-10.60519250897687,-2.8074280977201473,12.531119081963354,11.272889176910006 +G_bb20_28_trend288_cd12,20,2.8,1,288.0,12,0.012,0.015,189.04763867132164,-5.476180664339182,6479,0,52.106806605957715,-11.116408258934996,-2.9900816266006194,12.667135948143327,11.395318795619543 +A_base_no_filter,30,3.0,1,,0,0.0,0.0,187.87751952363539,-6.061240238182307,8669,0,61.62187103472142,-12.334791284875877,-1.4020222751730407,16.98060303079724,15.274934432023217 diff --git a/strategy/results/bb_5m_practical_upgrade_daily.csv b/strategy/results/bb_5m_practical_upgrade_daily.csv new file mode 100644 index 0000000..571a634 --- /dev/null +++ b/strategy/results/bb_5m_practical_upgrade_daily.csv @@ -0,0 +1,2193 @@ +datetime,baseline_equity,baseline_pnl,practical_equity,practical_pnl +2020-01-01,200.00538481007405,0.0,199.98341590878067,0.0 +2020-01-02,199.9854011199522,-0.01998369012184753,199.93099099804863,-0.05242491073204292 +2020-01-03,199.988173765044,0.0027726450917953116,200.01176306314673,0.08077206509810253 +2020-01-04,199.99496507427756,0.00679130923356297,200.01627024481874,0.004507181672011029 +2020-01-05,199.91903115464268,-0.07593391963487761,200.02226985248987,0.005999607671128615 +2020-01-06,199.84120362291932,-0.07782753172335788,200.05598780442776,0.03371795193788785 +2020-01-07,199.9232125546184,0.08200893169907886,200.0789382427318,0.022950438304036425 +2020-01-08,199.9104822763185,-0.012730278299898146,200.07658400517857,-0.002354237553220173 +2020-01-09,199.89274789374772,-0.017734382570779417,200.08944153232574,0.012857527147161818 +2020-01-10,199.87099435766746,-0.021753536080268532,200.07688397561552,-0.012557556710220297 +2020-01-11,199.96500235631356,0.09400799864610576,200.1060887916215,0.029204816005972134 +2020-01-12,199.98175795462146,0.016755598307895525,200.10970319498674,0.0036144033652476537 +2020-01-13,200.02202775826666,0.04026980364520227,200.10970319498674,0.0 +2020-01-14,199.85571842519917,-0.1663093330674883,200.16309216595755,0.05338897097081485 +2020-01-15,199.82433911649744,-0.031379308701730224,200.15082789244556,-0.012264273511988222 +2020-01-16,199.90369290250493,0.07935378600748777,200.1544262309176,0.0035983384720452705 +2020-01-17,199.9540186253632,0.05032572285827541,200.28187697059937,0.12745073968176257 +2020-01-18,199.87364233338602,-0.08037629197718843,200.27143586528192,-0.010441105317454458 +2020-01-19,199.78963222651035,-0.08401010687566668,200.17203806862852,-0.09939779665339188 +2020-01-20,199.8459636496381,0.05633142312774453,200.19909056561457,0.027052496986044616 +2020-01-21,199.86110644095294,0.015142791314843862,200.21756519063013,0.018474625015556967 +2020-01-22,199.88417859815453,0.02307215720159661,200.20614965180386,-0.011415538826270222 +2020-01-23,199.88203209838383,-0.0021464997707028033,200.23363701741596,0.027487365612103076 +2020-01-24,199.85213834373837,-0.029893754645456738,200.20523260940703,-0.02840440800892452 +2020-01-25,199.84029595796375,-0.011842385774627928,200.17395716823367,-0.03127544117336356 +2020-01-26,199.78562595195203,-0.0546700060117189,200.1818676874913,0.007910519257620763 +2020-01-27,199.75123964168884,-0.03438631026318717,200.17876026681822,-0.003107420673075012 +2020-01-28,199.72666071359586,-0.024578928092978458,200.20906358770915,0.030303320890936902 +2020-01-29,199.71682607300045,-0.009834640595414612,200.18039320525503,-0.028670382454123455 +2020-01-30,199.60252725011196,-0.11429882288848603,200.20210325826088,0.021710053005847385 +2020-01-31,199.59034793768356,-0.01217931242840109,200.17576378695819,-0.02633947130269121 +2020-02-01,199.6562716678315,0.06592373014794362,200.18708617406526,0.011322387107071563 +2020-02-02,199.57754462510027,-0.07872704273123077,200.06876553698666,-0.11832063707859675 +2020-02-03,199.64643426534835,0.06888964024807365,200.09225208503128,0.02348654804461603 +2020-02-04,199.63901519768174,-0.007419067666603496,200.0704622897077,-0.021789795323570615 +2020-02-05,199.48526243364103,-0.1537527640407177,199.90973715587535,-0.16072513383235787 +2020-02-06,199.51097442505787,0.02571199141684133,199.96967930648657,0.05994215061122077 +2020-02-07,199.51606643523428,0.005092010176412032,200.03203918937302,0.06235988288645444 +2020-02-08,199.4907161310275,-0.02535030420676776,200.02626945333287,-0.005769736040150519 +2020-02-09,199.48990202917233,-0.0008141018551839352,200.05149716893462,0.025227715601744194 +2020-02-10,199.4718661785536,-0.018035850618730365,200.01053477028307,-0.04096239865154416 +2020-02-11,199.39779060875375,-0.0740755697998452,200.03621567462463,0.025680904341555788 +2020-02-12,199.3507624767721,-0.0470281319816479,200.1122648175437,0.07604914291906084 +2020-02-13,199.43741604037015,0.08665356359804832,200.15547425174853,0.043209434204840136 +2020-02-14,199.36763082242305,-0.06978521794709991,200.18335251620834,0.027878264459815227 +2020-02-15,199.3182462495174,-0.04938457290566589,200.0856637825015,-0.09768873370683195 +2020-02-16,199.2508810954656,-0.06736515405179944,200.0153143076083,-0.07034947489322008 +2020-02-17,199.17492965943006,-0.07595143603552401,200.0025137607879,-0.012800546820386671 +2020-02-18,199.15144562413994,-0.02348403529012444,200.0578924504324,0.05537868964449899 +2020-02-19,199.06272829872364,-0.0887173254162974,200.05143631271633,-0.006456137716071453 +2020-02-20,199.10746616098393,0.044737862260291195,200.10275073120687,0.05131441849053431 +2020-02-21,199.28693921991797,0.1794730589340361,200.1802689499232,0.07751821871633524 +2020-02-22,199.31580916216882,0.028869942250850045,200.17493448336876,-0.0053344665544443615 +2020-02-23,199.2720164040289,-0.04379275813991512,200.20363501285647,0.028700529487707627 +2020-02-24,199.30097350694797,0.02895710291906539,200.20544961371405,0.0018146008575854466 +2020-02-25,199.28592702479895,-0.015046482149017493,200.20544961371405,0.0 +2020-02-26,199.2564114335049,-0.02951559129405723,200.2649749613271,0.05952534761306083 +2020-02-27,199.12046288915272,-0.13594854435217485,200.12483214008583,-0.14014282124128385 +2020-02-28,199.1641116125586,0.04364872340588022,200.1210068309781,-0.003825309107725161 +2020-02-29,199.08369280127013,-0.0804188112884674,200.12188223968477,0.0008754087066620286 +2020-03-01,199.1867123388207,0.1030195375505798,200.11877782448894,-0.003104415195821275 +2020-03-02,199.15654509722813,-0.03016724159257933,200.11012071434692,-0.008657110142024749 +2020-03-03,199.08978552489998,-0.06675957232815222,200.04207280782254,-0.06804790652438442 +2020-03-04,199.15540969831693,0.06562417341694982,200.09099607366474,0.04892326584220541 +2020-03-05,199.09367777467617,-0.06173192364076385,200.0718454291072,-0.01915064455752713 +2020-03-06,199.0653691963137,-0.028308578362469916,200.12881127349652,0.056965844389310405 +2020-03-07,199.21146791217757,0.14609871586387158,200.18602079440078,0.057209520904251576 +2020-03-08,198.97156850207236,-0.23989941010520965,200.21293826859588,0.02691747419510193 +2020-03-09,198.97649010539888,0.004921603326522472,200.21381646329553,0.0008781946996521128 +2020-03-10,199.00165386865402,0.025163763255136473,200.21381646329553,0.0 +2020-03-11,198.92468809195225,-0.07696577670176907,200.21381646329553,0.0 +2020-03-12,198.22744882203466,-0.6972392699175884,200.3678476174462,0.15403115415065827 +2020-03-13,198.18762198518996,-0.039826836844696345,200.1283887761047,-0.23945884134147377 +2020-03-14,198.2676658744222,0.08004388923222905,200.24404334711429,0.11565457100957133 +2020-03-15,198.35655066257416,0.08888478815197232,200.24471059554403,0.0006672484297496339 +2020-03-16,198.08449508782968,-0.27205557474448483,200.17319754574365,-0.07151304980038731 +2020-03-17,198.4426454867055,0.35815039887580724,200.23302387861168,0.05982633286802752 +2020-03-18,198.54911653250048,0.10647104579499,200.2917932639659,0.05876938535422482 +2020-03-19,198.26034068350964,-0.28877584899083786,200.2954123557742,0.003619091808303665 +2020-03-20,198.10271838479858,-0.15762229871106115,200.2555428191537,-0.03986953662050041 +2020-03-21,198.2553258053725,0.15260742057392918,200.33928031337706,0.08373749422335663 +2020-03-22,198.34055757558755,0.0852317702150458,200.43009571169904,0.09081539832197905 +2020-03-23,198.27890993474242,-0.06164764084513763,200.40393350239933,-0.026162209299712913 +2020-03-24,198.33245069203502,0.05354075729260899,200.48239887301585,0.07846537061652725 +2020-03-25,198.4444547839091,0.1120040918740699,200.48604185054467,0.0036429775288127075 +2020-03-26,198.4630213629233,0.018566579014219542,200.48604185054467,0.0 +2020-03-27,198.43507034213425,-0.027951020789060976,200.3982663861472,-0.08777546439745265 +2020-03-28,198.47880855959417,0.043738217459917905,200.4032958152219,0.005029429074681957 +2020-03-29,198.47646992723824,-0.0023386323559293487,200.42680654262304,0.02351072740114546 +2020-03-30,198.41130393277552,-0.06516599446271698,200.32415488150684,-0.10265166111619806 +2020-03-31,198.51896685200094,0.10766291922541882,200.33485886711355,0.010703985606710376 +2020-04-01,198.4306578112041,-0.08830904079684387,200.2585050053286,-0.07635386178495196 +2020-04-02,198.42055958751186,-0.010098223692239117,200.27729464473504,0.0187896394064353 +2020-04-03,198.33335980626015,-0.08719978125171224,200.23464896524249,-0.04264567949255138 +2020-04-04,198.4252350142558,0.09187520799565618,200.25626719076973,0.02161822552724857 +2020-04-05,198.4391463700142,0.013911355758409627,200.25896123009778,0.0026940393280483477 +2020-04-06,198.22415629667543,-0.2149900733387824,200.31514303224318,0.056181802145403026 +2020-04-07,198.22611115941118,0.0019548627357437454,200.2387727142451,-0.07637031799808369 +2020-04-08,198.2277999203677,0.0016887609565117145,200.2501792115036,0.0114064972584913 +2020-04-09,198.25354629355917,0.025746373191481098,200.26071821786337,0.010539006359778114 +2020-04-10,198.16180549698254,-0.09174079657663015,200.28288543259552,0.022167214732149887 +2020-04-11,198.08263345257996,-0.07917204440258274,200.25753152446418,-0.02535390813133631 +2020-04-12,198.005148707849,-0.07748474473095257,200.22015250929377,-0.03737901517041564 +2020-04-13,197.90723975045248,-0.09790895739652683,200.1166136953903,-0.10353881390346942 +2020-04-14,197.91670682968694,0.009467079234468656,200.13811335478766,0.021499659397363757 +2020-04-15,197.88460970422759,-0.03209712545935872,200.14083809079523,0.002724736007564843 +2020-04-16,197.67116988540647,-0.21343981882111507,199.90374755561237,-0.23709053518285828 +2020-04-17,197.7521664764794,0.08099659107293178,199.91494885070293,0.011201295090558006 +2020-04-18,197.5969161083815,-0.15525036809791004,199.93894772961204,0.023998878909111454 +2020-04-19,197.64885904771162,0.051942939330132276,199.91453891676642,-0.02440881284562124 +2020-04-20,197.57923366093996,-0.06962538677166208,199.91632747953193,0.0017885627655118697 +2020-04-21,197.6591866157312,0.07995295479122433,199.9489994071793,0.032671927647356824 +2020-04-22,197.58219662391036,-0.07698999182082389,199.95258149994305,0.0035820927637644218 +2020-04-23,197.51244363676798,-0.06975298714237965,199.9532251721069,0.0006436721638465315 +2020-04-24,197.55822228145914,0.04577864469115411,199.98519797987348,0.031972807766578626 +2020-04-25,197.56187566386336,0.0036533824042237484,199.99195420746034,0.006756227586862451 +2020-04-26,197.53363106455305,-0.028244599310312424,200.01098536586542,0.019031158405084625 +2020-04-27,197.52081860592975,-0.012812458623301382,200.0136978808769,0.002712515011467076 +2020-04-28,197.6060540253704,0.08523541944066437,200.0136978808769,0.0 +2020-04-29,197.44234697999755,-0.16370704537285974,200.0225174999842,0.008819619107299559 +2020-04-30,197.3176089236272,-0.1247380563703473,199.9170854056675,-0.10543209431668288 +2020-05-01,197.39561585951233,0.07800693588512786,199.96276991495978,0.04568450929227197 +2020-05-02,197.4753341668023,0.07971830728996565,200.0016074170643,0.03883750210451353 +2020-05-03,197.40611186282698,-0.06922230397532303,199.94199926523785,-0.059608151826438416 +2020-05-04,197.32743239939094,-0.07867946343603194,199.94173283654374,-0.0002664286941183036 +2020-05-05,197.36981163843,0.04237923903906449,199.97915951101783,0.03742667447409076 +2020-05-06,197.35712473208926,-0.012686906340746873,199.91568511019364,-0.06347440082419098 +2020-05-07,197.4643692814433,0.10724454935404992,200.00364132428015,0.08795621408651755 +2020-05-08,197.45912390931747,-0.005245372125841641,200.01928170302074,0.015640378740584993 +2020-05-09,197.47809509927913,0.01897118996166114,200.04373691786324,0.024455214842504347 +2020-05-10,197.17286537149658,-0.305229727782546,200.04131519383225,-0.002421724030995165 +2020-05-11,197.27015242691,0.09728705541340332,200.04560569067252,0.004290496840269498 +2020-05-12,197.33436698414388,0.06421455723389613,200.03907403499372,-0.006531655678799098 +2020-05-13,197.25949955080353,-0.0748674333403585,200.05425646215528,0.015182427161562373 +2020-05-14,197.41733885148,0.15783930067647134,200.09160633702157,0.03734987486629393 +2020-05-15,197.39437678178302,-0.02296206969697323,200.07517522219683,-0.01643111482474069 +2020-05-16,197.46192565848781,0.06754887670479093,200.0753342333929,0.0001590111960751983 +2020-05-17,197.46591726048578,0.003991601997967109,200.10514494742603,0.029810714033118302 +2020-05-18,197.42900319626662,-0.03691406421916099,200.09407053222182,-0.011074415204205934 +2020-05-19,197.44456929416415,0.015566097897533382,200.09883083013,0.0047602979081773356 +2020-05-20,197.46328088377223,0.018711589608074064,200.11352758235674,0.014696752226740273 +2020-05-21,197.3853077715914,-0.07797311218081404,200.12729257329806,0.01376499094132555 +2020-05-22,197.36318965344813,-0.022118118143282572,200.10685575976373,-0.020436813534331577 +2020-05-23,197.40046345694924,0.037273803501108205,200.12493028611735,0.018074526353615283 +2020-05-24,197.34144686470623,-0.0590165922430117,200.12597992664075,0.0010496405234050599 +2020-05-25,197.40847559927673,0.06702873457049918,200.12515354008212,-0.0008263865586286556 +2020-05-26,197.4143653076966,0.005889708419886119,200.12695497171683,0.0018014316347034764 +2020-05-27,197.3836319182066,-0.03073338949002391,200.12695497171683,0.0 +2020-05-28,197.3272789690468,-0.05635294915978761,200.1534230806419,0.026468108925058687 +2020-05-29,197.39981465127894,0.07253568223214302,200.20963717615837,0.05621409551648071 +2020-05-30,197.3056424263519,-0.09417222492703559,200.26635926952417,0.05672209336580636 +2020-05-31,197.3854162286709,0.07977380231898223,200.25718916200012,-0.009170107524056448 +2020-06-01,197.39551919611432,0.010102967443430089,200.28145391785455,0.024264755854431996 +2020-06-02,197.53271518331383,0.13719598719950454,200.2733591806815,-0.00809473717305309 +2020-06-03,197.56390530016205,0.03119011684822226,200.29006551746167,0.016706336780174524 +2020-06-04,197.52830363948507,-0.035601660676974234,200.2542608530176,-0.03580466444407193 +2020-06-05,197.53816975416848,0.009866114683404703,200.2902218826718,0.035961029654203 +2020-06-06,197.5755885158344,0.03741876166591851,200.27286397503562,-0.017357907636181835 +2020-06-07,197.52536955637177,-0.05021895946262589,200.2309056148496,-0.0419583601860154 +2020-06-08,197.50517341209542,-0.020196144276354744,200.24933854081831,0.01843292596871038 +2020-06-09,197.58464009603784,0.07946668394242806,200.25025624949757,0.0009177086792533373 +2020-06-10,197.56067912764738,-0.023960968390468906,200.25025624949757,0.0 +2020-06-11,197.4212569973065,-0.13942213034087558,200.1163566244831,-0.13389962501446462 +2020-06-12,197.46736747935026,0.04611048204375834,200.14299346930437,0.026636844821268824 +2020-06-13,197.48981681587884,0.022449336528580943,200.14565362034182,0.0026601510374462123 +2020-06-14,197.470164767778,-0.01965204810085197,200.14565362034182,0.0 +2020-06-15,197.41886769109448,-0.05129707668351102,200.1470378245052,0.0013842041633722602 +2020-06-16,197.41671769347371,-0.0021499976207621785,200.17002650781708,0.022988683311893965 +2020-06-17,197.42041116528284,0.0036934718091288232,200.16455775011488,-0.005468757702203675 +2020-06-18,197.4484516661726,0.028040500889744635,200.16635652170805,0.0017987715931724324 +2020-06-19,197.50432610546812,0.05587443929553615,200.16635652170805,0.0 +2020-06-20,197.49115829961517,-0.013167805852958736,200.16635652170805,0.0 +2020-06-21,197.47376631575415,-0.01739198386101748,200.16635652170805,0.0 +2020-06-22,197.42729740080446,-0.04646891494968486,200.18802126694013,0.021664745232072846 +2020-06-23,197.45232628102553,0.02502888022107186,200.20838682373062,0.020365556790494566 +2020-06-24,197.36957125968055,-0.0827550213449797,200.22926430871775,0.020877484987124717 +2020-06-25,197.40342414032622,0.03385288064566794,200.23080897499412,0.0015446662763736185 +2020-06-26,197.44395285044408,0.040528710117854416,200.2475712704764,0.016762295482294576 +2020-06-27,197.3941496950749,-0.04980315536917601,200.2493657340989,0.0017944636224740407 +2020-06-28,197.36693945980144,-0.027210235273457783,200.2184508921218,-0.030914841977079277 +2020-06-29,197.36140720798448,-0.005532251816958933,200.22679793799503,0.008347045873222214 +2020-06-30,197.4073605732013,0.04595336521680338,200.22012417152192,-0.006673766473113574 +2020-07-01,197.37068686415662,-0.03667370904466338,200.23865239789208,0.018528226370165157 +2020-07-02,197.43812555254254,0.06743868838591993,200.24548357147177,0.006831173579683991 +2020-07-03,197.50581057239864,0.06768501985609987,200.2548812390339,0.009397667562126344 +2020-07-04,197.49350315307612,-0.012307419322524993,200.22899286665836,-0.02588837237553321 +2020-07-05,197.4932772642727,-0.0002258888034134543,200.22547012513235,-0.003522741526012396 +2020-07-06,197.40552794136536,-0.08774932290734228,200.22817376312165,0.002703637989299068 +2020-07-07,197.451172851661,0.045644910295635555,200.23117349083606,0.002999727714410483 +2020-07-08,197.41648104499197,-0.03469180666903071,200.24374295134777,0.01256946051171326 +2020-07-09,197.39775798445672,-0.01872306053525108,200.25179398989133,0.008051038543555933 +2020-07-10,197.38994530823132,-0.007812676225398718,200.24024396771566,-0.011550022175669028 +2020-07-11,197.44649463349822,0.05654932526690004,200.2652006717136,0.024956703997929708 +2020-07-12,197.49694440336435,0.05044976986613392,200.23928210409662,-0.025918567616969312 +2020-07-13,197.46819554030395,-0.028748863060400254,200.2107671653192,-0.02851493877741973 +2020-07-14,197.48776164363073,0.019566103326781104,200.21933690644474,0.008569741125540986 +2020-07-15,197.47804200016614,-0.009719643464592309,200.22022932994105,0.0008924234963103572 +2020-07-16,197.4222222817819,-0.05581971838424238,200.2110879928978,-0.009141337043246267 +2020-07-17,197.45078640999864,0.028564128216743256,200.22168687753773,0.010598884639932749 +2020-07-18,197.4335896581239,-0.017196751874735128,200.22258671770368,0.0008998401659425781 +2020-07-19,197.40856981191223,-0.025019846211677077,200.22258671770368,0.0 +2020-07-20,197.42275123239946,0.014181420487233254,200.20627429121012,-0.01631242649355613 +2020-07-21,197.3642620749414,-0.058489157458069485,200.22654936930536,0.02027507809523854 +2020-07-22,197.25836777440156,-0.10589430053983051,200.22745265082966,0.0009032815243017467 +2020-07-23,197.25103021503588,-0.00733755936568059,200.25814302323363,0.030690372403967103 +2020-07-24,197.25489891768035,0.003868702644467703,200.2367341039654,-0.02140891926822519 +2020-07-25,197.09870512766503,-0.15619379001532252,200.27620578935986,0.03947168539446011 +2020-07-26,197.20279851042145,0.10409338275641744,200.3125318824856,0.03632609312572299 +2020-07-27,197.2167696285328,0.013971118111356873,200.35298231051834,0.04045042803275578 +2020-07-28,197.31128630985333,0.0945166813205276,200.35660662536353,0.0036243148451831075 +2020-07-29,197.35800610742467,0.046719797571341815,200.37086636877254,0.014259743409013481 +2020-07-30,197.31832117803353,-0.03968492939114299,200.37267690038252,0.0018105316099763513 +2020-07-31,197.31513913609606,-0.003182041937463964,200.4361840253372,0.06350712495469679 +2020-08-01,197.24801831290807,-0.06712082318799162,200.5165752346674,0.08039120933020172 +2020-08-02,197.1960143983052,-0.05200391460286369,200.40888394860832,-0.10769128605909373 +2020-08-03,197.21399122944192,0.017976831136707005,200.44044888962247,0.03156494101415319 +2020-08-04,197.27243175882245,0.058440529380533235,200.49482370060343,0.054374810980959865 +2020-08-05,197.29595542428928,0.023523665466825605,200.5339462985378,0.03912259793438011 +2020-08-06,197.29224015392714,-0.003715270362135925,200.52738207599603,-0.006564222541783238 +2020-08-07,197.24864608636395,-0.043594067563191174,200.5437239488935,0.016341872897470466 +2020-08-08,197.2505589491059,0.0019128627419604527,200.52714278579498,-0.016581163098521756 +2020-08-09,197.2698181960423,0.019259246936400132,200.53794957547473,0.010806789679747908 +2020-08-10,197.29289154163794,0.02307334559563401,200.5485742928568,0.010624717382086146 +2020-08-11,197.2443717892768,-0.048519752361130486,200.49101835742,-0.0575559354368238 +2020-08-12,197.27000743477868,0.0256356455018647,200.52864812278997,0.03762976536998508 +2020-08-13,197.1060912398509,-0.163916194927765,200.54640191024728,0.017753787457309045 +2020-08-14,197.17342900851483,0.0673377686639185,200.6117030686317,0.06530115838441475 +2020-08-15,197.16514527919685,-0.008283729317980715,200.60179780167547,-0.009905266956224068 +2020-08-16,197.16243556185023,-0.002709717346618845,200.604499620582,0.0027018189065302067 +2020-08-17,197.10529004446292,-0.057145517387311884,200.57548318947264,-0.029016431109369023 +2020-08-18,197.0753675746951,-0.029922469767825532,200.55473238288562,-0.020750806587017223 +2020-08-19,197.01070037603355,-0.0646671986615388,200.55741468057505,0.002682297689432289 +2020-08-20,197.06804543209986,0.05734505606631046,200.55741468057505,0.0 +2020-08-21,197.0116637133882,-0.05638171871166264,200.55741468057505,0.0 +2020-08-22,197.02130045713926,0.009636743751059385,200.56333609455973,0.005921413984680157 +2020-08-23,197.07899368559399,0.05769322845472402,200.58256884248385,0.01923274792412144 +2020-08-24,197.03064094550618,-0.04835274008780743,200.5890114473004,0.006442604816555786 +2020-08-25,197.01181929942427,-0.01882164608190351,200.61901089820526,0.02999945090485312 +2020-08-26,197.13668899793734,0.1248696985130664,200.65554736926376,0.036536471058497 +2020-08-27,197.24977257185844,0.11308357392110224,200.65823812764802,0.0026907583842614713 +2020-08-28,197.3122430717002,0.06247049984176556,200.6964381054205,0.03819997777247863 +2020-08-29,197.25434314075483,-0.05789993094538204,200.68733757263973,-0.009100532780763615 +2020-08-30,197.2411354409956,-0.013207699759220759,200.72858215771228,0.04124458507254758 +2020-08-31,197.285979432057,0.04484399106138426,200.7361774282599,0.007595270547625432 +2020-09-01,197.1916282275699,-0.0943512044870829,200.78058810662236,0.04441067836245338 +2020-09-02,197.1704088496195,-0.021219377950416174,200.78972278678316,0.009134680160798325 +2020-09-03,197.0687037970489,-0.10170505257059403,200.79062592992966,0.0009031431465018613 +2020-09-04,197.18221266497451,0.1135088679256171,200.8017534155683,0.011127485638638746 +2020-09-05,197.02431684802664,-0.15789581694787103,200.80536084649526,0.0036074309269622518 +2020-09-06,197.2649661037965,0.24064925576985274,200.72449837191422,-0.08086247458103912 +2020-09-07,197.3058992954678,0.04093319167131426,200.76017256863713,0.03567419672290839 +2020-09-08,197.49392494359086,0.18802564812304468,200.84984246884778,0.08966990021065158 +2020-09-09,197.46381862283025,-0.03010632076060915,200.8466091190715,-0.0032333497762806473 +2020-09-10,197.5616899647554,0.09787134192515623,200.9407852478935,0.09417612882199933 +2020-09-11,197.655044568953,0.09335460419760011,200.96324219005217,0.022456942158669335 +2020-09-12,197.7554171269327,0.10037255797971056,200.97515308078064,0.011910890728472623 +2020-09-13,197.63810271688683,-0.1173144100458785,200.85653810294522,-0.11861497783542063 +2020-09-14,197.7786360048926,0.14053328800576992,200.89469124081867,0.03815313787345076 +2020-09-15,197.85156787754445,0.07293187265184997,200.92134818081522,0.02665693999654195 +2020-09-16,197.8743624920395,0.022794614495040832,200.94016516052864,0.01881697971342078 +2020-09-17,197.8224224171966,-0.05194007484288932,200.98335497072168,0.04318981019304147 +2020-09-18,197.79126100847785,-0.031161408718759276,200.9529553361501,-0.030399634571580236 +2020-09-19,197.82827178822293,0.037010779745088485,200.98430333520866,0.031347999058567666 +2020-09-20,197.76418705504253,-0.0640847331804082,200.98520196442618,0.0008986292175166 +2020-09-21,197.60167581749346,-0.1625112375490687,200.9914936465671,0.006291682140926014 +2020-09-22,197.6754077253348,0.07373190784133499,201.03041778355154,0.0389241369844342 +2020-09-23,197.5908194669891,-0.08458825834568984,201.04666098116363,0.01624319761208426 +2020-09-24,197.47317230640465,-0.11764716058445401,200.89933622618076,-0.14732475498286135 +2020-09-25,197.46455868672584,-0.008613619678811801,200.89924153847426,-9.468770650755687e-05 +2020-09-26,197.4932501779192,0.028691491193370666,200.92271612214063,0.023474583666370563 +2020-09-27,197.43916899617903,-0.05408118174017318,200.8950531976566,-0.027662924484019413 +2020-09-28,197.40020608165665,-0.03896291452238643,200.858890681466,-0.036162516190614724 +2020-09-29,197.41792637290038,0.017720291243733755,200.85929643455236,0.00040575308636903173 +2020-09-30,197.4392856218887,0.021359248988318313,200.86199281550864,0.002696380956280109 +2020-10-01,197.36702851804836,-0.072257103840343,200.79022770563301,-0.07176510987562779 +2020-10-02,197.36267278117913,-0.0043557368692290765,200.71173415269402,-0.07849355293899407 +2020-10-03,197.33886521418378,-0.023807566995344587,200.71163215553176,-0.00010199716226111377 +2020-10-04,197.35988490410648,0.02101968992269576,200.71254473152112,0.0009125759893606755 +2020-10-05,197.36878200361028,0.008897099503798245,200.70876038267397,-0.003784348847148067 +2020-10-06,197.37600919922724,0.007227195616962945,200.71056599542595,0.0018056127519798792 +2020-10-07,197.3750579309361,-0.0009512682911463344,200.71429923563022,0.00373324020426935 +2020-10-08,197.31350223970435,-0.06155569123174587,200.6403454568016,-0.07395377882860998 +2020-10-09,197.2728639141166,-0.040638325587735835,200.67677613541545,0.03643067861383997 +2020-10-10,197.24501251389435,-0.027851400222260736,200.66631679023232,-0.010459345183136293 +2020-10-11,197.26266980717756,0.01765729328320731,200.69298909707345,0.026672306841135196 +2020-10-12,197.20922113314367,-0.053448674033887755,200.69389764240384,0.0009085453303896429 +2020-10-13,197.26973638793996,0.060515254796285944,200.70896982756528,0.015072185161443485 +2020-10-14,197.32308208107838,0.05334569313842508,200.71078376209465,0.001813934529366179 +2020-10-15,197.3474426148653,0.02436053378690417,200.6959321137871,-0.014851648307541154 +2020-10-16,197.35196355216692,0.004520937301634831,200.70933492109245,0.013402807305340048 +2020-10-17,197.37970206697884,0.027738514811915138,200.70834416814037,-0.0009907529520774006 +2020-10-18,197.372132176142,-0.0075698908368337925,200.6545076285614,-0.053836539578981046 +2020-10-19,197.36609493817755,-0.006037237964449105,200.68532529108091,0.030817662519524447 +2020-10-20,197.42614755307565,0.060052614898097545,200.65089762643663,-0.034427664644283595 +2020-10-21,197.34744116074899,-0.07870639232666576,200.51936331251366,-0.13153431392296966 +2020-10-22,197.38349672982451,0.03605556907552909,200.54041130525974,0.021047992746076716 +2020-10-23,197.39244220381903,0.008945473994515396,200.52893876870473,-0.011472536555004353 +2020-10-24,197.41632667813676,0.023884474317725335,200.54067453430864,0.011735765603901882 +2020-10-25,197.45827936602126,0.04195268788450335,200.54518224829997,0.00450771399133032 +2020-10-26,197.39907749938482,-0.059201866636442446,200.54518224829997,0.0 +2020-10-27,197.3628919291978,-0.036185570187029725,200.52868159773948,-0.016500650560487884 +2020-10-28,197.30659702054285,-0.056294908654933806,200.45354236164368,-0.07513923609579365 +2020-10-29,197.31786514937352,0.011268128830664637,200.46127093864484,0.00772857700115992 +2020-10-30,197.31111089667863,-0.0067542526948898285,200.46217283605338,0.0009018974085392983 +2020-10-31,197.3182049581402,0.00709406146157221,200.44733623002804,-0.01483660602534087 +2020-11-01,197.3110497058715,-0.007155252268688628,200.4631349563882,0.015798726360145565 +2020-11-02,197.25501792124686,-0.05603178462465053,200.41255211553863,-0.05058284084955744 +2020-11-03,197.2003855171403,-0.05463240410657022,200.39170519489932,-0.020846920639314703 +2020-11-04,197.20428300549978,0.0038974883594846688,200.40916788363512,0.017462688735804477 +2020-11-05,197.23694833480275,0.03266532930297217,200.45531069350932,0.04614280987419761 +2020-11-06,197.20670468915154,-0.030243645651211182,200.52871359660668,0.0734029030973602 +2020-11-07,197.0808287493704,-0.12587593978113887,200.43736241201321,-0.09135118459346359 +2020-11-08,197.13512740627263,0.05429865690223323,200.43363953120524,-0.0037228808079703413 +2020-11-09,197.21015573025815,0.07502832398552073,200.44897955219284,0.015340020987594016 +2020-11-10,197.23344015666024,0.0232844264020855,200.44788959870598,-0.001089953486854256 +2020-11-11,197.24078410130105,0.007343944640808786,200.5033556802443,0.05546608153832722 +2020-11-12,197.22936770272722,-0.011416398573828701,200.5029798680104,-0.00037581223389793195 +2020-11-13,197.26094973963345,0.031582036906229405,200.54121212731573,0.038232259305317484 +2020-11-14,197.24248346872824,-0.018466270905207693,200.49845245283242,-0.04275967448330675 +2020-11-15,197.2178524095407,-0.02463105918752717,200.4990032239145,0.0005507710820893408 +2020-11-16,197.2191407132271,0.001288303686379777,200.4967117732278,-0.002291450686726648 +2020-11-17,197.21091601857975,-0.008224694647338993,200.54185068573804,0.045138912510253704 +2020-11-18,197.27105059611523,0.060134577535478684,200.56468597719672,0.022835291458676465 +2020-11-19,197.30030868013077,0.02925808401553809,200.56921697301806,0.004530995821340866 +2020-11-20,197.32399851590392,0.023689835773154755,200.62233871966117,0.05312174664311442 +2020-11-21,197.27609737792937,-0.047901137974548647,200.67075971216434,0.04842099250316778 +2020-11-22,197.35207730248084,0.07597992455146141,200.6572465426497,-0.013513169514652645 +2020-11-23,197.36194893774754,0.009871635266705425,200.74511391656713,0.08786737391744737 +2020-11-24,197.52471971879305,0.16277078104550924,200.75454608062387,0.009432164056732972 +2020-11-25,197.42723124449404,-0.09748847429901275,200.7339455337043,-0.020600546919581575 +2020-11-26,197.1574120463932,-0.26981919810083355,200.67463628006877,-0.059309253635518644 +2020-11-27,197.2361304608826,0.07871841448940131,200.7052148983321,0.030578618263319868 +2020-11-28,197.2775008544242,0.041370393541598105,200.74435676448078,0.039141866148696636 +2020-11-29,197.23873590857784,-0.03876494584636703,200.82692963825426,0.08257287377347211 +2020-11-30,197.10495683526162,-0.1337790733162194,200.84665381436074,0.019724176106478808 +2020-12-01,197.1988939823616,0.0939371470999788,200.85348806192405,0.0068342475633187405 +2020-12-02,197.3135592794962,0.11466529713459295,200.8588873261726,0.005399264248552527 +2020-12-03,197.2802687570759,-0.033290522420287516,200.8588873261726,0.0 +2020-12-04,197.26736464073508,-0.012904116340820337,200.8588873261726,0.0 +2020-12-05,197.29722155024484,0.0298569095097605,200.85346723650568,-0.005420089666927197 +2020-12-06,197.39866841704676,0.10144686680192194,200.86153066360984,0.008063427104161747 +2020-12-07,197.44827247184423,0.0496040547974701,200.86425502447574,0.002724360865897779 +2020-12-08,197.4036165624353,-0.04465590940893094,200.86425502447574,0.0 +2020-12-09,197.34303130905732,-0.0605852533779796,200.86425502447574,0.0 +2020-12-10,197.321912919727,-0.021118389330325726,200.86613381999132,0.0018787955155801228 +2020-12-11,197.31992850282492,-0.0019844169020757363,200.87153571842268,0.005401898431358632 +2020-12-12,197.2496724027571,-0.0702561000678088,200.87153571842268,0.0 +2020-12-13,197.22456644875567,-0.025105954001446662,200.88335059429625,0.011814875873568553 +2020-12-14,197.21890648491268,-0.005659963842987281,200.86641248127813,-0.016938113018113654 +2020-12-15,197.2326879831218,0.013781498209112897,200.85096651369233,-0.015445967585804965 +2020-12-16,197.1191340746877,-0.11355390843408486,200.8836919146054,0.03272540091307974 +2020-12-17,197.2499721189988,0.1308380443111048,200.95965611270736,0.07596419810195698 +2020-12-18,197.28772926658013,0.037757147581316985,200.98225426425296,0.02259815154559419 +2020-12-19,197.29626062517087,0.008531358590744276,201.00394670303103,0.02169243877807503 +2020-12-20,197.31273714222175,0.016476517050875827,201.00922200060018,0.005275297569141912 +2020-12-21,197.29042708262043,-0.02231005960132393,201.05362643393863,0.044404433338456784 +2020-12-22,197.2323995854448,-0.058027497175629605,201.0766928960222,0.023066462083562556 +2020-12-23,197.19468902578606,-0.037710559658734155,201.07851208076272,0.0018191847405262251 +2020-12-24,197.19325978751667,-0.0014292382693952277,201.09526116040644,0.016749079643716414 +2020-12-25,197.1807000606147,-0.01255972690196927,201.11236372705648,0.017102566650038398 +2020-12-26,197.2074565536974,0.026756493082700672,201.12357905714174,0.011215330085263986 +2020-12-27,197.135643102766,-0.07181345093138702,201.18260281910676,0.05902376196502246 +2020-12-28,197.22822142578084,0.09257832301483404,201.26696379863628,0.08436097952952082 +2020-12-29,197.27673256955168,0.048511143770838316,201.25216547908533,-0.014798319550948236 +2020-12-30,197.35264437377606,0.0759118042243756,201.26598513393748,0.013819654852142094 +2020-12-31,197.32609229357536,-0.026552080200701766,201.2285801401286,-0.03740499380887741 +2021-01-01,197.384137574566,0.058045280990654646,201.23639518477668,0.007815044648083358 +2021-01-02,197.33172416269505,-0.05241341187095827,201.22727888054723,-0.009116304229451089 +2021-01-03,197.2550303633187,-0.07669379937635767,201.4269302428922,0.19965136234498004 +2021-01-04,197.45842146297437,0.2033910996556756,201.50071122307014,0.07378098017792922 +2021-01-05,197.56605310284195,0.10763163986757718,201.6130898871957,0.11237866412557196 +2021-01-06,197.68919012230484,0.12313701946288802,201.72758772273363,0.11449783553791804 +2021-01-07,197.7231924500066,0.034002327701756485,201.76665447698036,0.03906675424673267 +2021-01-08,197.62631935610543,-0.09687309390116638,201.71075226440445,-0.055902212575915655 +2021-01-09,197.69834902448565,0.07202966838022462,201.745181107766,0.03442884336155316 +2021-01-10,197.63446643702065,-0.06388258746500242,201.6398921919165,-0.10528891584951339 +2021-01-11,197.38528887345524,-0.24917756356541076,201.38106981428982,-0.2588223776266716 +2021-01-12,197.39392693145206,0.00863805799681927,201.32621391215227,-0.054855902137546764 +2021-01-13,197.49524539864996,0.10131846719789905,201.38368279353836,0.05746888138608597 +2021-01-14,197.48194854978064,-0.013296848869316591,201.4867980056603,0.10311521212193497 +2021-01-15,197.44333259081338,-0.03861595896725589,201.41252436583295,-0.07427363982733937 +2021-01-16,197.77685897077538,0.3335263799619952,201.56214353823813,0.1496191724051812 +2021-01-17,197.90107949237367,0.12422052159828922,201.56106116198745,-0.0010823762506788626 +2021-01-18,197.96179181833494,0.06071232596127629,201.61387777231013,0.05281661032267948 +2021-01-19,197.96223332139587,0.00044150306092660685,201.69518948802653,0.08131171571639584 +2021-01-20,197.89443067470881,-0.06780264668705627,201.68285745277376,-0.012332035252768492 +2021-01-21,197.70887766820013,-0.1855530065086839,201.7377835440993,0.05492609132554094 +2021-01-22,197.97782642515625,0.26894875695612086,201.75382375387173,0.01604020977242726 +2021-01-23,197.99003329675264,0.012206871596390556,201.76948730472157,0.015663550849836838 +2021-01-24,197.98102874006733,-0.009004556685312082,201.8978095431242,0.12832223840263168 +2021-01-25,197.9353672880306,-0.04566145203673955,201.93515322877116,0.03734368564695956 +2021-01-26,198.16162483633525,0.22625754830465894,202.00881981571587,0.07366658694471084 +2021-01-27,198.47562105234198,0.31399621600672845,202.10325682540014,0.09443700968427038 +2021-01-28,198.48792450200472,0.01230344966273833,202.1175520913883,0.014295265988153005 +2021-01-29,198.34006059433665,-0.1478639076680679,201.97017854521505,-0.14737354617324172 +2021-01-30,198.40081653223265,0.06075593789600475,201.94673673597794,-0.02344180923711292 +2021-01-31,198.47111195004564,0.07029541781298576,201.94942868887856,0.002691952900619299 +2021-02-01,198.50059276897133,0.02948081892569121,201.94942868887856,0.0 +2021-02-02,198.4327811098296,-0.06781165914173926,202.00952698953114,0.0600983006525837 +2021-02-03,198.4106996067452,-0.022081503084393717,202.09532118158913,0.085794192057989 +2021-02-04,198.4128830781839,0.0021834714387125587,202.07660973555758,-0.01871144603154562 +2021-02-05,198.39849843662887,-0.014384641555039934,202.1739782844435,0.09736854888592461 +2021-02-06,198.5751901673638,0.17669173073491606,202.1786268891697,0.004648604726185113 +2021-02-07,198.5032958585557,-0.07189430880808345,202.1821732888906,0.003546399720903537 +2021-02-08,198.37191165081046,-0.13138420774524207,202.18486814511246,0.0026948562218649386 +2021-02-09,198.56903124128365,0.19711959047319283,202.23463044988932,0.04976230477686272 +2021-02-10,198.61787846164253,0.048847220358879895,202.24105904086827,0.006428590978941884 +2021-02-11,198.65051417716037,0.03263571551784139,202.19505855341347,-0.04600048745479057 +2021-02-12,198.86811498210972,0.21760080494934186,202.23289336252788,0.037834809114400514 +2021-02-13,198.96445279464692,0.0963378125372003,202.22991466319812,-0.002978699329759138 +2021-02-14,199.03650122122156,0.07204842657463928,202.25098532065726,0.02107065745914838 +2021-02-15,198.99159010524164,-0.044911115979914484,202.20382902382852,-0.04715629682874578 +2021-02-16,199.11630188265576,0.1247117774141202,202.25211471972483,0.048285695896311154 +2021-02-17,199.04752304563206,-0.06877883702370013,202.15193765997168,-0.10017705975315039 +2021-02-18,199.06326852062972,0.015745474997657993,202.15789797353554,0.005960313563861064 +2021-02-19,199.06677918473022,0.003510664100502936,202.16796365182518,0.010065678289635116 +2021-02-20,198.94646791996462,-0.12031126476560416,202.08556789897983,-0.0823957528453434 +2021-02-21,199.09589573638272,0.14942781641809688,202.13862059197263,0.05305269299279303 +2021-02-22,198.9907085359299,-0.10518720045280361,202.13950548093052,0.0008848889578985109 +2021-02-23,198.78223865546153,-0.20846988046838533,202.13950548093052,0.0 +2021-02-24,198.97128296880004,0.18904431333851335,202.17351012012037,0.03400463918984542 +2021-02-25,198.98140303256557,0.010120063765526766,202.17534559549503,0.00183547537466211 +2021-02-26,199.2485550004047,0.2671519678391405,202.27742759460014,0.10208199910510984 +2021-02-27,199.45276109825772,0.20420609785301735,202.27683826813472,-0.0005893264654162067 +2021-02-28,199.3611144754298,-0.09164662282793756,202.10043163206515,-0.1764066360695722 +2021-03-01,199.28735521127928,-0.07375926415051026,202.18241001347502,0.08197838140986846 +2021-03-02,199.42408229805363,0.13672708677435708,202.24107625450804,0.058666241033023425 +2021-03-03,199.35996051228975,-0.06412178576388783,202.19999186415976,-0.04108439034828848 +2021-03-04,199.45782256090405,0.09786204861430292,202.20979915974746,0.009807295587705767 +2021-03-05,199.63602072962271,0.17819816871866578,202.26022811578113,0.05042895603367015 +2021-03-06,199.56394228862888,-0.07207844099383465,202.2778448147622,0.01761669898107243 +2021-03-07,199.64855786943468,0.08461558080580289,202.36447306150592,0.0866282467437145 +2021-03-08,199.53864355873597,-0.10991431069871282,202.39023046174842,0.025757400242497397 +2021-03-09,199.57968031761519,0.04103675887921554,202.412464973944,0.022234512195581146 +2021-03-10,199.68128952341885,0.10160920580366906,202.43335374303075,0.020888769086752745 +2021-03-11,199.7149497571024,0.03366023368354831,202.4567858071426,0.023432064111858608 +2021-03-12,199.7269540224823,0.012004265379886192,202.44023865519856,-0.016547151944052985 +2021-03-13,199.65406473312945,-0.07288928935284389,202.490075488414,0.04983683321543708 +2021-03-14,199.71334580925193,0.05928107612248823,202.5004794929929,0.010404004578902004 +2021-03-15,199.63639287061878,-0.07695293863315555,202.50863341800644,0.00815392501354495 +2021-03-16,199.68358804237934,0.047195171760563426,202.53153771128794,0.022904293281499122 +2021-03-17,199.7089833432638,0.025395300884468952,202.5544214943323,0.02288378304436378 +2021-03-18,199.68228464502462,-0.026698698239187024,202.54736606340722,-0.007055430925078099 +2021-03-19,199.68123855294863,-0.0010460920759953751,202.52185771797812,-0.02550834542910252 +2021-03-20,199.65979198996845,-0.021446562980173667,202.5245987843642,0.002741066386079183 +2021-03-21,199.6592471358451,-0.0005448541233477044,202.5140752715665,-0.010523512797703916 +2021-03-22,199.61209150832173,-0.04715562752338087,202.51590181526447,0.001826543697973193 +2021-03-23,199.67994535722556,0.06785384890383739,202.54502598029725,0.029124165032783367 +2021-03-24,199.56777749997454,-0.1121678572510234,202.39685114849695,-0.14817483180030422 +2021-03-25,199.67408455106337,0.10630705108883376,202.41267040835638,0.015819259859426893 +2021-03-26,199.65447417708833,-0.019610373975041284,202.43610000433105,0.023429595974675976 +2021-03-27,199.65144363802565,-0.003030539062677917,202.46124814148993,0.025148137158879535 +2021-03-28,199.65316297691624,0.001719338890580957,202.46540191134847,0.004153769858532996 +2021-03-29,199.62114848505158,-0.03201449186465766,202.50913103032764,0.0437291189791722 +2021-03-30,199.63191934059085,0.01077085553927759,202.5137124120135,0.004581381685852648 +2021-03-31,199.5611781028163,-0.07074123777454133,202.52305884759912,0.009346435585626978 +2021-04-01,199.64147400525303,0.08029590243671691,202.59573897177646,0.07268012417733871 +2021-04-02,199.67235488357844,0.030880878325405092,202.6948312350018,0.09909226322534437 +2021-04-03,199.67870923454186,0.0063543509634200745,202.63521738940278,-0.05961384559901717 +2021-04-04,199.72802253891157,0.04931330436971848,202.64358372065354,0.008366331250755366 +2021-04-05,199.6915942125926,-0.036428326318969084,202.60444420358462,-0.03913951706891794 +2021-04-06,199.7471571337408,0.05556292114820849,202.61301347862684,0.008569275042219715 +2021-04-07,199.65489530026042,-0.09226183348039285,202.62341060995226,0.010397131325419195 +2021-04-08,199.69988865482756,0.04499335456713993,202.60140832608627,-0.022002283865987238 +2021-04-09,199.70711743272335,0.007228777895790017,202.5973937074967,-0.004014618589565089 +2021-04-10,199.6491887818246,-0.057928650898759315,202.58497394325386,-0.012419764242849851 +2021-04-11,199.75378028886774,0.10459150704315334,202.6065859986809,0.02161205542705602 +2021-04-12,199.7401953149009,-0.013584973966857206,202.57990653954323,-0.026679459137682215 +2021-04-13,199.67299368972877,-0.06720162517211747,202.59753139387192,0.017624854328687434 +2021-04-14,199.6053721045479,-0.06762158518085926,202.61510332238188,0.01757192850996603 +2021-04-15,199.69616925597003,0.09079715142212308,202.69080853093467,0.07570520855279028 +2021-04-16,199.71255553919528,0.016386283225244824,202.64172871575235,-0.04907981518232418 +2021-04-17,199.5672544331089,-0.1453011060863787,202.5573248278536,-0.08440388789875897 +2021-04-18,199.38673841616375,-0.1805160169451483,202.38980561496655,-0.16751921288704352 +2021-04-19,199.2884244093431,-0.09831400682065805,202.35166286202096,-0.03814275294558911 +2021-04-20,199.17812706951034,-0.11029733983275491,202.3544036648691,0.0027408028481374913 +2021-04-21,199.2196298989145,0.04150282940415195,202.3788129918927,0.024409327023590777 +2021-04-22,199.2129406920217,-0.00668920689278707,202.39286987972335,0.01405688783066239 +2021-04-23,199.19186071024262,-0.021079981779081436,202.36962150605308,-0.02324837367027044 +2021-04-24,199.1303216203805,-0.061539089862122864,202.32524626758038,-0.04437523847269631 +2021-04-25,199.0674467458573,-0.06287487452320306,202.2403603083027,-0.08488595927767051 +2021-04-26,199.16767980783112,0.10023306197382453,202.3970305359067,0.15667022760399618 +2021-04-27,199.34402987018905,0.17635006235792616,202.55189754569383,0.1548670097871252 +2021-04-28,199.43471650804753,0.0906866378584823,202.58838149995535,0.03648395426151296 +2021-04-29,199.45565127164463,0.020934763597097117,202.59386201769448,0.005480517739130164 +2021-04-30,199.43960274750816,-0.016048524136465403,202.58388976928117,-0.009972248413305351 +2021-05-01,199.37400890507442,-0.06559384243374211,202.6152516126452,0.03136184336403858 +2021-05-02,199.36297885603733,-0.01103004903708893,202.62175197908138,0.006500366436171134 +2021-05-03,199.27814903448643,-0.08482982155089758,202.7837187016772,0.161966722595821 +2021-05-04,199.44733351849703,0.16918448401060004,202.7609097362479,-0.022808965429305772 +2021-05-05,199.45866312143386,0.011329602936825722,202.85182448699675,0.09091475074885125 +2021-05-06,199.53956087437996,0.08089775294610035,202.85677032635056,0.0049458393538088785 +2021-05-07,199.51937978043182,-0.02018109394813905,202.8067135369057,-0.05005678944485226 +2021-05-08,199.35661863178566,-0.16276114864615465,202.8546250409385,0.04791150403278266 +2021-05-09,199.49630140592876,0.13968277414309682,202.9483028305375,0.0936777895990133 +2021-05-10,199.54660006778332,0.050298661854554894,202.9325337095813,-0.015769120956207416 +2021-05-11,199.65833622605766,0.11173615827433991,202.96559670913388,0.03306299955258396 +2021-05-12,199.74794268883102,0.08960646277336082,203.08694988535535,0.12135317622147568 +2021-05-13,199.7018388856031,-0.04610380322790775,203.09057876520433,0.003628879848974975 +2021-05-14,199.73547070246207,0.03363181685895711,203.13721602686047,0.046637261656144346 +2021-05-15,199.57348145151343,-0.16198925094863625,203.13906575370052,0.0018497268400494704 +2021-05-16,199.54855702597104,-0.0249244255423946,203.13906575370052,0.0 +2021-05-17,199.61948588136852,0.07092885539748295,203.20547576032115,0.06641000662062879 +2021-05-18,199.9678879669874,0.3484020856188863,203.27175752074376,0.06628176042261202 +2021-05-19,199.41860580992216,-0.5492821570652495,203.27361633354064,0.001858812796882603 +2021-05-20,199.88893650338773,0.47033069346557,203.25634623945288,-0.017270094087763255 +2021-05-21,199.82170729715315,-0.06722920623457185,203.3606173303965,0.10427109094362663 +2021-05-22,199.79316726248956,-0.02854003466359245,203.41955171490136,0.05893438450485178 +2021-05-23,199.5144082694711,-0.27875899301847085,203.451384856889,0.031833141987647195 +2021-05-24,199.47361323474692,-0.040795034724169454,203.5425599647729,0.09117510788388472 +2021-05-25,199.659542299044,0.18592906429708478,203.51107342727664,-0.03148653749624941 +2021-05-26,199.481012250606,-0.1785300484380059,203.50550449858818,-0.005568928688461483 +2021-05-27,199.48215317369625,0.00114092309024727,203.48951598701962,-0.0159885115685654 +2021-05-28,199.4462067857613,-0.03594638793495619,203.59851454497226,0.10899855795264557 +2021-05-29,199.61418441640282,0.1679776306415306,203.72600221130108,0.12748766632881825 +2021-05-30,199.72341595914375,0.10923154274092894,203.83254268561117,0.10654047431009417 +2021-05-31,199.3736139272562,-0.349802031887549,203.86127555632615,0.028732870714975434 +2021-06-01,199.62240270435822,0.24878877710202119,203.91843014901372,0.057154592687567174 +2021-06-02,199.6497095298294,0.027306825471185903,203.87789332457348,-0.040536824440238206 +2021-06-03,199.64857413041187,-0.0011353994175351545,203.94144465484922,0.06355133027574311 +2021-06-04,199.6841872304263,0.03561310001441598,203.94420834661057,0.002763691761344944 +2021-06-05,199.64483255749994,-0.03935467292635053,203.82794338349268,-0.11626496311788515 +2021-06-06,199.67651359318566,0.03168103568572178,203.80336395670895,-0.02457942678373115 +2021-06-07,199.51540916413308,-0.16110442905258537,203.67741533012256,-0.12594862658639272 +2021-06-08,199.42126339014112,-0.09414577399195423,203.66026166100698,-0.017153669115572256 +2021-06-09,199.53027858696325,0.10901519682212779,203.71255532361326,0.05229366260627444 +2021-06-10,199.61718708342343,0.0869084964601825,203.71533674887436,0.0027814252611051415 +2021-06-11,199.6033646217401,-0.013822461683332676,203.73532819284125,0.019991443966887346 +2021-06-12,199.48858867646743,-0.11477594527266888,203.65082460359227,-0.08450358924898183 +2021-06-13,199.4953574893123,0.006768812844882177,203.69541622073123,0.04459161713896265 +2021-06-14,199.49121606437794,-0.004141424934374527,203.73153001518287,0.036113794451637204 +2021-06-15,199.5366561862993,0.04544012192135938,203.7513910356888,0.019861020505942406 +2021-06-16,199.56027271365923,0.023616527359934025,203.7970946121878,0.045703576498993925 +2021-06-17,199.57814970232334,0.01787698866411347,203.78477233076035,-0.012322281427458392 +2021-06-18,199.5824184686256,0.004268766302260474,203.85127413568088,0.06650180492053437 +2021-06-19,199.62426873916831,0.04185027054271018,203.90401499061144,0.05274085493056191 +2021-06-20,199.45980697507323,-0.16446176409507984,203.7874938413046,-0.1165211493068341 +2021-06-21,199.2972280129939,-0.16257896207932276,203.7755564768215,-0.011937364483117108 +2021-06-22,199.48667831060396,0.18945029761005117,203.8754284716372,0.09987199481571452 +2021-06-23,199.54575285643625,0.05907454583228855,203.90298116992835,0.027552698291145816 +2021-06-24,199.4954199769778,-0.050332879458466095,203.80615553898645,-0.09682563094190755 +2021-06-25,199.45956001640627,-0.03585996057151419,203.8601923433862,0.05403680439974323 +2021-06-26,199.5362955935908,0.07673557718453594,203.9062807851345,0.04608844174831006 +2021-06-27,199.37031716334684,-0.16597843024396752,203.7371320583549,-0.16914872677961057 +2021-06-28,199.28321071900572,-0.08710644434111714,203.73138005967402,-0.00575199868086429 +2021-06-29,199.2977979417211,0.014587222715363168,203.77991409286435,0.04853403319032168 +2021-06-30,199.23222390183176,-0.0655740398893272,203.80098897999312,0.021074887128776254 +2021-07-01,199.32545469098073,0.09323078914897565,203.83833742774587,0.03734844775274837 +2021-07-02,199.22457508601568,-0.10087960496505843,203.8281330203885,-0.010204407357377931 +2021-07-03,199.31293444005092,0.08835935403524786,203.9039293769874,0.07579635659891437 +2021-07-04,199.2527254708789,-0.060208969172037996,203.9266592144003,0.02272983741289636 +2021-07-05,199.18171453058807,-0.07101094029081878,203.90924841589603,-0.017410798504272407 +2021-07-06,199.23885385598908,0.05713932540101041,203.92896136125543,0.0197129453594016 +2021-07-07,199.21734893988756,-0.021504916101520166,203.92763891753407,-0.0013224437213636975 +2021-07-08,199.10633868698437,-0.11101025290318489,203.75942857231047,-0.16821034522359923 +2021-07-09,199.10675402297286,0.0004153359884924157,203.74583256973654,-0.013596002573933674 +2021-07-10,199.18581224263525,0.07905821966238591,203.7701643261067,0.024331756370173707 +2021-07-11,199.2227790593714,0.03696681673613966,203.78859115866263,0.018426832555917372 +2021-07-12,199.13873805933983,-0.08404100003156145,203.79320141419942,0.004610255536789509 +2021-07-13,199.10458956831368,-0.034148491026144256,203.82893507560573,0.03573366140631151 +2021-07-14,198.9984657920061,-0.10612377630758374,203.75745198764287,-0.07148308796286074 +2021-07-15,199.1736787384625,0.17521294645641206,203.8565394205805,0.09908743293763678 +2021-07-16,199.1156732582482,-0.058005480214319505,203.7664619752055,-0.09007744537501594 +2021-07-17,199.21717853552641,0.10150527727822123,203.75250037581657,-0.013961599388920831 +2021-07-18,199.14395072817382,-0.07322780735259471,203.72569056050403,-0.026809815312532237 +2021-07-19,199.13820236944952,-0.005748358724304126,203.76267431249562,0.03698375199158477 +2021-07-20,199.18930240841925,0.051100038969735806,203.78335596663044,0.020681654134818928 +2021-07-21,198.98711489935855,-0.20218750906070682,203.7888473771478,0.005491410517350914 +2021-07-22,199.04050941968936,0.053394520330812156,203.83319786064592,0.04435048349813542 +2021-07-23,198.99280923350594,-0.047700186183419646,203.78040518741292,-0.05279267323300019 +2021-07-24,199.01850522777903,0.025695994273092992,203.82499181618078,0.04458662876785979 +2021-07-25,199.01292764439148,-0.005577583387548657,203.8209457412747,-0.0040460749060855505 +2021-07-26,198.87626795968026,-0.13665968471121914,203.7720605775895,-0.04888516368518481 +2021-07-27,198.8067055348926,-0.06956242478767649,203.70995981979436,-0.06210075779515023 +2021-07-28,198.98975241847396,0.183046883581369,203.7126699368121,0.002710117017727498 +2021-07-29,198.97008330545714,-0.01966911301681762,203.71891153738204,0.0062416005699503785 +2021-07-30,198.80326781162856,-0.16681549382857952,203.5760006752572,-0.14291086212483606 +2021-07-31,198.7951231071283,-0.008144704500267608,203.61503220750063,0.03903153224342759 +2021-08-01,198.77061693687315,-0.024506170255136794,203.61789911211162,0.0028669046109826013 +2021-08-02,198.8290645065907,0.0584475697175435,203.6378305426836,0.01993143057197244 +2021-08-03,198.83858537913582,0.009520872545124348,203.67334460817793,0.035514065494339775 +2021-08-04,198.66216513346453,-0.1764202456712951,203.49282943286536,-0.18051517531256422 +2021-08-05,198.58609452079529,-0.0760706126692412,203.521709583783,0.028880150917643732 +2021-08-06,198.53704581650305,-0.049048704292232514,203.51747944848066,-0.004230135302350391 +2021-08-07,198.47696336587677,-0.06008245062628248,203.59992137725027,0.08244192876961165 +2021-08-08,198.46588138377362,-0.011081982103149812,203.55033291650125,-0.049588460749021124 +2021-08-09,198.4777343043565,0.01185292058286791,203.5895617521795,0.03922883567824442 +2021-08-10,198.6171297447142,0.13939544035770268,203.61577659494782,0.026214842768325752 +2021-08-11,198.69533126756554,0.07820152285134441,203.66187721628057,0.046100621332755054 +2021-08-12,198.67434100437364,-0.02099026319189079,203.6572327150538,-0.004644501226778175 +2021-08-13,198.6688752578505,-0.005465746523157122,203.6936581417202,0.0364254266663977 +2021-08-14,198.78325869696684,0.11438343911635229,203.68241198798907,-0.011246153731121922 +2021-08-15,198.7638192332657,-0.01943946370113281,203.65233074670724,-0.030081241281834536 +2021-08-16,198.78334558227732,0.01952634901161332,203.6905421889385,0.038211442231272486 +2021-08-17,198.78967152473632,0.006325942459000089,203.6951614196103,0.004619230671778496 +2021-08-18,198.86372143231205,0.07404990757572705,203.70095492096635,0.005793501356066599 +2021-08-19,198.84763499868777,-0.01608643362428097,203.71198919150163,0.011034270535276391 +2021-08-20,198.88709087304858,0.03945587436081155,203.76395997769185,0.05197078619022477 +2021-08-21,198.94113324543,0.05404237238141718,203.7923942054676,0.028434227775733234 +2021-08-22,198.94463235210338,0.0034991066733880416,203.79424017190993,0.0018459664423460254 +2021-08-23,198.98608649451944,0.04145414241605749,203.79230081955245,-0.0019393523574819937 +2021-08-24,199.03701126440947,0.05092476989003103,203.7712337083402,-0.021067111212261125 +2021-08-25,199.02952297848645,-0.007488285923017202,203.7730210243824,0.0017873160421970624 +2021-08-26,199.0304351073659,0.0009121288794347038,203.78677518669738,0.01375416231499571 +2021-08-27,198.963475461162,-0.06695964620388395,203.68341608789947,-0.10335909879790961 +2021-08-28,199.01655443948943,0.053078978327420145,203.68368028880587,0.0002642009064004469 +2021-08-29,199.01231816858305,-0.004236270906375239,203.6900629763639,0.006382687558016187 +2021-08-30,198.90536572916383,-0.10695243941921717,203.68252184141056,-0.00754113495332831 +2021-08-31,198.88662955423263,-0.01873617493120605,203.71411850286782,0.03159666145725737 +2021-09-01,198.7209222857784,-0.1657072684542129,203.72806958280728,0.013951079939459987 +2021-09-02,198.7616774575944,0.04075517181598798,203.7343625396438,0.00629295683651776 +2021-09-03,198.69534595584864,-0.06633150174576485,203.75000021590395,0.01563767626015533 +2021-09-04,198.75693976561067,0.061593809762030105,203.7310136477593,-0.018986568144640614 +2021-09-05,198.78428481984938,0.027345054238708144,203.75868802004166,0.02767437228234826 +2021-09-06,198.80418373892212,0.019898919072744548,203.76144373928759,0.0027557192459255475 +2021-09-07,198.56693395288923,-0.2372497860328906,203.76144373928759,0.0 +2021-09-08,198.7691350452525,0.202201092363282,203.75945021468456,-0.0019935246030229337 +2021-09-09,198.92577403929766,0.1566389940451529,203.7612840478477,0.0018338331631468918 +2021-09-10,198.87372863000206,-0.05204540929560153,203.7612840478477,0.0 +2021-09-11,198.9166337562865,0.04290512628443821,203.76403165820287,0.0027476103551578035 +2021-09-12,198.9634976275489,0.04686387126238856,203.80681297855304,0.04278132035017279 +2021-09-13,199.03881123901115,0.07531361146226345,203.77472847226792,-0.03208450628511628 +2021-09-14,199.1949805623146,0.1561693233034589,203.85862496871027,0.08389649644234964 +2021-09-15,199.13353157406846,-0.06144898824615552,203.8850053890008,0.02638042029053622 +2021-09-16,199.20649879948846,0.07296722542000111,203.9186983944412,0.03369300544039788 +2021-09-17,199.11876727568395,-0.0877315238045071,203.8256732488693,-0.09302514557191444 +2021-09-18,199.05359074638818,-0.06517652929576911,203.8502230344206,0.02454978555130083 +2021-09-19,199.07492712829756,0.021336381909378588,203.8701197505325,0.01989671611190147 +2021-09-20,198.95624874840505,-0.11867837989251484,203.91763638964167,0.04751663910917614 +2021-09-21,198.94381934140085,-0.012429407004191262,203.91945019107598,0.0018138014343094255 +2021-09-22,198.9949291132393,0.051109771838440565,203.9105283706734,-0.008921820402576941 +2021-09-23,198.97981897769856,-0.015110135540737701,203.91392056486555,0.0033921941921448706 +2021-09-24,198.82155374732665,-0.1582652303719101,203.70958926218972,-0.20433130267582555 +2021-09-25,198.8648523667028,0.0432986193761451,203.73376059454816,0.024171332358434938 +2021-09-26,198.79056700753353,-0.07428535916926648,203.65098215276726,-0.08277844178090277 +2021-09-27,198.9167685373438,0.1262015298102881,203.77068661162744,0.1197044588601841 +2021-09-28,198.99817099518876,0.08140245784494482,203.89875023284594,0.12806362121850157 +2021-09-29,199.06673528097818,0.06856428578942086,203.89166625690575,-0.007083975940190612 +2021-09-30,199.0556408234265,-0.01109445755167826,203.92251066923572,0.030844412329969373 +2021-10-01,198.9442409146177,-0.11139990880880646,203.9737498165257,0.05123914728997647 +2021-10-02,198.9177705838368,-0.026470330780881568,203.97564123785023,0.0018914213245295741 +2021-10-03,198.99520166126229,0.07743107742547295,203.99469713680662,0.019055898956395367 +2021-10-04,199.18079826282363,0.18559660156134328,204.01125565410558,0.01655851729896085 +2021-10-05,199.18077103283966,-2.722998397075571e-05,204.0264976992122,0.015242045106617752 +2021-10-06,199.0314486634183,-0.14932236942135546,203.87177164081652,-0.15472605839568132 +2021-10-07,199.02813227941746,-0.0033163840008398893,203.87020551698546,-0.0015661238310542558 +2021-10-08,199.0220497916184,-0.006082487799062619,203.87439236092172,0.004186843936253126 +2021-10-09,199.04253441719536,0.020484625576955295,203.8762295907073,0.0018372297855933084 +2021-10-10,199.0669193168018,0.024384899606445742,203.91209729741632,0.03586770670901274 +2021-10-11,199.07006768005726,0.0031483632554625274,203.86951045169218,-0.04258684572414495 +2021-10-12,199.179663872495,0.1095961924377491,203.91200030374182,0.042489852049641286 +2021-10-13,199.12296318248636,-0.056700690008653964,203.91656552146978,0.0045652177279578154 +2021-10-14,199.05524851873832,-0.06771466374803481,203.9757654021119,0.05919988064212589 +2021-10-15,199.0981267570662,0.042878238327887175,204.00202543636027,0.026260034248366537 +2021-10-16,199.02962348960813,-0.06850326745808388,203.9916530510051,-0.01037238535516849 +2021-10-17,198.99022285743624,-0.03940063217189049,204.01512431067843,0.02347125967332886 +2021-10-18,198.94063635637357,-0.049586501062663046,204.01603474559099,0.000910434912555047 +2021-10-19,198.98343450609434,0.04279814972076679,204.0262680909403,0.010233345349320189 +2021-10-20,198.85274126144265,-0.1306932446516953,204.04884123870943,0.02257314776912267 +2021-10-21,198.79434469256267,-0.0583965688799708,204.03272028984622,-0.01612094886320392 +2021-10-22,198.76130280313225,-0.033041889430421634,203.9959951922131,-0.03672509763313769 +2021-10-23,198.774821266234,0.013518463101746647,204.03898717371104,0.04299198149794847 +2021-10-24,198.84799098009637,0.07316971386237014,204.04056899830013,0.001581824589095504 +2021-10-25,198.82044224476203,-0.027548735334335106,204.04240658954953,0.001837591249397974 +2021-10-26,198.83428850873668,0.01384626397464217,204.043853196956,0.0014466074064785062 +2021-10-27,198.74530397159583,-0.08898453714084553,204.04672149763502,0.0028683006790117815 +2021-10-28,198.80438997951072,0.059086007914885386,204.05080912567988,0.004087628044857183 +2021-10-29,198.77009280638882,-0.034297173121899505,204.07896636274367,0.028157237063794582 +2021-10-30,198.82362803922481,0.053535232835997704,204.06289967412337,-0.01606668862029892 +2021-10-31,198.79869086476762,-0.024937174457193123,204.06564929828878,0.0027496241654034748 +2021-11-01,198.77438028547982,-0.024310579287799783,204.06240261899256,-0.0032466792962111413 +2021-11-02,198.73403561175968,-0.040344673720142055,204.0642386668545,0.0018360478619285914 +2021-11-03,198.74089038210974,0.00685477035005988,204.0880307769142,0.023792110059702054 +2021-11-04,198.75036225068345,0.009471868573712072,204.06849461238275,-0.01953616453144491 +2021-11-05,198.88343855217315,0.13307630148969452,204.08477917893978,0.01628456655703303 +2021-11-06,198.84372491813605,-0.039713634037099155,204.04228708679946,-0.04249209214032135 +2021-11-07,198.8723117093725,0.02858679123644947,204.03252264748326,-0.009764439316199969 +2021-11-08,198.82000426564142,-0.052307443731081094,204.05154538583022,0.019022738346961887 +2021-11-09,198.8020271859574,-0.017977079684015962,204.0300003183337,-0.02154506749653251 +2021-11-10,198.70428850949858,-0.09773867645881751,203.95615809037335,-0.07384222796034123 +2021-11-11,198.7152677976903,0.010979288191720116,203.93659744182446,-0.019560648548889503 +2021-11-12,198.71773130365168,0.0024635059613729027,203.90203068830144,-0.03456675352302341 +2021-11-13,198.771397367753,0.053666064101321354,203.90416195131982,0.0021312630183842884 +2021-11-14,198.79212506724244,0.02072769948944142,203.90850206076834,0.004340109448520479 +2021-11-15,198.76760802607023,-0.02451704117220288,203.9326510102198,0.02414894945144397 +2021-11-16,198.62542040442915,-0.14218762164108512,203.935437820254,0.0027868100342232083 +2021-11-17,198.62361375508533,-0.0018066493438197995,203.92990199878525,-0.0055358214687544205 +2021-11-18,198.49932524390468,-0.12428851118065154,203.93173899034952,0.0018369915642608703 +2021-11-19,198.46534739263814,-0.03397785126654185,203.97957841420956,0.04783942386004014 +2021-11-20,198.43488425464022,-0.03046313799791278,203.9280140329525,-0.05156438125706586 +2021-11-21,198.38088652839596,-0.05399772624426191,203.9056397494006,-0.022374283551897634 +2021-11-22,198.4383845828276,0.05749805443164746,203.94667991376028,0.041040164359685605 +2021-11-23,198.41224585767455,-0.026138725153060705,203.95266877869753,0.005988864937251037 +2021-11-24,198.4549082412208,0.04266238354625784,203.95488002492814,0.0022112462306154157 +2021-11-25,198.39263300512752,-0.062275236093285,203.9831359405783,0.028255915650163388 +2021-11-26,198.23670044376615,-0.15593256136136802,203.79193340285028,-0.19120253772803153 +2021-11-27,198.27008148001792,0.03338103625176814,203.83612089243354,0.04418748958326546 +2021-11-28,198.2471670976105,-0.022914382407435596,203.85304603678668,0.016925144353137966 +2021-11-29,198.32825198117544,0.08108488356495513,203.91114912909273,0.05810309230605526 +2021-11-30,198.31372615551885,-0.014525825656590996,203.93282866585753,0.021679536764793284 +2021-12-01,198.3335640705479,0.01983791502905774,203.93394498193078,0.0011163160732508004 +2021-12-02,198.47387967073982,0.14031560019191147,204.00361882477983,0.0696738428490562 +2021-12-03,198.3333221267978,-0.14055754394200903,203.8406905776938,-0.16292824708602893 +2021-12-04,198.2674896796526,-0.06583244714519765,203.7008219506321,-0.139868627061702 +2021-12-05,198.2909969649779,0.023507285325280236,203.7002487699231,-0.0005731807090114671 +2021-12-06,198.1954521432512,-0.09554482172669054,203.70755311752797,0.007304347604872419 +2021-12-07,198.22257579028027,0.027123647029071662,203.72955794941637,0.022004831888409626 +2021-12-08,198.29633846583667,0.07376267555639515,203.76181593193363,0.032257982517251094 +2021-12-09,198.25186055943604,-0.04447790640062976,203.77148436477827,0.009668432844648578 +2021-12-10,198.23226108131837,-0.019599478117669378,203.82015947500437,0.048675110226099605 +2021-12-11,198.3970288203236,0.16476773900524222,203.8432231280206,0.02306365301623714 +2021-12-12,198.44536184761196,0.04833302728835065,203.84310719084516,-0.00011593717545110849 +2021-12-13,198.31529485373355,-0.13006699387841536,203.8188529742194,-0.024254216625763547 +2021-12-14,198.47933453401538,0.16403968028183158,203.8501224293732,0.031269455153790204 +2021-12-15,198.34213285000897,-0.13720168400641342,203.8519430639809,0.001820634607724969 +2021-12-16,198.40604529361622,0.06391244360725068,203.88090860448878,0.028965540507869036 +2021-12-17,198.43125839174877,0.02521309813255357,203.88459287640748,0.003684271918700688 +2021-12-18,198.50800657863604,0.07674818688727214,203.90748743361442,0.022894557206939226 +2021-12-19,198.56606443388597,0.05805785524992757,203.9182518641417,0.010764430527274271 +2021-12-20,198.50955442292442,-0.05651001096154573,203.8553630233918,-0.0628888407499062 +2021-12-21,198.51028026440687,0.000725841482449141,203.8416971471602,-0.013665876231584662 +2021-12-22,198.51481449016802,0.004534225761148036,203.8298736771392,-0.011823470020999594 +2021-12-23,198.49128042673914,-0.0235340634288832,203.72555382883903,-0.10431984830017882 +2021-12-24,198.60623916478693,0.11495873804778967,203.75007514134515,0.024521312506124104 +2021-12-25,198.648124106162,0.04188494137505927,203.7547023788623,0.004627237517155436 +2021-12-26,198.65469719565994,0.006573089497948104,203.7547023788623,0.0 +2021-12-27,198.6628470315313,0.00814983587136453,203.7547023788623,0.0 +2021-12-28,198.5484725934432,-0.11437443808810599,203.7547023788623,0.0 +2021-12-29,198.52160631646413,-0.02686627697906374,203.78552458688947,0.030822208027160514 +2021-12-30,198.5068193603461,-0.014786956118030048,203.7665476947527,-0.018976892136777224 +2021-12-31,198.509008508549,0.0021891482028877363,203.71840132833506,-0.04814636641762604 +2022-01-01,198.55232159243405,0.04331308388506727,203.71929991682472,0.0008985884896617335 +2022-01-02,198.57401222937372,0.021690636939666774,203.720215501332,0.0009155845072825741 +2022-01-03,198.6172402831927,0.04322805381897865,203.6970542678289,-0.023161233503117273 +2022-01-04,198.56747334602738,-0.049766937165315994,203.680436656617,-0.016617611211898975 +2022-01-05,198.44537976580838,-0.1220935802190013,203.5501982041063,-0.13023845251069588 +2022-01-06,198.33582594101466,-0.10955382479372133,203.45045225105048,-0.09974595305581602 +2022-01-07,198.2402230505075,-0.0956028905071662,203.46851626326873,0.018064012218246717 +2022-01-08,198.21644367036168,-0.023779380145811047,203.4763977795528,0.007881516284072632 +2022-01-09,198.16995118051838,-0.046492489843302565,203.45625097247515,-0.020146807077651374 +2022-01-10,198.14459694256516,-0.025354237953223446,203.46613970090203,0.009888728426886928 +2022-01-11,198.13358357824092,-0.011013364324242048,203.4609739508346,-0.005165750067419594 +2022-01-12,198.16665507104506,0.033071492804140235,203.5152722184964,0.054298267661778254 +2022-01-13,198.18391021264887,0.017255141603811808,203.52247691693103,0.007204698434634338 +2022-01-14,198.15977259922957,-0.024137613419298987,203.4903867571798,-0.032090159751220426 +2022-01-15,198.2322288077767,0.07245620854712342,203.49715773520484,0.006770978025031127 +2022-01-16,198.33114190941745,0.09891310164076117,203.50188230392493,0.004724568720092748 +2022-01-17,198.25657440014626,-0.0745675092711906,203.502798248366,0.000915944441061356 +2022-01-18,198.2331384771759,-0.02343592297035002,203.51283728115743,0.010039032791439695 +2022-01-19,198.18413330975662,-0.0490051674192955,203.54571431633804,0.03287703518060425 +2022-01-20,198.04975682979278,-0.13437647996383362,203.41526144242025,-0.1304528739177897 +2022-01-21,197.88489639457006,-0.16486043522272098,203.41747653117787,0.002215088757623107 +2022-01-22,197.8045629980474,-0.08033339652266136,203.4354545988828,0.017978067704945033 +2022-01-23,197.78467609834541,-0.019886899701987204,203.41817177100876,-0.01728282787405533 +2022-01-24,197.53143824270666,-0.25323785563875845,203.25287257912407,-0.16529919188468511 +2022-01-25,197.738036891863,0.20659864915634785,203.31419241941887,0.06131984029480009 +2022-01-26,197.9153001395728,0.17726324770978863,203.40979310550065,0.09560068608178085 +2022-01-27,197.9901632617005,0.0748631221277094,203.40116173890814,-0.008631366592510403 +2022-01-28,198.03754248943002,0.047379227729521745,203.47575025437084,0.0745885154626933 +2022-01-29,198.07490775748155,0.03736526805153062,203.52085426023328,0.045104005862441454 +2022-01-30,198.1072802527927,0.03237249531113662,203.5278313949955,0.0069771347622236135 +2022-01-31,198.13934084246074,0.03206058966804903,203.3961240283439,-0.13170736665159666 +2022-02-01,198.17494360178083,0.03560275932008494,203.4189601628447,0.022836134500806793 +2022-02-02,198.21303405520047,0.03809045341964179,203.43953564671972,0.02057548387500674 +2022-02-03,198.28485600801213,0.0718219528116606,203.46972709079228,0.030191444072556806 +2022-02-04,198.2496141635026,-0.035241844509528164,203.53294066331975,0.06321357252747362 +2022-02-05,198.32942342402228,0.0798092605196814,203.5666740686033,0.03373340528355584 +2022-02-06,198.3138608545269,-0.015562569495386924,203.56035801578162,-0.006316052821688345 +2022-02-07,198.26768576220996,-0.04617509231692907,203.5584063061142,-0.001951709667423529 +2022-02-08,198.2452134768236,-0.022472285386356816,203.58171439830957,0.02330809219537855 +2022-02-09,198.2624096935271,0.017196216703496248,203.58355702615327,0.001842627843700484 +2022-02-10,198.22279762957186,-0.03961206395524641,203.57093947558835,-0.01261755056492575 +2022-02-11,198.15985059402948,-0.06294703554237913,203.57276696344775,0.0018274878594013444 +2022-02-12,198.1640520333818,0.004201439352328862,203.5889349918377,0.01616802838995568 +2022-02-13,198.1878548947097,0.02380286132788001,203.59075895914395,0.0018239673062510064 +2022-02-14,198.1583410334211,-0.029513861288592125,203.58047533964108,-0.010283619502871488 +2022-02-15,198.10596691174092,-0.05237412168017386,203.6422613686077,0.06178602896662255 +2022-02-16,198.10800668929383,0.0020397775529090723,203.6022567127916,-0.04000465581611934 +2022-02-17,198.0716703463761,-0.036336342917735465,203.63800101925352,0.03574430646193605 +2022-02-18,198.02814795738905,-0.04352238898704286,203.6798172301327,0.0418162108791762 +2022-02-19,198.01442268051952,-0.013725276869536174,203.69435260166506,0.014535371532360841 +2022-02-20,198.0892339961384,0.07481131561888787,203.77984771031106,0.08549510864600052 +2022-02-21,197.87035354664516,-0.21888044949324126,203.70271526256047,-0.0771324477505857 +2022-02-22,198.00784841754313,0.1374948708979673,203.67320168077705,-0.02951358178341934 +2022-02-23,197.94071894168846,-0.06712947585467077,203.57831276578895,-0.09488891498810403 +2022-02-24,197.77032807954734,-0.17039086214111876,203.25919702879392,-0.3191157369950304 +2022-02-25,197.90391587073665,0.13358779118931352,203.39387628907505,0.13467926028113197 +2022-02-26,197.95017048885458,0.04625461811792775,203.42748618540097,0.03360989632591327 +2022-02-27,197.76900173319706,-0.18116875565752366,203.2735353067466,-0.15395087865437063 +2022-02-28,197.7640522223174,-0.004949510879669106,203.12933659145517,-0.1441987152914237 +2022-03-01,197.8134364512945,0.04938422897711803,203.19185202363226,0.06251543217709354 +2022-03-02,197.97020787374962,0.15677142245510822,203.22880404870816,0.036952025075891015 +2022-03-03,197.9495443489224,-0.020663524827227775,203.22593607386517,-0.002867974842985177 +2022-03-04,197.90862659474192,-0.0409177541804695,203.2933923463114,0.0674562724462362 +2022-03-05,197.9201041092788,0.011477514536892386,203.2837025201707,-0.009689826140714786 +2022-03-06,197.8640724273947,-0.056031681884121554,203.3129493715377,0.0292468513670201 +2022-03-07,197.82345293287923,-0.04061949451545388,203.22259190757748,-0.09035746396023114 +2022-03-08,197.84815942995186,0.024706497072628508,203.25052612618083,0.02793421860334888 +2022-03-09,197.76345317895291,-0.08470625099894846,203.2645617797706,0.014035653589758113 +2022-03-10,197.78475560262208,0.021302423669169457,203.22772467275232,-0.03683710701827181 +2022-03-11,197.80736570923602,0.02261010661393925,203.2557606315224,0.02803595877009002 +2022-03-12,197.8746669924158,0.06730128317977346,203.25940650245255,0.0036458709301427916 +2022-03-13,197.9215108182437,0.04684382582789226,203.25940650245255,0.0 +2022-03-14,197.89254194977937,-0.02896886846431812,203.19783377778003,-0.06157272467251573 +2022-03-15,197.91040694184977,0.017864992070400376,203.234422496654,0.03658871887395776 +2022-03-16,197.91824132751984,0.007834385670065558,203.3023139744006,0.0678914777465991 +2022-03-17,197.92590318215383,0.0076618546339943805,203.32675163872307,0.02443766432247685 +2022-03-18,197.86623048624745,-0.0596726959063858,203.32894588466905,0.002194245945986495 +2022-03-19,197.8760035562917,0.009773070044246879,203.31926521581647,-0.009680668852581675 +2022-03-20,197.88334309335585,0.007339537064154911,203.29031295028668,-0.028952265529795795 +2022-03-21,197.91923161094238,0.035888517586528224,203.29413945862493,0.0038265083382498233 +2022-03-22,197.9495538119209,0.030322200978531555,203.30891049006922,0.014771031444297478 +2022-03-23,197.91761673738867,-0.031937074532237375,203.3137280679919,0.00481757792266535 +2022-03-24,197.94004460368083,0.02242786629216198,203.3479408536919,0.03421278570002073 +2022-03-25,197.91684065814803,-0.023203945532799253,203.34319202628194,-0.004748827409969181 +2022-03-26,197.94588550121162,0.029044843063587678,203.36718349654095,0.02399147025900561 +2022-03-27,197.96178875917698,0.015903257965362627,203.36809257584912,0.0009090793081725224 +2022-03-28,197.96464276408037,0.0028540049033836112,203.37853988307012,0.010447307220999846 +2022-03-29,198.0723082212946,0.10766545721423881,203.4354198935317,0.0568800104615832 +2022-03-30,198.07984632149865,0.00753810020404444,203.43454222061038,-0.0008776729213195722 +2022-03-31,198.07144212502584,-0.0084041964728101,203.4354536824595,0.0009114618491139481 +2022-04-01,197.99554324883212,-0.07589887619371893,203.38203774923042,-0.05341593322907556 +2022-04-02,198.00028826568592,0.004745016853803463,203.36331708234565,-0.018720666884775028 +2022-04-03,198.0513518788542,0.05106361316828156,203.39760656865965,0.034289486314008855 +2022-04-04,198.09794492407357,0.04659304521936747,203.39852467212717,0.0009181034675123101 +2022-04-05,198.10931495036579,0.011370026292212287,203.39852467212717,0.0 +2022-04-06,197.9982708796093,-0.11104407075649192,203.40887746135306,0.010352789225891001 +2022-04-07,198.09455354948597,0.09628266987667189,203.43341548295157,0.02453802159851648 +2022-04-08,198.0895534133249,-0.0050001361610725326,203.39287585439504,-0.04053962855653026 +2022-04-09,198.1442434637948,0.05469005046990105,203.4149890556256,0.02211320123055316 +2022-04-10,198.08299928162933,-0.06124418216546701,203.36949112117256,-0.045497934453038624 +2022-04-11,197.95459758045527,-0.12840170117405592,203.23272548378372,-0.13676563738883374 +2022-04-12,198.00183795399528,0.04724037354000643,203.26796903775403,0.035243553970303765 +2022-04-13,197.94802164498125,-0.053816309014024455,203.2721361122702,0.004167074516175262 +2022-04-14,197.9474666058266,-0.0005550391546478295,203.28271189342357,0.01057578115336355 +2022-04-15,197.98398171420396,0.036515108377358274,203.29484318970245,0.012131296278880654 +2022-04-16,197.99908654519118,0.015104830987212381,203.29666803700587,0.0018248473034248036 +2022-04-17,198.06120349780457,0.062116952613394005,203.29666803700587,0.0 +2022-04-18,197.99556144038212,-0.06564205742245122,203.30590583388542,0.009237796879546067 +2022-04-19,197.9954026025207,-0.00015883786142012468,203.31285750223088,0.006951668345465123 +2022-04-20,197.96266622630168,-0.03273637621902026,203.30070199366668,-0.012155508564205775 +2022-04-21,197.8764072676502,-0.08625895865148436,203.22403143400487,-0.07667055966180669 +2022-04-22,197.9331148944515,0.05670762680131247,203.27522149808937,0.051190064084494225 +2022-04-23,197.94463120700047,0.011516312548963015,203.27974975193044,0.004528253841073138 +2022-04-24,197.96119528754807,0.01656408054759595,203.2969130223983,0.01716327046784727 +2022-04-25,197.78706901561065,-0.1741262719374106,203.16905560002238,-0.1278574223759108 +2022-04-26,197.7375975931383,-0.04947142247235092,203.06960107218464,-0.0994545278377359 +2022-04-27,197.85042655178214,0.11282895864383136,203.0973136947913,0.027712622606657078 +2022-04-28,197.90120396211796,0.050777410335825834,203.10897608747842,0.011662392687128431 +2022-04-29,197.8567106487597,-0.044493313358259456,203.11292017820384,0.003944090725411797 +2022-04-30,197.90254591670123,0.045835267941527036,203.1832795418712,0.0703593636673645 +2022-05-01,197.95020151529815,0.04765559859691848,203.1773349160411,-0.005944625830096584 +2022-05-02,197.9489136189478,-0.0012878963503339946,203.16508369505564,-0.012251220985461941 +2022-05-03,197.95340412252838,0.0044905035805697935,203.12947118730574,-0.03561250774990299 +2022-05-04,197.97229391778757,0.01888979525918444,203.13108440396232,0.0016132166565796524 +2022-05-05,197.86766200836578,-0.10463190942178358,203.1356631793018,0.004578775339467711 +2022-05-06,197.86371613683457,-0.003945871531215062,203.17139576114178,0.03573258183999428 +2022-05-07,197.90178466080667,0.038068523972100365,203.1838736318778,0.01247787073600648 +2022-05-08,197.85025322764457,-0.05153143316209707,203.20297229428837,0.019098662410584666 +2022-05-09,197.73726235693024,-0.11299087071432723,203.26689486434398,0.06392257005560964 +2022-05-10,198.02289453973552,0.2856321828052728,203.25586505213147,-0.01102981221251298 +2022-05-11,197.90955606353185,-0.11333847620366555,203.2576993270468,0.0018342749153248405 +2022-05-12,198.14887083132143,0.23931476778957972,203.52789498178433,0.2701956547375346 +2022-05-13,198.3020350228217,0.15316419150028082,203.531432950381,0.0035379685966745456 +2022-05-14,198.41491106728802,0.11287604446630439,203.46214379917927,-0.06928915120172974 +2022-05-15,198.41865134910435,0.0037402818163343454,203.53876722074511,0.07662342156584145 +2022-05-16,198.5167857882831,0.0981344391787502,203.54153776492268,0.0027705441775651707 +2022-05-17,198.4549898430653,-0.061795945217795634,203.54153776492268,0.0 +2022-05-18,198.4860691457765,0.031079302711191303,203.60078196172776,0.05924419680508208 +2022-05-19,198.54488795166827,0.05881880589177513,203.59250992934253,-0.008272032385235661 +2022-05-20,198.54321413466255,-0.0016738170057237767,203.544209828995,-0.04830010034751808 +2022-05-21,198.62246531320523,0.07925117854267683,203.5686997757247,0.024489946729687517 +2022-05-22,198.603729400425,-0.018735912780215358,203.58595643195457,0.01725665622987549 +2022-05-23,198.50787546072235,-0.09585393970266409,203.50574687158158,-0.08020956037299243 +2022-05-24,198.56442249686415,0.056547036141807894,203.53386237789843,0.028115506316851224 +2022-05-25,198.5798461718562,0.015423674992035785,203.5279893586978,-0.005873019200635099 +2022-05-26,198.52738974678036,-0.0524564250758317,203.5316359286275,0.0036465699297139054 +2022-05-27,198.67058431946225,0.1431945726818924,203.65551653272104,0.12388060409352875 +2022-05-28,198.78557117357084,0.11498685410859366,203.6799843485097,0.02446781578865398 +2022-05-29,198.79759865181776,0.012027478246920964,203.68672088982856,0.006736541318872469 +2022-05-30,198.69275060374758,-0.10484804807018122,203.73133791652515,0.04461702669658507 +2022-05-31,198.84288560997982,0.15013500623223308,203.77362489525882,0.04228697873367082 +2022-06-01,198.87503730307807,0.03215169309825683,203.8103704631867,0.03674556792788053 +2022-06-02,198.9820483960043,0.10701109292622846,203.84613776724035,0.035767304053649696 +2022-06-03,198.93362822221007,-0.04842017379422714,203.8317902410985,-0.014347526141847311 +2022-06-04,198.9327798640077,-0.0008483582023757208,203.84304207812716,0.01125183702865229 +2022-06-05,198.9821724577964,0.04939259378869565,203.84259045850405,-0.00045161962310658055 +2022-06-06,198.93677592877398,-0.04539652902241187,203.84459227466505,0.00200181616099826 +2022-06-07,198.85182999138948,-0.08494593738450362,203.7548279094007,-0.08976436526435805 +2022-06-08,199.0077626785221,0.15593268713263342,203.77854641035864,0.023718500957954802 +2022-06-09,199.05755835451055,0.049795675988434596,203.77946552536295,0.0009191150043079688 +2022-06-10,199.03976516972,-0.017793184790548366,203.9004354659139,0.12096994055093546 +2022-06-11,198.99683270088633,-0.04293246883366919,203.94947810407237,0.04904263815848253 +2022-06-12,198.909173642257,-0.08765905862932755,203.98798491929193,0.038506815219562895 +2022-06-13,198.83229969008667,-0.076873952170331,204.10825475755067,0.12026983825873572 +2022-06-14,198.87977364729133,0.047473957204658745,204.1807924437672,0.07253768621652057 +2022-06-15,199.01986636081241,0.140092713521085,204.34879889538183,0.16800645161464445 +2022-06-16,199.0308274619611,0.010961101148694752,204.33366575104222,-0.015133144339614546 +2022-06-17,199.09451444810506,0.0636869861439493,204.35016328012748,0.0164975290852567 +2022-06-18,198.80878965871202,-0.28572478939304347,204.28901746024096,-0.06114581988651935 +2022-06-19,198.7089309478107,-0.09985871090131582,204.3504100710643,0.061392610823332916 +2022-06-20,198.7184152266002,0.009484278789500422,204.35143376967082,0.0010236986065308429 +2022-06-21,198.7016303190229,-0.016784907577289232,204.37755048567573,0.026116716004906948 +2022-06-22,198.74535103624663,0.04372071722372084,204.40714458077187,0.029594095096143747 +2022-06-23,198.68052620418817,-0.06482483205846279,204.36651720237037,-0.04062737840149566 +2022-06-24,198.67444091796298,-0.006085286225186337,204.4328361809689,0.06631897859853098 +2022-06-25,198.69745515401794,0.02301423605496211,204.4784774959762,0.04564131500728763 +2022-06-26,198.71920900302396,0.021753849006017845,204.4796360938074,0.0011585978311927647 +2022-06-27,198.72522041111705,0.0060114080930873115,204.41316584712024,-0.06647024668714607 +2022-06-28,198.59715396034628,-0.12806645077077405,204.2973975849728,-0.11576826214744074 +2022-06-29,198.62705150477123,0.029897544424954958,204.30689421658212,0.009496631609323458 +2022-06-30,198.59278875452142,-0.03426275024980896,204.311360943666,0.004466727083865862 +2022-07-01,198.6222904110585,0.02950165653706449,204.29487889139483,-0.016482052271157954 +2022-07-02,198.64332773767694,0.0210373266184547,204.2910225396097,-0.00385635178511734 +2022-07-03,198.76755673148594,0.12422899380899821,204.26657937033843,-0.02444316927127943 +2022-07-04,198.5648465968895,-0.20271013459642973,204.03429589913955,-0.23228347119888326 +2022-07-05,198.48162127985682,-0.0832253170326851,203.9895948260078,-0.04470107313176186 +2022-07-06,198.42793768093347,-0.05368359892335661,204.0121814729511,0.02258664694332424 +2022-07-07,198.36981972743763,-0.05811795349583804,204.0254176679661,0.013236195014997065 +2022-07-08,198.49135656516145,0.12153683772382351,204.09212217863484,0.06670451066872829 +2022-07-09,198.54904775768313,0.05769119252167343,204.10987072193063,0.017748543295795116 +2022-07-10,198.50130986406595,-0.047737893617181726,204.1168138989144,0.006943176983753574 +2022-07-11,198.52308502929367,0.021775165227722937,204.21857868528673,0.10176478637234254 +2022-07-12,198.50672640458367,-0.016358624709994274,204.28527069095634,0.06669200566960853 +2022-07-13,198.7071897956617,0.20046339107801714,204.36923840526782,0.08396771431148409 +2022-07-14,198.55028822208456,-0.1569015735771302,204.36476363423415,-0.004474771033670777 +2022-07-15,198.6275623070284,0.0772740849438378,204.4339805219264,0.06921688769224943 +2022-07-16,198.45267552211433,-0.17488678491406517,204.2368576673884,-0.1971228545380086 +2022-07-17,198.63927248930182,0.18659696718748364,204.29454477994992,0.057687112561524145 +2022-07-18,198.60210109803074,-0.03717139127107316,204.39948593863656,0.10494115868664267 +2022-07-19,198.85535951969493,0.2532584216641851,204.52896759199518,0.12948165335862427 +2022-07-20,198.81158426354497,-0.043775256149956476,204.43741341687604,-0.09155417511914266 +2022-07-21,198.89113608575687,0.07955182221189716,204.53980389200007,0.10239047512402522 +2022-07-22,198.80177441828081,-0.08936166747605512,204.46888461653703,-0.07091927546304078 +2022-07-23,198.6771770985939,-0.12459731968692722,204.40884845761394,-0.060036158923082894 +2022-07-24,198.72481795157645,0.047640852982567594,204.4680160494099,0.05916759179595488 +2022-07-25,198.7612332543082,0.036415302731739985,204.4844413535563,0.016425304146395092 +2022-07-26,198.61748595889097,-0.14374729541722786,204.402001104965,-0.08244024859129695 +2022-07-27,198.43392335552866,-0.18356260336230434,204.42978999048302,0.027788885518020834 +2022-07-28,198.4533865093322,0.019463153803542355,204.47645808567088,0.04666809518786863 +2022-07-29,198.65742359125255,0.20403708192034742,204.48867996126842,0.012221875597532517 +2022-07-30,198.7762926752789,0.11886908402635754,204.46454376204233,-0.024136199226092003 +2022-07-31,198.8085152352811,0.03222256000219659,204.5191196406719,0.0545758786295778 +2022-08-01,198.98120771407795,0.17269247879684713,204.64762294553518,0.12850330486327266 +2022-08-02,199.02212123172797,0.0409135176500115,204.59320411817777,-0.05441882735740933 +2022-08-03,198.95377542997213,-0.06834580175583937,204.54957805500564,-0.043626063172126806 +2022-08-04,199.01266037030487,0.05888494033274583,204.5802342131946,0.030656158188946847 +2022-08-05,198.96995964448044,-0.04270072582443163,204.62564248801988,0.04540827482529153 +2022-08-06,198.97922627462503,0.009266630144594501,204.61715231198212,-0.008490176037753372 +2022-08-07,198.96732427644403,-0.011901998181002682,204.60986723311802,-0.007285078864100569 +2022-08-08,198.89276606435078,-0.07455821209325109,204.62400733225834,0.014140099140320217 +2022-08-09,198.87218130903082,-0.02058475531995896,204.6421465966454,0.018139264387059484 +2022-08-10,198.7488410648016,-0.12334024422921175,204.54077184152152,-0.10137475512388505 +2022-08-11,198.7235637344566,-0.025277330345005566,204.5566165397738,0.01584469825229462 +2022-08-12,198.72518908344335,0.0016253489867494864,204.5888981119471,0.03228157217327521 +2022-08-13,198.71119756396087,-0.013991519482488002,204.59295908457074,0.00406097262364824 +2022-08-14,198.67746924241732,-0.0337283215435491,204.57684015544032,-0.016118929130414017 +2022-08-15,198.73175778384407,0.05428854142675732,204.60484339131662,0.02800323587629805 +2022-08-16,198.8057570084071,0.07399922456303898,204.6333694694448,0.028526078128180643 +2022-08-17,198.77805725819016,-0.02769975021695359,204.6412178805897,0.007848411144891543 +2022-08-18,198.75974423728243,-0.01831302090772624,204.63417942721028,-0.007038453379408338 +2022-08-19,198.54616958159312,-0.21357465568931389,204.65628864166416,0.022109214453877257 +2022-08-20,198.56849955259915,0.02232997100603029,204.67899262448674,0.022703982822577018 +2022-08-21,198.72736507629403,0.15886552369488527,204.71363211440035,0.03463948991361576 +2022-08-22,198.67209786790883,-0.05526720838520305,204.73831913957804,0.024687025177684063 +2022-08-23,198.61857581670247,-0.053522051206357446,204.75550360504207,0.017184465464026744 +2022-08-24,198.61477902586495,-0.003796790837526487,204.73875033975276,-0.016753265289310093 +2022-08-25,198.6404815824121,0.02570255654714515,204.78040670856953,0.04165636881677415 +2022-08-26,198.56287101538055,-0.07761056703154168,204.8193125998912,0.038905891321661557 +2022-08-27,198.5451570677096,-0.017713947670955577,204.82209001718462,0.0027774172934300623 +2022-08-28,198.49971989510115,-0.0454371726084446,204.83427684738777,0.012186830203148702 +2022-08-29,198.5276739634688,0.027954068367648688,204.74083817810697,-0.09343866928080047 +2022-08-30,198.51162661728657,-0.01604734618223347,204.68984565889048,-0.05099251921649284 +2022-08-31,198.62171476560988,0.11008814832331382,204.69828583348806,0.008440174597581063 +2022-09-01,198.635572868782,0.013858103172111669,204.7001319610735,0.0018461275854519954 +2022-09-02,198.596842824555,-0.03873004422698045,204.65991088642562,-0.0402210746478886 +2022-09-03,198.6240265650613,0.027183740506302456,204.65928336650077,-0.0006275199248477747 +2022-09-04,198.60559451609885,-0.01843204896246675,204.66200344081616,0.00272007431539123 +2022-09-05,198.62096425477344,0.015369738674593236,204.69189832571035,0.029894884894190454 +2022-09-06,198.5224421662271,-0.09852208854633204,204.59179019004654,-0.10010813566381671 +2022-09-07,198.3826819207816,-0.13976024544550114,204.43536237505137,-0.156427814995169 +2022-09-08,198.4384294691831,0.05574754840148444,204.4807770031762,0.045414628124831324 +2022-09-09,198.49606767453147,0.0576382053483826,204.56243363191257,0.08165662873636848 +2022-09-10,198.5432750580567,0.047207383525233126,204.5875602960464,0.02512666413383613 +2022-09-11,198.57899160102326,0.03571654296655424,204.614292552548,0.026732256501588836 +2022-09-12,198.61070355257584,0.03171195155258033,204.63219808736667,0.017905534818680735 +2022-09-13,198.5898203016976,-0.020883250878227955,204.63257807245617,0.0003799850894949941 +2022-09-14,198.614549930055,0.024729628357391675,204.61173030097416,-0.020847771482010558 +2022-09-15,198.6294776525694,0.014927722514386232,204.64345711082896,0.031726809854802696 +2022-09-16,198.6676815357586,0.03820388318919754,204.70059622720092,0.05713911637195679 +2022-09-17,198.6828367981114,0.015155262352806176,204.72692094488244,0.02632471768151845 +2022-09-18,198.52297666702427,-0.15986013108712882,204.54153801439537,-0.18538293048706578 +2022-09-19,198.61353808139813,0.090561414373866,204.49606187144505,-0.045476142950320764 +2022-09-20,198.7330465118825,0.119508430484359,204.5009226765554,0.004860805110354249 +2022-09-21,198.71693386430152,-0.016112647580968087,204.5240603565012,0.023137679945790524 +2022-09-22,198.68442626418698,-0.0325076001145419,204.52129184366666,-0.002768512834535386 +2022-09-23,198.64326311722544,-0.04116314696153722,204.4984400611469,-0.022851782519751396 +2022-09-24,198.65357441574506,0.010311298519610546,204.54562917593674,0.047189114789830455 +2022-09-25,198.74018643622972,0.08661202048466521,204.5925584553378,0.046929279401069834 +2022-09-26,198.81516138330926,0.07497494707953933,204.5943790374446,0.0018205821068022487 +2022-09-27,198.67358131819248,-0.14158006511678423,204.51621857236125,-0.07816046508335717 +2022-09-28,198.66984293364752,-0.003738384544959672,204.5579042788866,0.041685706525356636 +2022-09-29,198.72886844694557,0.059025513298053056,204.59172401807325,0.03381973918664016 +2022-09-30,198.76786781254714,0.038999365601569025,204.60766290494695,0.015938886873698266 +2022-10-01,198.7482981427383,-0.019569669808845447,204.58536394148786,-0.022298963459093102 +2022-10-02,198.72747817560415,-0.02081996713414469,204.57898159613734,-0.006382345350516516 +2022-10-03,198.77388963820508,0.0464114626009291,204.59767332211266,0.018691725975315876 +2022-10-04,198.75840786453418,-0.015481773670899202,204.61619783927728,0.018524517164621557 +2022-10-05,198.74907559493948,-0.009332269594693798,204.59267009390973,-0.023527745367545094 +2022-10-06,198.72332583807253,-0.025749756866957796,204.56093132761058,-0.031738766299156396 +2022-10-07,198.69878196973454,-0.02454386833798594,204.56371360825318,0.0027822806426058833 +2022-10-08,198.71490636544985,0.016124395715308992,204.56371360825318,0.0 +2022-10-09,198.72428925887718,0.009382893427329009,204.56371360825318,0.0 +2022-10-10,198.72541738229862,0.0011281234214379765,204.56371360825318,0.0 +2022-10-11,198.71319368670305,-0.012223695595565687,204.56529219114464,0.0015785828914545164 +2022-10-12,198.71534962003034,0.0021559333272875847,204.56713163448313,0.0018394433384969489 +2022-10-13,198.6650991607182,-0.05025045931213867,204.48371173576658,-0.08341989871655642 +2022-10-14,198.6221525674762,-0.042946593241993014,204.47383067557396,-0.009881060192611812 +2022-10-15,198.62401028861623,0.0018577211400270244,204.44459771932947,-0.029232956244499064 +2022-10-16,198.62731917843055,0.003308889814320537,204.47318910914026,0.028591389810799228 +2022-10-17,198.63982626070108,0.0125070822705311,204.50646747074384,0.03327836160357833 +2022-10-18,198.64209161852534,0.002265357824256853,204.48190188041275,-0.02456559033109329 +2022-10-19,198.67664765936925,0.03455604084390984,204.49682456454738,0.014922684134631936 +2022-10-20,198.70054553513447,0.02389787576521485,204.49053020829126,-0.006294356256120182 +2022-10-21,198.7252718754619,0.02472634032744736,204.49237384415392,0.0018436358626559013 +2022-10-22,198.72579338516317,0.0005215097012580827,204.49237384415392,0.0 +2022-10-23,198.65301897813185,-0.07277440703131788,204.49237384415392,0.0 +2022-10-24,198.63863007719132,-0.014388900940531357,204.4709881568071,-0.02138568734682167 +2022-10-25,198.4986017612643,-0.14002831592702591,204.4806879022275,0.009699745420391537 +2022-10-26,198.4815382462646,-0.017063514999705376,204.54065772366283,0.05996982143534524 +2022-10-27,198.48969959704064,0.008161350776049403,204.5494210695358,0.008763345872978334 +2022-10-28,198.46761255974081,-0.022087037299826306,204.56957740719798,0.020156337662172064 +2022-10-29,198.40881245896304,-0.05880010077777342,204.5828302152349,0.01325280803692408 +2022-10-30,198.40152362548505,-0.007288833477986145,204.56557065104914,-0.01725956418576402 +2022-10-31,198.3115068237207,-0.09001680176436366,204.54170540250848,-0.023865248540658968 +2022-11-01,198.30292454090986,-0.00858228281083484,204.55204324477063,0.010337842262146069 +2022-11-02,198.31991088983355,0.01698634892369455,204.61045285941864,0.05840961464801353 +2022-11-03,198.29300195440146,-0.02690893543208972,204.60764444333458,-0.002808416084064902 +2022-11-04,198.26196175730215,-0.031040197099315492,204.713929019632,0.10628457629741206 +2022-11-05,198.32038786574753,0.058426108445388536,204.71766223357042,0.0037332139384318452 +2022-11-06,198.27109017812083,-0.049297687626705056,204.7266786370612,0.009016403490790026 +2022-11-07,198.32723072728484,0.05614054916401301,204.754063427088,0.02738479002678673 +2022-11-08,198.3768330261986,0.04960229891375434,204.75773492066338,0.003671493575382101 +2022-11-09,198.22034097414067,-0.15649205205792782,204.8577596016229,0.1000246809595069 +2022-11-10,198.08683240682996,-0.13350856731071303,204.68073171831978,-0.17702788330311137 +2022-11-11,198.2735687700706,0.1867363632406409,204.66122599691528,-0.019505721404499354 +2022-11-12,198.38972311224785,0.11615434217725351,204.67536140821142,0.014135411296138045 +2022-11-13,198.38578816781666,-0.003934944431193799,204.69176856494224,0.01640715673082127 +2022-11-14,198.39861549522115,0.012827327404494326,204.65701876741818,-0.03474979752405716 +2022-11-15,198.49729468014212,0.09867918492096805,204.6824587387524,0.025439971334208167 +2022-11-16,198.46458326039544,-0.032711419746675574,204.6996931048082,0.017234366055816963 +2022-11-17,198.4825051179428,0.017921857547349873,204.71323755941455,0.01354445460634679 +2022-11-18,198.464197074027,-0.01830804391579477,204.71415378498725,0.0009162255726948842 +2022-11-19,198.47477661383147,0.010579539804467686,204.71415378498725,0.0 +2022-11-20,198.41976057778058,-0.055016036050886896,204.74690527748902,0.03275149250177378 +2022-11-21,198.40784791820593,-0.011912659574647932,204.7710759079511,0.024170630462066356 +2022-11-22,198.33207585576477,-0.07577206244116041,204.75389206102298,-0.017183846928105595 +2022-11-23,198.3157087863123,-0.016367069452456917,204.78615960427172,0.03226754324873582 +2022-11-24,198.33313442899407,0.017425642681757836,204.7968906287547,0.010731024482993234 +2022-11-25,198.36696210531144,0.03382767631737238,204.80062507530627,0.003734446551561632 +2022-11-26,198.3451144690465,-0.02184763626493691,204.78916596636554,-0.011459108940726992 +2022-11-27,198.37143006866813,0.02631559962162555,204.8138948938228,0.024728927457260852 +2022-11-28,198.40627065444565,0.03484058577751625,204.84517721176832,0.03128231794551084 +2022-11-29,198.34412330943024,-0.0621473450154042,204.80492262191405,-0.04025458985427122 +2022-11-30,198.32566751058343,-0.018455798846815696,204.8120965789957,0.007173957081647586 +2022-12-01,198.37866210826337,0.05299459767994108,204.81832453935243,0.006227960356739004 +2022-12-02,198.38355175237683,0.0048896441134616,204.82017076011343,0.0018462207609957204 +2022-12-03,198.34978217867595,-0.03376957370088007,204.82017076011343,0.0 +2022-12-04,198.34931931226865,-0.0004628664073038635,204.79340638968776,-0.02676437042566704 +2022-12-05,198.28306227864553,-0.06625703362311697,204.73729536823035,-0.056111021457411425 +2022-12-06,198.23905513784945,-0.04400714079608292,204.74666495416827,0.009369585937918146 +2022-12-07,198.20475391865827,-0.034301219191178234,204.74535632653902,-0.0013086276292426646 +2022-12-08,198.15060244908065,-0.05415146957761863,204.75189268310695,0.00653635656792062 +2022-12-09,198.17294536355243,0.022342914471778386,204.76510983392936,0.01321715082241326 +2022-12-10,198.1852529737584,0.012307610205965602,204.75967083918252,-0.005438994746839398 +2022-12-11,198.20590938841542,0.020656414657025834,204.78146017086945,0.0217893316869322 +2022-12-12,198.1475181291605,-0.05839125925493249,204.78823254375015,0.00677237288070387 +2022-12-13,198.09532940370113,-0.052188725459359375,204.807793846937,0.019561303186833356 +2022-12-14,198.05443057926644,-0.040898824434691505,204.78051624059378,-0.027277606343204752 +2022-12-15,198.02581010464155,-0.028620474624887038,204.71862012293946,-0.06189611765432801 +2022-12-16,198.0261028194376,0.0002927147960463117,204.7728499155702,0.054229792630735574 +2022-12-17,198.06804183592413,0.04193901648653764,204.76796659667764,-0.004883318892552779 +2022-12-18,198.08666603919767,0.018624203273532203,204.78856827918585,0.02060168250821448 +2022-12-19,198.17104558381536,0.08437954461768982,204.7894842466518,0.0009159674659429129 +2022-12-20,198.19528645544816,0.024240871632798644,204.81673278044846,0.027248533796665697 +2022-12-21,198.22405555834098,0.02876910289282364,204.8230415656383,0.006308785189844457 +2022-12-22,198.15081809158207,-0.0732374667589113,204.82897872559397,0.005937159955664129 +2022-12-23,198.16007570855368,0.00925761697160965,204.82990559410567,0.0009268685116978759 +2022-12-24,198.15929345817946,-0.0007822503742147546,204.82990559410567,0.0 +2022-12-25,198.13835299618898,-0.020940461990477388,204.81981624455796,-0.010089349547712345 +2022-12-26,198.12745293749103,-0.010900058697956183,204.80450487582942,-0.01531136872853267 +2022-12-27,198.1297829594202,0.0023300219291684243,204.83178440736293,0.027279531533508816 +2022-12-28,198.12050073261705,-0.009282226803151161,204.85096552685877,0.01918111949584045 +2022-12-29,198.14883156905685,0.028330836439806717,204.8411787073261,-0.009786819532678237 +2022-12-30,198.15669793420653,0.007866365149681087,204.85949624825176,0.018317540925664844 +2022-12-31,198.13903086027966,-0.017667073926872945,204.86041456723717,0.0009183189854127249 +2023-01-01,198.13630148499882,-0.002729375280836166,204.86041456723717,0.0 +2023-01-02,198.113086213634,-0.023215271364819046,204.86041456723717,0.0 +2023-01-03,198.10520733906276,-0.007878874571247252,204.86041456723717,0.0 +2023-01-04,198.05648988300683,-0.04871745605592537,204.86041456723717,0.0 +2023-01-05,198.06091788744052,0.0044280044336915125,204.86041456723717,0.0 +2023-01-06,198.02361348345715,-0.037304403983370094,204.86041456723717,0.0 +2023-01-07,198.03028215904743,0.006668675590276507,204.86041456723717,0.0 +2023-01-08,197.99832847634065,-0.031953682706785,204.86041456723717,0.0 +2023-01-09,197.91011183692171,-0.08821663941893121,204.83750553456994,-0.022909032667229212 +2023-01-10,197.93318867692008,0.023076839998367404,204.85938815981692,0.02188262524697393 +2023-01-11,197.86426324072644,-0.06892543619363778,204.86031007685125,0.0009219170343328642 +2023-01-12,197.81194319496868,-0.052320045757767275,204.8444013819666,-0.015908694884643637 +2023-01-13,197.77606482342324,-0.035878371545436494,204.84140194827296,-0.0029994336936454147 +2023-01-14,197.71447285252762,-0.06159197089561985,204.8979314930549,0.05652954478193806 +2023-01-15,197.81044120280905,0.09596835028142436,204.94679995856882,0.048868465513919546 +2023-01-16,197.80501880142998,-0.005422401379064468,204.95050968311554,0.0037097245467236917 +2023-01-17,197.7662345702948,-0.0387842311351676,204.934505580188,-0.016004102927553276 +2023-01-18,197.74202778164045,-0.024206788654367983,204.93634385206477,0.001838271876778208 +2023-01-19,197.78655928441296,0.044531502772514386,204.9340838518455,-0.0022600002192803004 +2023-01-20,197.66241243413933,-0.12414685027363248,204.9435633507319,0.009479498886406645 +2023-01-21,197.70956705545697,0.04715462131764525,204.9608929834095,0.017329632677615336 +2023-01-22,197.76489646215887,0.05532940670190101,204.97438540264974,0.013492419240236586 +2023-01-23,197.8610322764423,0.09613581428342854,204.9765338156888,0.0021484130390660994 +2023-01-24,197.7845684512687,-0.0764638251735903,204.97559716654138,-0.0009366491474338545 +2023-01-25,197.7820919617202,-0.0024764895485134275,204.9857861626528,0.010188996111423876 +2023-01-26,197.77864737213872,-0.0034445895814769756,204.991356106078,0.005569943425200563 +2023-01-27,197.76136404022776,-0.017283331910959987,204.99716545498717,0.005809348909167511 +2023-01-28,197.74950706655443,-0.01185697367333205,205.0088746674267,0.011709212439541261 +2023-01-29,197.6750614987581,-0.07444556779631739,204.91832369227222,-0.09055097515448551 +2023-01-30,197.5960044629555,-0.07905703580260592,204.95241700338383,0.03409331111160441 +2023-01-31,197.66026227076136,0.0642578078058591,204.93018088801853,-0.022236115365302567 +2023-02-01,197.64565078693303,-0.014611483828332439,204.92456429383714,-0.005616594181390155 +2023-02-02,197.67518595928553,0.02953517235249592,204.97538273666925,0.05081844283211012 +2023-02-03,197.7496686063935,0.07448264710797048,204.9790958843528,0.003713147683555462 +2023-02-04,197.76421978608775,0.01455117969425146,204.9790958843528,0.0 +2023-02-05,197.73859072594274,-0.025629060145007543,204.97635292027348,-0.0027429640793172894 +2023-02-06,197.75633278987365,0.01774206393091049,204.9804171504637,0.004064230190209628 +2023-02-07,197.79542003574042,0.03908724586676726,204.98133845505282,0.0009213045891272031 +2023-02-08,197.79354957254353,-0.001870463196894434,204.9574896410687,-0.023848813984130857 +2023-02-09,197.69645453952324,-0.09709503302028111,204.9671485783581,0.009658937289401592 +2023-02-10,197.7368560803293,0.04040154080604452,205.00653328598952,0.03938470763142732 +2023-02-11,197.7521845289576,0.015328448628309843,205.01020375910844,0.0036704731189161066 +2023-02-12,197.75210274900851,-8.177994908464825e-05,205.01020375910844,0.0 +2023-02-13,197.7589369781291,0.006834229120585178,205.001378376837,-0.008825382271425042 +2023-02-14,197.81972868174128,0.06079170361218189,205.0090687090245,0.007690332187479498 +2023-02-15,197.70896995693676,-0.11075872480452631,205.02227907395513,0.013210364930642982 +2023-02-16,197.6628337469865,-0.04613620995024803,204.94115596646267,-0.08112310749245921 +2023-02-17,197.79117532267588,0.128341575689376,204.99403086284653,0.05287489638385523 +2023-02-18,197.8593747545286,0.06819943185271882,205.0044430213955,0.010412158548973593 +2023-02-19,197.85070075410252,-0.00867400042608324,205.00537512734803,0.0009321059525291275 +2023-02-20,197.84271575274417,-0.007985001358349564,205.00759324283334,0.002218115485305816 +2023-02-21,197.90243180021648,0.059716047472306855,205.02842813763925,0.020834894805915383 +2023-02-22,197.86782744104283,-0.0346043591736418,205.0022661402712,-0.026161997368063794 +2023-02-23,197.8420361626544,-0.0257912783884251,205.00522660674133,0.0029604664701423644 +2023-02-24,197.8212274901121,-0.020808672542301565,205.01778603591663,0.01255942917529751 +2023-02-25,197.82625631442397,0.005028824311864355,205.01962494018687,0.0018389042702438019 +2023-02-26,197.84530375370244,0.019047439278466527,205.0385736344561,0.018948694269226962 +2023-02-27,197.8494345997109,0.004130846008450817,205.02327326085052,-0.015300373605583673 +2023-02-28,197.82733667909326,-0.022097920617625277,205.02604428786742,0.0027710270169052365 +2023-03-01,197.81669889479804,-0.010637784295226993,205.02604428786742,0.0 +2023-03-02,197.82879491958968,0.012096024791645732,205.00748672079717,-0.01855756707024625 +2023-03-03,197.79115501983532,-0.037639899754367434,205.06588248348248,0.05839576268530777 +2023-03-04,197.7927800829363,0.0016250631009882,205.06398271908984,-0.00189976439264683 +2023-03-05,197.84510676800681,0.0523266850705113,205.0691666668952,0.005183947805363687 +2023-03-06,197.84268396021258,-0.00242280779423254,205.07008872762205,0.0009220607268503045 +2023-03-07,197.82261771691924,-0.020066243293342723,205.06606443401287,-0.004024293609177221 +2023-03-08,197.8387580138712,0.016140296951959954,205.1049274105914,0.03886297657851401 +2023-03-09,197.75766074159154,-0.08109727227966346,205.1251964470108,0.020269036419421127 +2023-03-10,197.70616388957222,-0.0514968520193122,205.1009092960356,-0.024287150975197846 +2023-03-11,197.60873750517837,-0.09742638439385587,205.04463407656084,-0.05627521947477021 +2023-03-12,197.46675703126937,-0.14198047390900115,205.0540676147009,0.009433538140058317 +2023-03-13,197.38868080079476,-0.07807623047460766,205.07983542146408,0.025767806763184353 +2023-03-14,197.27499315057807,-0.11368765021668992,205.04355121078382,-0.03628421068026455 +2023-03-15,197.2554021229673,-0.01959102761077247,204.9895116249279,-0.05403958585591795 +2023-03-16,197.31631286173447,0.06091073876717701,205.01277500329653,0.023263378368625354 +2023-03-17,197.2410965392691,-0.07521632246536569,205.03040032279952,0.017625319502997172 +2023-03-18,197.24493756864658,0.0038410293774688853,205.0504608979392,0.020060575139666526 +2023-03-19,197.27377822676007,0.02884065811349501,205.03428302518068,-0.016177872758504463 +2023-03-20,197.18198012345073,-0.09179810330934401,204.99199440709225,-0.04228861808843476 +2023-03-21,197.16706269459064,-0.014917428860087512,204.94125449744197,-0.050739909650275195 +2023-03-22,197.16989280087918,0.002830106288541856,204.89432478580122,-0.04692971164075743 +2023-03-23,197.161562024228,-0.008330776651177985,204.8354608233098,-0.05886396249141512 +2023-03-24,197.1356246657837,-0.025937358444309666,204.76631902659005,-0.06914179671974807 +2023-03-25,197.15033868994618,0.014714024162486794,204.76917902261764,0.0028599960275812464 +2023-03-26,197.17266506062847,0.022326370682293373,204.78386122751618,0.014682204898548434 +2023-03-27,197.1214218669863,-0.0512431936421649,204.72268637270795,-0.06117485480822893 +2023-03-28,197.14192172075036,0.020499853764050613,204.77915163868272,0.05646526597476509 +2023-03-29,197.09330488196585,-0.048616838784511174,204.78055509532197,0.001403456639252454 +2023-03-30,197.12301367955726,0.029708797591410985,204.79635859748214,0.01580350216016768 +2023-03-31,197.11092649673475,-0.012087182822511977,204.7972850635765,0.000926466094369971 +2023-04-01,197.12028969231534,0.0093631955805904,204.7972850635765,0.0 +2023-04-02,197.11642290838827,-0.0038667839270658533,204.7972850635765,0.0 +2023-04-03,197.10348430802102,-0.012938600367249364,204.7822744985237,-0.015010565052818947 +2023-04-04,197.0805544376256,-0.02292987039541572,204.79499881665808,0.012724318134388568 +2023-04-05,197.12229418978205,0.04173975215644532,204.79764338445827,0.0026445678001891793 +2023-04-06,197.11013384316968,-0.01216034661237586,204.770947028151,-0.026696356307269298 +2023-04-07,197.12170542977486,0.011571586605185757,204.76852386083814,-0.002423167312855412 +2023-04-08,197.10353874641885,-0.018166683356014346,204.78061777692403,0.012093916085888168 +2023-04-09,197.10204392172292,-0.00149482469592499,204.7583178853205,-0.022299891603523747 +2023-04-10,197.12277425021287,0.020730328489946714,204.78638680963815,0.028068924317636856 +2023-04-11,197.15454319177437,0.03176894156149501,204.78720464460187,0.0008178349637262272 +2023-04-12,197.1206640267043,-0.03387916507006139,204.7996268882021,0.012422243600241245 +2023-04-13,197.05455903764252,-0.06610498906178464,204.80147567462143,0.001848786419316184 +2023-04-14,196.92349389564018,-0.13106514200234187,204.7962644111317,-0.0052112634897412136 +2023-04-15,196.94073498079976,0.01724108515958278,204.8091118398841,0.01284742875242273 +2023-04-16,196.93410001983028,-0.006634960969478243,204.81096089990777,0.0018490600236589216 +2023-04-17,196.91281338109616,-0.021286638734125063,204.78563649061746,-0.025324409290305994 +2023-04-18,196.86763265115883,-0.04518072993732858,204.77552960415775,-0.010106886459709585 +2023-04-19,196.77742914967797,-0.09020350148085754,204.7959469953693,0.02041739121153796 +2023-04-20,196.82993458910528,0.05250543942730701,204.79486131895686,-0.001085676412429848 +2023-04-21,196.7996220967672,-0.03031249233808353,204.79670489092507,0.0018435719682088347 +2023-04-22,196.81066495802668,0.011042861259483061,204.78487570765685,-0.011829183268218912 +2023-04-23,196.8335056629445,0.02284070491782586,204.8020861398079,0.017210432151046007 +2023-04-24,196.884678577606,0.05117291466149254,204.84792598451503,0.04583984470713176 +2023-04-25,196.85482420150484,-0.029854376101155822,204.83318848760365,-0.014737496911379822 +2023-04-26,196.7248691822251,-0.12995501927974829,204.67407574024233,-0.15911274736131986 +2023-04-27,196.7580073239152,0.03313814169010243,204.70674601434698,0.03267027410464607 +2023-04-28,196.76795565724623,0.009948333331038839,204.7082343683201,0.0014883539731158635 +2023-04-29,196.78773054380093,0.019774886554699833,204.7096836289767,0.00144926065661366 +2023-04-30,196.7329827859157,-0.05474775788522379,204.6660586256943,-0.04362500328241481 +2023-05-01,196.72062594193855,-0.01235684397715886,204.62575876418322,-0.04029986151107323 +2023-05-02,196.71030839840745,-0.010317543531101592,204.64723640833142,0.021477644148205854 +2023-05-03,196.71635061161462,0.006042213207166469,204.6408362539567,-0.006400154374716749 +2023-05-04,196.70724503862917,-0.009105572985447452,204.6169761072851,-0.023860146671609073 +2023-05-05,196.61814583716864,-0.08909920146052741,204.65084105235775,0.0338649450726507 +2023-05-06,196.57814376307175,-0.04000207409688983,204.59262534236188,-0.05821570999586356 +2023-05-07,196.5529463012792,-0.025197461792544118,204.58946805631683,-0.0031572860450523876 +2023-05-08,196.5749596163175,0.022013315038293513,204.61151723855318,0.022049182236344222 +2023-05-09,196.6214376479641,0.04647803164658626,204.63016324986322,0.018646011310039512 +2023-05-10,196.62258575995403,0.0011481119899485748,204.61492422301345,-0.015239026849769743 +2023-05-11,196.64324959787177,0.020663837917737737,204.61359754119235,-0.0013266818210979636 +2023-05-12,196.6340563253385,-0.00919327253328106,204.63575220731596,0.022154666123611833 +2023-05-13,196.64379979954236,0.009743474203872893,204.6375841026086,0.001831895292639274 +2023-05-14,196.66290615989118,0.019106360348814633,204.6375841026086,0.0 +2023-05-15,196.66249637734958,-0.00040978254159540484,204.6375841026086,0.0 +2023-05-16,196.6983014471221,0.03580506977252185,204.6375841026086,0.0 +2023-05-17,196.6773864214305,-0.020915025691607525,204.6375841026086,0.0 +2023-05-18,196.6965776878745,0.019191266444011035,204.6375841026086,0.0 +2023-05-19,196.73696217559683,0.04038448772232073,204.6375841026086,0.0 +2023-05-20,196.73591858983474,-0.0010435857620905153,204.6375841026086,0.0 +2023-05-21,196.76171334951687,0.025794759682128188,204.6375841026086,0.0 +2023-05-22,196.77938721215386,0.017673862636996773,204.6375841026086,0.0 +2023-05-23,196.75569988952753,-0.023687322626329887,204.643137004804,0.0055529021954043856 +2023-05-24,196.7004350813675,-0.05526480816004664,204.58664709017182,-0.05648991463218067 +2023-05-25,196.7018474169256,0.001412335558114819,204.59647314018858,0.009826050016755516 +2023-05-26,196.7141007099833,0.012253293057710835,204.59738857276776,0.0009154325791769224 +2023-05-27,196.71529901096795,0.0011983009846403547,204.59738857276776,0.0 +2023-05-28,196.66684550837965,-0.048453502588301944,204.59738857276776,0.0 +2023-05-29,196.68110046256143,0.014254954181780022,204.59697691592262,-0.0004116568451308922 +2023-05-30,196.72652676900054,0.045426306439111386,204.6068889460393,0.009912030116680626 +2023-05-31,196.71957760003153,-0.006949168969015318,204.5777076596154,-0.02918128642389206 +2023-06-01,196.7617161443445,0.04213854431296227,204.58800413214925,0.010296472533838141 +2023-06-02,196.75615306872433,-0.005563075620159452,204.60843187397836,0.02042774182910989 +2023-06-03,196.7485258205084,-0.00762724821592542,204.61028287961852,0.0018510056401623842 +2023-06-04,196.7627004308742,0.014174610365785156,204.61028287961852,0.0 +2023-06-05,196.69022647397605,-0.0724739568981363,204.61028287961852,0.0 +2023-06-06,196.65055180212786,-0.03967467184818929,204.61028287961852,0.0 +2023-06-07,196.63505896051694,-0.01549284161092146,204.61028287961852,0.0 +2023-06-08,196.6394490308634,0.0043900703464601065,204.61028287961852,0.0 +2023-06-09,196.6509586835799,0.011509652716483743,204.61028287961852,0.0 +2023-06-10,196.5814275087561,-0.06953117482379412,204.61227426587257,0.001991386254047711 +2023-06-11,196.58294960559022,0.0015220968341225216,204.6232658504105,0.010991584537919152 +2023-06-12,196.59371127413723,0.010761668547019099,204.62418025110892,0.0009144006984342923 +2023-06-13,196.63805705554796,0.044345781410726204,204.62418025110892,0.0 +2023-06-14,196.53269359536512,-0.10536346018284348,204.62418025110892,0.0 +2023-06-15,196.52200953792575,-0.01068405743936296,204.6015122359732,-0.022668015135735686 +2023-06-16,196.46894474985623,-0.053064788069519864,204.6100082925527,0.00849605657950292 +2023-06-17,196.43229006778597,-0.03665468207026379,204.60628778057836,-0.0037205119743362047 +2023-06-18,196.42542427794316,-0.006865789842805725,204.59868240750436,-0.007605373073999999 +2023-06-19,196.42709754341305,0.0016732654698898841,204.60233129362453,0.003648886120174666 +2023-06-20,196.43531722731234,0.008219683899284291,204.6032486759064,0.0009173822818695498 +2023-06-21,196.34258311446104,-0.09273411285130351,204.6032486759064,0.0 +2023-06-22,196.2836939236712,-0.05888919078984145,204.56698014832006,-0.036268527586344135 +2023-06-23,196.27610046931366,-0.007593454357532892,204.57337226890874,0.006392120588685657 +2023-06-24,196.27355157494424,-0.002548894369425625,204.58497467479944,0.01160240589069872 +2023-06-25,196.2448555839216,-0.028695991022630096,204.57294609333215,-0.012028581467291133 +2023-06-26,196.23428509526667,-0.010570488654934707,204.57478245566472,0.001836362332568342 +2023-06-27,196.2999377307186,0.06565263545192579,204.57493687386753,0.0001544182028112573 +2023-06-28,196.29845632151296,-0.0014814092056383288,204.56859102391306,-0.00634584995447085 +2023-06-29,196.28370104130659,-0.014755280206372845,204.5391539762363,-0.02943704767676536 +2023-06-30,196.19888724245217,-0.08481379885441243,204.47254194675452,-0.06661202948177447 +2023-07-01,196.20142595968366,0.002538717231487908,204.4754429406854,0.0029009939308934918 +2023-07-02,196.2329059694435,0.03148000975983223,204.48524871042864,0.009805769743223891 +2023-07-03,196.23351545957098,0.0006094901274877884,204.4839114809633,-0.00133722946534931 +2023-07-04,196.26047405289194,0.026958593320955515,204.46657715531427,-0.017334325649017046 +2023-07-05,196.24573984433246,-0.014734208559474382,204.43964029639568,-0.02693685891858877 +2023-07-06,196.1806820900367,-0.06505775429576488,204.38192071530423,-0.05771958109144748 +2023-07-07,196.2161067818708,0.0354246918340948,204.41017530311623,0.02825458781200041 +2023-07-08,196.2224948368839,0.006388055013104577,204.4110668497781,0.0008915466618759638 +2023-07-09,196.2438974774284,0.021402640544494034,204.4110668497781,0.0 +2023-07-10,196.23743024612256,-0.0064672313058338204,204.4137523201741,0.002685470395988432 +2023-07-11,196.2371016648645,-0.00032858125806001226,204.4118955297696,-0.0018567904045028172 +2023-07-12,196.2398906107224,0.002788945857901126,204.41281625883343,0.000920729063835779 +2023-07-13,196.214413802144,-0.02547680857838941,204.44294480770267,0.030128548869242877 +2023-07-14,196.15893184903456,-0.05548195310944948,204.38859498421488,-0.054349823487797266 +2023-07-15,196.1574569302458,-0.0014749187887730386,204.40278304254429,0.014188058329409614 +2023-07-16,196.16876639201215,0.011309461766359163,204.4128549685497,0.010071926005423393 +2023-07-17,196.13143334117717,-0.03733305083497385,204.40011485320156,-0.012740115348151448 +2023-07-18,196.17554132005932,0.044107978882152565,204.41743859581808,0.017323742616525806 +2023-07-19,196.1834400903965,0.007898770337163796,204.41835630006992,0.0009177042518331291 +2023-07-20,196.14007453642404,-0.04336555397244979,204.41835630006992,0.0 +2023-07-21,196.14017100155576,9.646513171901461e-05,204.41835630006992,0.0 +2023-07-22,196.12763108011717,-0.012539921438587953,204.41835630006992,0.0 +2023-07-23,196.1363717976928,0.008740717575619783,204.41835630006992,0.0 +2023-07-24,196.11269090507236,-0.02368089262043327,204.41835630006992,0.0 +2023-07-25,196.13511876533195,0.02242786025959731,204.41835630006992,0.0 +2023-07-26,196.12708722900408,-0.00803153632787712,204.41835630006992,0.0 +2023-07-27,196.11736368514906,-0.00972354385501717,204.41835630006992,0.0 +2023-07-28,196.1206157388585,0.0032520537094455904,204.42267983320417,0.004323533134254376 +2023-07-29,196.11479674204767,-0.005818996810830868,204.4306670955597,0.007987262355527491 +2023-07-30,196.11540677193102,0.0006100298833473516,204.40978222257687,-0.020884872982833258 +2023-07-31,196.12740329068373,0.011996518752710017,204.42450160429232,0.014719381715451618 +2023-08-01,196.15842050296268,0.03101721227895382,204.3862693481087,-0.03823225618361903 +2023-08-02,196.16504580655229,0.006625303589601117,204.41634475446605,0.03007540635735495 +2023-08-03,196.15396251244152,-0.011083294110761699,204.41726824713783,0.000923492671773829 +2023-08-04,196.13480810287595,-0.019154409565572905,204.41726824713783,0.0 +2023-08-05,196.142100107322,0.0072920044460431654,204.41726824713783,0.0 +2023-08-06,196.14921887948978,0.007118772167785892,204.41726824713783,0.0 +2023-08-07,196.13785627395652,-0.011362605533264514,204.4147983666326,-0.0024698805052310036 +2023-08-08,196.11223412502096,-0.025622148935553923,204.38530550349637,-0.029492863136226788 +2023-08-09,196.1241451442841,0.011911019263152411,204.38604400272214,0.000738499225775513 +2023-08-10,196.12333709149243,-0.000808052791683167,204.3897141200866,0.0036701173644644314 +2023-08-11,196.1477997189228,0.02446262743038119,204.399480984708,0.00976686462138332 +2023-08-12,196.1458984531593,-0.0019012657635073538,204.40040835700316,0.0009273722951661512 +2023-08-13,196.1266428991,-0.01925555405929913,204.40040835700316,0.0 +2023-08-14,196.14405989225685,0.017416993156842864,204.40040835700316,0.0 +2023-08-15,196.1372855864192,-0.0067743058376379395,204.40040835700316,0.0 +2023-08-16,196.1183580205627,-0.018927565856500905,204.40040835700316,0.0 +2023-08-17,195.98325904171438,-0.13509897884833322,204.40040835700316,0.0 +2023-08-18,196.01232469957023,0.029065657855852578,204.44045906103264,0.04005070402948263 +2023-08-19,195.98963197676795,-0.022692722802275966,204.43353685953707,-0.00692220149556988 +2023-08-20,195.9841669176482,-0.005465059119757143,204.4313670646335,-0.0021697949035797137 +2023-08-21,196.04258474202504,0.058417824376846283,204.4322833349435,0.0009162703100003 +2023-08-22,196.0148746843665,-0.02771005765853829,204.4322833349435,0.0 +2023-08-23,196.0295391628371,0.014664478470592712,204.4370414495014,0.00475811455791586 +2023-08-24,195.99157090122637,-0.03796826161072886,204.4152720239334,-0.021769425568010092 +2023-08-25,196.00457167931714,0.013000778090770382,204.4130743239267,-0.002197700006689729 +2023-08-26,196.00850979967612,0.003938120358981223,204.41398612704558,0.0009118031188677378 +2023-08-27,196.01789973946182,0.009389939785705792,204.41398612704558,0.0 +2023-08-28,195.9867897670145,-0.031109972447325163,204.41398612704558,0.0 +2023-08-29,195.89108690193046,-0.0957028650840357,204.41523378274186,0.0012476556962894847 +2023-08-30,195.87060352103546,-0.020483380895001346,204.38759760652664,-0.02763617621522485 +2023-08-31,195.8147560844441,-0.05584743659136393,204.40348681641512,0.015889209888484856 +2023-09-01,195.82903006232834,0.014273977884244005,204.4054931811324,0.0020063647172889887 +2023-09-02,195.83852692841978,0.00949686609143896,204.39631740595559,-0.009175775176828438 +2023-09-03,195.84942725147053,0.010900323050748284,204.3978474215935,0.0015300156379112195 +2023-09-04,195.85840135514894,0.008974103678411893,204.41079803106976,0.012950609476263253 +2023-09-05,195.88855419969437,0.03015284454542666,204.41171446866338,0.0009164375936165925 +2023-09-06,195.9260024221648,0.03744822247043089,204.41171446866338,0.0 +2023-09-07,195.89774736906313,-0.028255053101673866,204.41171446866338,0.0 +2023-09-08,195.88867384235724,-0.009073526705890345,204.41171446866338,0.0 +2023-09-09,195.8909269630788,0.0022531207215763516,204.41171446866338,0.0 +2023-09-10,195.88489894162058,-0.006028021458234889,204.41171446866338,0.0 +2023-09-11,195.86177423310258,-0.023124708517997306,204.41171446866338,0.0 +2023-09-12,195.85003233561926,-0.011741897483318553,204.3782375072279,-0.03347696143546841 +2023-09-13,195.87193091318176,0.021898577562495802,204.3616038580823,-0.016633649145603613 +2023-09-14,195.85995040280477,-0.01198051037698633,204.38206378917357,0.02045993109126698 +2023-09-15,195.84596620593956,-0.013984196865209242,204.38299318485076,0.0009293956771898593 +2023-09-16,195.8588640175576,0.012897811618046262,204.38299318485076,0.0 +2023-09-17,195.85249648141823,-0.006367536139379126,204.38299318485076,0.0 +2023-09-18,195.8402919825055,-0.012204498912723238,204.37431462195147,-0.008678562899291364 +2023-09-19,195.87161239988203,0.03132041737652003,204.38876907485013,0.01445445289866143 +2023-09-20,195.9225340134447,0.05092161356267866,204.38969190487114,0.0009228300210111229 +2023-09-21,195.8953039127662,-0.027230100678508506,204.38969190487114,0.0 +2023-09-22,195.91784773702835,0.02254382426215784,204.38969190487114,0.0 +2023-09-23,195.9358750352647,0.018027298236347633,204.38969190487114,0.0 +2023-09-24,195.9407247531365,0.004849717871792336,204.38969190487114,0.0 +2023-09-25,195.95646311767808,0.0157383645415905,204.38969190487114,0.0 +2023-09-26,195.95570420606774,-0.000758911610347468,204.38969190487114,0.0 +2023-09-27,195.89921579908648,-0.05648840698125923,204.36224530442388,-0.02744660044726288 +2023-09-28,195.84290220448932,-0.05631359459715668,204.3807676706386,0.018522366214710928 +2023-09-29,195.85056571282914,0.0076635083398173265,204.4147806490003,0.034012978361715795 +2023-09-30,195.85060232643448,3.6613605345792166e-05,204.4335938995293,0.018813250529007064 +2023-10-01,195.7805750161345,-0.07002731029999154,204.43452300847653,0.0009291089472185377 +2023-10-02,195.73676718991774,-0.04380782621674939,204.4474070649208,0.012884056444278258 +2023-10-03,195.75753247118712,0.0207652812693766,204.4492536967692,0.0018466318483945088 +2023-10-04,195.76576575553267,0.008233284345550373,204.4492536967692,0.0 +2023-10-05,195.77070359749206,0.004937841959389289,204.4492536967692,0.0 +2023-10-06,195.79549271874484,0.024789121252780433,204.4492536967692,0.0 +2023-10-07,195.79300809689747,-0.0024846218473726367,204.4492536967692,0.0 +2023-10-08,195.7715446647154,-0.021463432182059705,204.44121262098042,-0.008041075788781882 +2023-10-09,195.7312496712845,-0.040294993430904924,204.4554947380187,0.01428211703827742 +2023-10-10,195.73796057615877,0.006710904874267953,204.46299087483493,0.007496136816229182 +2023-10-11,195.77992451923674,0.04196394307797391,204.46482710368093,0.001836228846002541 +2023-10-12,195.78943824485322,0.009513725616471902,204.46482710368093,0.0 +2023-10-13,195.813587421152,0.024149176298777775,204.46482710368093,0.0 +2023-10-14,195.8064650595632,-0.007122361588784543,204.46482710368093,0.0 +2023-10-15,195.82897764712644,0.02251258756322727,204.46482710368093,0.0 +2023-10-16,195.84112176907362,0.012144121947187614,204.48658627315618,0.0217591694752457 +2023-10-17,195.82353340855735,-0.017588360516270996,204.48843717367663,0.0018509005204521145 +2023-10-18,195.83156479489858,0.008031386341230018,204.48843717367663,0.0 +2023-10-19,195.8657074475651,0.03414265266650318,204.48843717367663,0.0 +2023-10-20,195.81459445889027,-0.051112988674816506,204.4835409820924,-0.004896191584236931 +2023-10-21,195.78992034327518,-0.024674115615084702,204.50296122354132,0.019420241448926845 +2023-10-22,195.78753338270533,-0.002386960569850771,204.53332520054067,0.03036397699935378 +2023-10-23,195.69078913401472,-0.09674424869061227,204.54902413516157,0.015698934620900218 +2023-10-24,195.62755519318463,-0.06323394083008793,204.52773277953483,-0.02129135562674378 +2023-10-25,195.65003537984182,0.02248018665719087,204.52956424041747,0.0018314608826415224 +2023-10-26,195.64774162532646,-0.002293754515363844,204.51215795567248,-0.017406284744993172 +2023-10-27,195.73168251900276,0.08394089367629931,204.52492603280996,0.01276807713747985 +2023-10-28,195.734897757704,0.003215238701244516,204.52584682112126,0.000920788311304932 +2023-10-29,195.7453444308197,0.010446673115694693,204.52584682112126,0.0 +2023-10-30,195.75844553707208,0.013101106252378258,204.52699251258588,0.0011456914646146288 +2023-10-31,195.78074021643488,0.022294679362801162,204.52883468185306,0.001842169267177951 +2023-11-01,195.79446838592943,0.013728169494555686,204.52883468185306,0.0 +2023-11-02,195.7742201847792,-0.020248201150224077,204.4815295208898,-0.04730516096324777 +2023-11-03,195.79151039479675,0.017290210017534946,204.46873222624433,-0.012797294645480406 +2023-11-04,195.77867857984393,-0.012831814952818377,204.47147361523776,0.002741388993428018 +2023-11-05,195.77632033190022,-0.002358247943703873,204.50551785486113,0.034044239623369776 +2023-11-06,195.77932978442925,0.003009452529028067,204.5031804359821,-0.0023374188790228345 +2023-11-07,195.78248276033202,0.003152975902764865,204.50224872097297,-0.0009317150091305848 +2023-11-08,195.78099989359032,-0.001482866741696398,204.51110895038133,0.008860229408355735 +2023-11-09,195.59361783419422,-0.18738205939609998,204.52570776612743,0.01459881574609767 +2023-11-10,195.62767842837516,0.03406059418094287,204.51287298178505,-0.01283478434237395 +2023-11-11,195.60185838527073,-0.025820043104431534,204.50635752376724,-0.006515458017815945 +2023-11-12,195.61277458218726,0.010916196916525678,204.5072684506668,0.0009109268995644015 +2023-11-13,195.56872628569462,-0.0440482964926332,204.48030552108486,-0.026962929581941353 +2023-11-14,195.5466745664709,-0.022051719223725286,204.49378853425915,0.013483013174294456 +2023-11-15,195.53421470040013,-0.012459866070770431,204.51742773574782,0.023639201488663275 +2023-11-16,195.50360692680752,-0.03060777359260669,204.53398017613404,0.016552440386220724 +2023-11-17,195.46058246530677,-0.04302446150074957,204.52691465964472,-0.007065516489319634 +2023-11-18,195.45817209373897,-0.002410371567805214,204.54354451945647,0.016629859811757797 +2023-11-19,195.3973698210109,-0.060802272728068374,204.54446095418783,0.0009164347313515009 +2023-11-20,195.4906878790141,0.0933180580032058,204.56303979726226,0.01857884307443669 +2023-11-21,195.5427115473098,0.052023668295703374,204.47594757266526,-0.08709222459700072 +2023-11-22,195.5255875107539,-0.01712403655591288,204.54856373669404,0.0726161640287728 +2023-11-23,195.53208249932553,0.006494988571631666,204.55407937918625,0.005515642492213146 +2023-11-24,195.4920739985154,-0.04000850081013141,204.5414968422425,-0.012582536943739342 +2023-11-25,195.49273069765235,0.0006566991369538755,204.54408707902985,0.0025902367873413823 +2023-11-26,195.44571542037576,-0.04701527727658572,204.5156795611375,-0.02840751789236151 +2023-11-27,195.42017898905095,-0.025536431324809428,204.5184274541322,0.0027478929947051256 +2023-11-28,195.3934032743687,-0.026775714682258922,204.51652251445438,-0.0019049396778143546 +2023-11-29,195.3872143772624,-0.00618889710628423,204.5383423041159,0.021819789661520872 +2023-11-30,195.3967457804004,0.009531403137998495,204.53927210964136,0.0009298055254589599 +2023-12-01,195.3752253950798,-0.02152038532059919,204.55448329332458,0.015211183683220497 +2023-12-02,195.35416100664068,-0.021064388439128834,204.5563319161176,0.0018486227930338828 +2023-12-03,195.34086092316298,-0.013300083477702174,204.5563319161176,0.0 +2023-12-04,195.30173743013123,-0.03912349303175233,204.5747782009475,0.018446284829877868 +2023-12-05,195.26926975016482,-0.032467679966401874,204.57662843387936,0.0018502329318721422 +2023-12-06,195.2686312453229,-0.0006385048419303985,204.59036299933382,0.01373456545445606 +2023-12-07,195.18222050925573,-0.08641073606716532,204.4916405845844,-0.09872241474943166 +2023-12-08,195.18678439282274,0.0045638835670160915,204.49347564221085,0.0018350576264651863 +2023-12-09,195.19640550219552,0.009621109372773162,204.49812803959972,0.004652397388866802 +2023-12-10,195.20292181495248,0.006516312756957632,204.49812803959972,0.0 +2023-12-11,195.0730122648382,-0.12990955011426308,204.4835680520136,-0.01455998758612509 +2023-12-12,195.05079897695478,-0.022213287883431576,204.48744864398924,0.0038805919756441654 +2023-12-13,194.99248105518834,-0.058317921766445124,204.50044488543918,0.012996241449940271 +2023-12-14,194.98552864093315,-0.006952414255181338,204.52367211630875,0.023227230869565574 +2023-12-15,194.95359017299393,-0.031938467939227166,204.51704862600195,-0.006623490306793656 +2023-12-16,195.03850142648864,0.08491125349470963,204.51888646089583,0.0018378348938767886 +2023-12-17,195.00675719650553,-0.03174422998310433,204.51906822804492,0.00018176714908690883 +2023-12-18,194.90028958583906,-0.10646761066647059,204.4613631448702,-0.057705083174710126 +2023-12-19,194.8234009450651,-0.07688864077397284,204.41355897378807,-0.04780417108213442 +2023-12-20,194.76406543071914,-0.059335514345946194,204.35318082298292,-0.060378150805149744 +2023-12-21,194.8299111480099,0.06584571729075606,204.36627770693343,0.013096883950510119 +2023-12-22,194.82530162118312,-0.004609526826783394,204.3881872980584,0.02190959112496671 +2023-12-23,194.8508308384851,0.025529217301993867,204.39003616383928,0.0018488657808859443 +2023-12-24,194.8429325350628,-0.007898303422308572,204.38696779863469,-0.003068365204597967 +2023-12-25,194.89530861335834,0.05237607829553781,204.38880684772036,0.00183904908567456 +2023-12-26,194.87200350661305,-0.02330510674528341,204.38880684772036,0.0 +2023-12-27,194.75776780417712,-0.11423570243593417,204.38880684772036,0.0 +2023-12-28,194.7256924167229,-0.032075387454227666,204.3666037686074,-0.022203079112955493 +2023-12-29,194.77497590251156,0.049283485788663484,204.38795629439014,0.02135252578273139 +2023-12-30,194.7700825689559,-0.004893333555656909,204.38887281053783,0.0009165161476971662 +2023-12-31,194.73666558578552,-0.03341698317038322,204.36821641511386,-0.020656395423969798 +2024-01-01,194.72255639638723,-0.014109189398283206,204.3934594625683,0.025243047454438283 +2024-01-02,194.70459965350915,-0.017956742878084242,204.3744779063879,-0.018981556180392545 +2024-01-03,194.6357338862756,-0.06886576723354665,204.39339048828262,0.018912581894710456 +2024-01-04,194.6116770077302,-0.02405687854539451,204.35439342618338,-0.038997062099241475 +2024-01-05,194.60926486660196,-0.0024121411282465033,204.36439703271404,0.010003606530659681 +2024-01-06,194.63804123218583,0.02877636558386598,204.36532611932,0.0009290866059643577 +2024-01-07,194.66554457563615,0.027503343450320017,204.36532611932,0.0 +2024-01-08,194.61174053926067,-0.0538040363754817,204.3662750627426,0.0009489434225997684 +2024-01-09,194.54925944031638,-0.062481098944289215,204.33868824380878,-0.027586818933826862 +2024-01-10,194.43215935758573,-0.11710008273064432,204.38031048215717,0.04162223834839551 +2024-01-11,194.46892828355183,0.036768925966100596,204.41485387988382,0.03454339772665094 +2024-01-12,194.40115199340752,-0.06777629014430886,204.41670733131218,0.001853451428360131 +2024-01-13,194.42726677432262,0.026114780915094116,204.41670733131218,0.0 +2024-01-14,194.43160813782646,0.004341363503840512,204.41670733131218,0.0 +2024-01-15,194.4802561651872,0.04864802736074125,204.41670733131218,0.0 +2024-01-16,194.55445837643921,0.07420221125201465,204.41670733131218,0.0 +2024-01-17,194.58627306628904,0.03181468984982416,204.41670733131218,0.0 +2024-01-18,194.56962417506338,-0.016648891225656826,204.41670733131218,0.0 +2024-01-19,194.58120439464463,0.011580219581247775,204.41370654360833,-0.0030007877038542574 +2024-01-20,194.57825340221086,-0.0029509924337673965,204.41554672423845,0.0018401806301255874 +2024-01-21,194.57789866807988,-0.00035473413097975026,204.41554672423845,0.0 +2024-01-22,194.51439161820122,-0.06350704987866607,204.43975207344485,0.024205349206397386 +2024-01-23,194.40851851269628,-0.10587310550494067,204.42993983318806,-0.009812240256792393 +2024-01-24,194.42554134993517,0.017022837238897637,204.442192395521,0.012252562332946582 +2024-01-25,194.41506018064436,-0.010481169290812886,204.4509692512611,0.008776855740109113 +2024-01-26,194.44321132392602,0.02815114328166146,204.48359706055015,0.03262780928903908 +2024-01-27,194.44287007385302,-0.0003412500730064494,204.49599750331694,0.012400442766789865 +2024-01-28,194.46414885851172,0.021278784658704808,204.51266106334808,0.016663560031133784 +2024-01-29,194.43051103618376,-0.033637822327960976,204.51359003301692,0.0009289696688483673 +2024-01-30,194.4425021957646,0.011991159580844624,204.5048033209482,-0.008786712068712177 +2024-01-31,194.44413547430918,0.0016332785445740683,204.481946230173,-0.02285709077520437 +2024-02-01,194.4152222177241,-0.028913256585070712,204.46151793680815,-0.02042829336485852 +2024-02-02,194.43771211789286,0.02248990016875041,204.4629576864807,0.0014397496725564451 +2024-02-03,194.42108323778422,-0.016628880108640942,204.46388713546122,0.0009294489805142803 +2024-02-04,194.44521258740127,0.024129349617055595,204.46388713546122,0.0 +2024-02-05,194.45038438160717,0.005171794205892866,204.42927244771505,-0.0346146877461706 +2024-02-06,194.39826818026953,-0.05211620133763972,204.45975267157507,0.03048022386002458 +2024-02-07,194.4476418029207,0.0493736226511885,204.46252148446106,0.0027688128859892913 +2024-02-08,194.46100126928505,0.013359466364335049,204.46252148446106,0.0 +2024-02-09,194.45747634269347,-0.003524926591580879,204.48477614435882,0.022254659897754436 +2024-02-10,194.45025716746716,-0.007219175226310881,204.48662724720054,0.0018511028417265152 +2024-02-11,194.46849629337825,0.018239125911094334,204.48662724720054,0.0 +2024-02-12,194.3420561280324,-0.1264401653458549,204.48662724720054,0.0 +2024-02-13,194.3545678708134,0.0125117427810153,204.47564823394916,-0.010979013251386505 +2024-02-14,194.3146053201602,-0.039962550653200424,204.52551604310838,0.04986780915922395 +2024-02-15,194.3529324313408,0.03832711118059251,204.5428358232496,0.017319780141207275 +2024-02-16,194.38775518729364,0.03482275595283113,204.5725352828648,0.02969945961521603 +2024-02-17,194.43298401998257,0.04522883268893452,204.57531657176915,0.002781288904344592 +2024-02-18,194.45171678300974,0.01873276302717386,204.57531657176915,0.0 +2024-02-19,194.41017166626682,-0.04154511674292394,204.5762195653998,0.0009029936306603759 +2024-02-20,194.45272660956314,0.0425549432963237,204.60588886642674,0.029669301026927997 +2024-02-21,194.37664248335838,-0.07608412620476201,204.52342943126772,-0.08245943515902354 +2024-02-22,194.39554205033255,0.018899566974170057,204.48976755958023,-0.033661871687485245 +2024-02-23,194.41502499104305,0.01948294071050327,204.50654562152778,0.01677806194754794 +2024-02-24,194.41169999974798,-0.003324991295073687,204.5083788397563,0.0018332182285121235 +2024-02-25,194.3448223105559,-0.0668776891920686,204.51530928641156,0.006930446655275091 +2024-02-26,194.3017049918402,-0.04311731871570146,204.5276494407002,0.012340154288636995 +2024-02-27,194.29672523835654,-0.004979753483667082,204.5622849357436,0.03463549504340335 +2024-02-28,194.36998478248896,0.0732595441324122,204.66338486879894,0.10109993305533749 +2024-02-29,194.32290826760007,-0.04707651488888587,204.65623285184594,-0.007152016953000384 +2024-03-01,194.36947299081626,0.04656472321619276,204.64980722367147,-0.006425628174469011 +2024-03-02,194.4075468010523,0.038073810236028294,204.6652499098632,0.015442686191732946 +2024-03-03,194.38284831616878,-0.024698484883515448,204.66618084268472,0.0009309328215181267 +2024-03-04,194.45245361246316,0.06960529629438383,204.74142621887736,0.07524537619264038 +2024-03-05,194.36511869390853,-0.08733491855463171,204.66271128505815,-0.07871493381921368 +2024-03-06,194.2786822401172,-0.08643645379132181,204.71627740589415,0.053566120835995434 +2024-03-07,194.24481118645852,-0.03387105365868592,204.71017898081834,-0.00609842507580538 +2024-03-08,194.17913517044906,-0.06567601600946205,204.67997082837275,-0.030208152445595715 +2024-03-09,194.21057694371393,0.03144177326487352,204.6923679799198,0.01239715154704868 +2024-03-10,194.19291560679423,-0.017661336919701398,204.70460449173436,0.012236511814563755 +2024-03-11,194.1445004684269,-0.04841513836731792,204.72499251905268,0.02038802731831879 +2024-03-12,194.1743318311206,0.029831362693698793,204.73987896529013,0.01488644623745472 +2024-03-13,194.12852188986778,-0.045809941252827,204.72228269247148,-0.017596272818650505 +2024-03-14,194.11366171253195,-0.014860177335833669,204.74630591662938,0.024023224157900813 +2024-03-15,194.08883334913645,-0.024828363395499764,204.74222807848903,-0.004077838140347012 +2024-03-16,193.99817134820276,-0.09066200093369048,204.75455895297097,0.012330874481932597 +2024-03-17,194.02946186796717,0.03129051976441133,204.75547650701623,0.0009175540452588393 +2024-03-18,194.00291722279894,-0.026544645168229408,204.76073972463828,0.0052632176220583915 +2024-03-19,193.83502102296075,-0.16789619983819648,204.7773243213207,0.016584596682406527 +2024-03-20,193.94992539952713,0.11490437656638619,204.9131071755973,0.13578285427661285 +2024-03-21,194.00967049400998,0.05974509448284948,204.9379099115069,0.02480273590958859 +2024-03-22,193.9824311806857,-0.027239313324287195,204.84788943616363,-0.09002047534326607 +2024-03-23,194.0096448340108,0.027213653325105724,204.8603907630945,0.012501326930873802 +2024-03-24,193.97347140666082,-0.03617342734997919,204.84909559699128,-0.011295166103224119 +2024-03-25,193.87424171713567,-0.09922968952514566,204.8475287898934,-0.0015668070978733795 +2024-03-26,193.88540819893933,0.01116648180365587,204.85518395076593,0.007655160872531042 +2024-03-27,193.91344113951607,0.02803294057673611,204.85795209510033,0.0027681443343965384 +2024-03-28,194.0127272876564,0.09928614814032244,204.88733223545262,0.029380140352287754 +2024-03-29,194.04556924414607,0.03284195648967625,204.90338461419287,0.016052378740255335 +2024-03-30,194.0582586810296,0.012689436883533745,204.90460431375007,0.0012196995571969182 +2024-03-31,194.0162869709437,-0.04197171008590317,204.90552583140928,0.0009215176592078933 +2024-04-01,193.94628242771373,-0.0700045432299703,204.79977746545717,-0.10574836595210968 +2024-04-02,193.89744971081925,-0.048832716894480654,204.84416558953012,0.04438812407295245 +2024-04-03,194.03660013913844,0.13915042831919777,204.8708919559507,0.026726366420575687 +2024-04-04,194.0919953252018,0.055395186063350366,204.87179702088392,0.0009050649332209559 +2024-04-05,194.09785620885367,0.005860883651877202,204.88645390796572,0.014656887081798686 +2024-04-06,194.15141831547047,0.053562106616794836,204.89944836037077,0.012994452405052925 +2024-04-07,194.11601986960224,-0.035398445868224826,204.9204515161268,0.021003155756034175 +2024-04-08,194.0713257366109,-0.04469413299133862,204.98135880508303,0.06090728895622988 +2024-04-09,194.04402587957347,-0.027299857037434094,204.91703465881557,-0.06432414626746663 +2024-04-10,194.06521597283887,0.02119009326540322,204.94294394843334,0.025909289617771947 +2024-04-11,194.06995632342085,0.004740350581982966,204.95980846821527,0.01686451978193304 +2024-04-12,193.9224750935646,-0.147481229856254,204.95005190861656,-0.009756559598713466 +2024-04-13,193.85738155530586,-0.06509353825873632,205.0061443178246,0.056092409208048366 +2024-04-14,194.0886392078586,0.23125765255272768,205.03499416623032,0.02884984840571292 +2024-04-15,193.99615320246085,-0.09248600539774543,204.99803431218294,-0.03695985404738167 +2024-04-16,194.0781713313863,0.0820181289254549,205.03634128385426,0.038306971671318024 +2024-04-17,194.1377262858061,0.05955495441980929,205.06788219387192,0.03154091001766801 +2024-04-18,194.148418193779,0.010691907972898207,205.06427412209965,-0.003608071772276844 +2024-04-19,194.1922353764863,0.04381718270730062,205.06642866921462,0.0021545471149693185 +2024-04-20,194.12539662324323,-0.06683875324307564,205.06920490161428,0.002776232399668288 +2024-04-21,194.1751986617743,0.04980203853105536,205.09501395272048,0.025809051106193692 +2024-04-22,194.1672674369984,-0.007931224775887813,205.10619521992476,0.01118126720427881 +2024-04-23,194.10952053819332,-0.05774689880507822,205.0813507854202,-0.02484443450455842 +2024-04-24,194.0491558673338,-0.06036467085951358,205.0154126584336,-0.06593812698659463 +2024-04-25,194.02504385944226,-0.024112007891545773,204.9834727764426,-0.031939881991007724 +2024-04-26,194.06879788847152,0.043754029029258845,204.98547853757037,0.0020057611277763954 +2024-04-27,194.0149877534273,-0.05381013504421617,204.98640984308344,0.0009313055130633074 +2024-04-28,193.97267112882034,-0.04231662460696839,204.97429165494228,-0.012118188141158726 +2024-04-29,193.90412206666312,-0.06854906215721712,204.90376592564326,-0.07052572929902112 +2024-04-30,193.87452850327176,-0.029593563391358657,204.96993294136718,0.06616701572392003 +2024-05-01,193.88216296152183,0.0076344582500667,204.96844625675195,-0.0014866846152301605 +2024-05-02,193.86511217772286,-0.01705078379896463,204.9210760404022,-0.04737021634974781 +2024-05-03,193.80193831451842,-0.0631738632044403,204.91341867604467,-0.007657364357527285 +2024-05-04,193.83293021676457,0.0309919022461429,204.92710592016363,0.013687244118955277 +2024-05-05,193.83689029061122,0.003960073846656087,204.92895599419046,0.0018500740268336813 +2024-05-06,193.7742276618894,-0.06266262872182438,204.8591697734203,-0.06978622077016894 +2024-05-07,193.86977046521872,0.09554280332932308,204.87814019474658,0.018970421326287124 +2024-05-08,193.88854881964758,0.018778354428860666,204.8790400039524,0.000899809205833435 +2024-05-09,193.90214720602762,0.013598386380039074,204.8868459469798,0.007805943027392459 +2024-05-10,193.85282923637195,-0.04931796965567514,204.8905283832378,0.003682436258003463 +2024-05-11,193.86332587230376,0.01049663593181549,204.9079600379673,0.017431654729506363 +2024-05-12,193.88084679285473,0.017520920550964547,204.9097952908517,0.0018352528843763594 +2024-05-13,193.8810396654836,0.0001928726288724647,204.87646399769233,-0.033331293159363895 +2024-05-14,193.87144071908565,-0.009598946397943564,204.83339379951906,-0.04307019817326818 +2024-05-15,193.81142118174503,-0.060019537340622264,204.8616566529547,0.02826285343564905 +2024-05-16,193.79115885425347,-0.020262327491565202,204.81823421283116,-0.04342244012354968 +2024-05-17,193.72457177256302,-0.06658708169044303,204.83960113343727,0.02136692060611267 +2024-05-18,193.72350558798655,-0.001066184576473006,204.85894923931497,0.019348105877696753 +2024-05-19,193.77294489369243,0.0494393057058744,204.86625982471477,0.0073105853998072234 +2024-05-20,193.4951171606999,-0.2778277329925345,204.86718562439202,0.0009257996772475963 +2024-05-21,193.50824100618115,0.013123845481260332,204.90161578180346,0.0344301574114354 +2024-05-22,193.52406606481685,0.015825058635698497,204.89891249291884,-0.002703288884617905 +2024-05-23,193.53771058086298,0.01364451604612782,204.90260606734077,0.0036935744219306343 +2024-05-24,193.5241456303952,-0.0135649504677815,204.90888878895768,0.006282721616912568 +2024-05-25,193.54117895174937,0.017033321354176678,204.91072916499954,0.0018403760418550519 +2024-05-26,193.56234191927902,0.021162967529647858,204.90341542338044,-0.007313741619100256 +2024-05-27,193.61019765271593,0.0478557334369043,204.94950529581172,0.046089872431281265 +2024-05-28,193.59513082040067,-0.015066832315255851,204.95811865948824,0.008613363676516883 +2024-05-29,193.5654395644414,-0.02969125595927835,204.96676962002024,0.008650960532008867 +2024-05-30,193.58940551432923,0.023965949887838178,204.95498711184277,-0.011782508177475393 +2024-05-31,193.5965731265422,0.007167612212981567,204.95662033900825,0.0016332271654846409 +2024-06-01,193.62723051216864,0.030657385626426503,204.97951403301266,0.022893694004409326 +2024-06-02,193.65044241886451,0.02321190669587736,204.99978665469197,0.020272621679310987 +2024-06-03,193.65086345971224,0.0004210408477263172,205.00162185611788,0.0018352014259050975 +2024-06-04,193.66003966284336,0.00917620313111911,205.01141835913174,0.009796503013859592 +2024-06-05,193.65331072044575,-0.006728942397614901,205.02757289203788,0.01615453290614255 +2024-06-06,193.65021665789897,-0.0030940625467792415,205.02850759077714,0.0009346987392575556 +2024-06-07,193.6095392861783,-0.04067737172067609,205.02850759077714,0.0 +2024-06-08,193.61803104228693,0.008491756108639947,205.03848532734563,0.009977736568487217 +2024-06-09,193.6060513878177,-0.011979654469229217,205.02691444329503,-0.011570884050598806 +2024-06-10,193.60512936579985,-0.0009220220178463023,205.04533056276645,0.018416119471424963 +2024-06-11,193.52409378531655,-0.08103558048330228,205.04624511730452,0.0009145545380704334 +2024-06-12,193.47492705078213,-0.049166734534423995,205.02264107551335,-0.023604041791173813 +2024-06-13,193.50264685906765,0.027719808285525005,205.02385732236857,0.0012162468552219252 +2024-06-14,193.455029653531,-0.04761720553665327,205.0265879452403,0.0027306228717236536 +2024-06-15,193.46144150913327,0.006411855602266314,205.03773341099992,0.011145465759625495 +2024-06-16,193.44488033313914,-0.016561175994127098,205.04722980600354,0.009496395003623093 +2024-06-17,193.43373550222304,-0.011144830916094861,205.04816222682803,0.0009324208244834153 +2024-06-18,193.3913425379857,-0.04239296423733663,205.0305452553882,-0.017616971439821327 +2024-06-19,193.35629540971175,-0.03504712827395906,205.02409186960674,-0.006453385781469478 +2024-06-20,193.3787682544222,0.022472844710449635,205.02874551036476,0.004653640758021993 +2024-06-21,193.37944761078046,0.0006793563582618845,205.02874551036476,0.0 +2024-06-22,193.38510259296098,0.005654982180516299,205.02874551036476,0.0 +2024-06-23,193.33727958731896,-0.047823005642015914,205.02874551036476,0.0 +2024-06-24,193.42055023124476,0.08327064392580041,205.05908326904168,0.030337758676921567 +2024-06-25,193.43935088559346,0.018800654348694934,205.03638768548768,-0.022695583553996812 +2024-06-26,193.53527444313926,0.0959235575458024,205.06067946032036,0.024291774832676083 +2024-06-27,193.5064822888411,-0.02879215429814508,205.06161314326346,0.0009336829430992566 +2024-06-28,193.56594005498192,0.059457766140809554,205.06161314326346,0.0 +2024-06-29,193.57635258269,0.010412527708069774,205.06161314326346,0.0 +2024-06-30,193.60982328700428,0.033470704314282784,205.06161314326346,0.0 +2024-07-01,193.61974722833662,0.009923941332345976,205.06161314326346,0.0 +2024-07-02,193.61205947309173,-0.0076877552448877395,205.06161314326346,0.0 +2024-07-03,193.57786085056276,-0.034198622528975875,205.0611362324855,-0.00047691077796230275 +2024-07-04,193.53770327854537,-0.04015757201739234,205.12650037111345,0.06536413862795598 +2024-07-05,193.4127351559679,-0.1249681225774566,205.08541971288506,-0.04108065822839535 +2024-07-06,193.36928226712968,-0.04345288883823173,205.02676651443448,-0.05865319845057115 +2024-07-07,193.3676720589046,-0.0016102082250881722,205.07689199211114,0.05012547767665865 +2024-07-08,193.41097779843898,0.04330573953438943,205.07968278865997,0.0027907965488225273 +2024-07-09,193.43156199645554,0.020584198016564415,205.0996524422865,0.019969653626532136 +2024-07-10,193.46017247855116,0.028610482095615453,205.13752737805953,0.0378749357730328 +2024-07-11,193.55313140831183,0.09295892976066966,205.1421637639561,0.004636385896560569 +2024-07-12,193.54872862357303,-0.004402784738800847,205.14773211873313,0.0055683547770399855 +2024-07-13,193.55462055049662,0.005891926923595747,205.1671492027035,0.019417083970381555 +2024-07-14,193.54980865928908,-0.00481189120753811,205.16808409949326,0.0009348967897437888 +2024-07-15,193.40929982264547,-0.1405088366436189,205.16808409949326,0.0 +2024-07-16,193.4129495087864,0.0036496861409318626,205.1668125902871,-0.001271509206162591 +2024-07-17,193.4325191480707,0.019569639284299,205.161706980938,-0.005105609349101314 +2024-07-18,193.44944687145207,0.016927723381371607,205.19786030130655,0.03615332036855534 +2024-07-19,193.42405688225918,-0.02538998919288815,205.19877827085716,0.0009179695506134067 +2024-07-20,193.41321260880105,-0.010844273458133102,205.21974965216822,0.020971381311056803 +2024-07-21,193.48592351200253,0.07271090320148232,205.2339978975733,0.014248245405070747 +2024-07-22,193.48535052666315,-0.0005729853393745543,205.2349281900334,0.0009302924601115592 +2024-07-23,193.4628715118157,-0.022479014847448298,205.22088968337792,-0.014038506655481342 +2024-07-24,193.4389744070273,-0.023897104788403567,205.22457744927544,0.0036877658975242866 +2024-07-25,193.3265695495357,-0.11240485749161166,205.23336850976204,0.008791060486601054 +2024-07-26,193.29895505992306,-0.027614489612631132,205.19757856899454,-0.03578994076750064 +2024-07-27,193.30867894541706,0.009723885493997386,205.17733964464318,-0.020238924351360765 +2024-07-28,193.29603671046684,-0.012642234950220654,205.17767524957853,0.00033560493534423586 +2024-07-29,193.23035621539273,-0.06568049507410478,205.1620533326181,-0.01562191696044124 +2024-07-30,193.28089792273744,0.05054170734470631,205.1638934185726,0.0018400859545124604 +2024-07-31,193.31520789621354,0.03430997347609832,205.1638934185726,0.0 +2024-08-01,193.33665246544888,0.021444569235342215,205.19899793565654,0.035104517083937026 +2024-08-02,193.27797060457365,-0.05868186087522531,205.1871938138397,-0.011804121816822999 +2024-08-03,193.2372603470594,-0.04071025751426305,205.20942047524053,0.022226661400821968 +2024-08-04,193.13823638339738,-0.09902396366200605,205.21125708497354,0.0018366097330044795 +2024-08-05,192.79150543650337,-0.34673094689401296,205.14167294729498,-0.06958413767856086 +2024-08-06,192.97025343233597,0.1787479958325946,205.1569389956396,0.015266048344614092 +2024-08-07,192.84617635578581,-0.12407707655015088,205.00203903191982,-0.154899963719771 +2024-08-08,192.73910822819266,-0.10706812759315198,205.04322767429056,0.04118864237074149 +2024-08-09,192.75920299795055,0.020094769757889708,205.01753944329698,-0.02568823099358042 +2024-08-10,192.80059505696528,0.041392059014725646,205.01859568608242,0.001056242785438144 +2024-08-11,192.71963434901429,-0.08096070795099308,204.9975611776367,-0.021034508445723077 +2024-08-12,192.70469331815085,-0.014941030863440119,204.96045952118504,-0.03710165645165375 +2024-08-13,192.67637220671284,-0.028321111438003754,204.9079329941745,-0.05252652701054217 +2024-08-14,192.74135814476884,0.0649859380559974,204.9420574800927,0.03412448591819839 +2024-08-15,192.66231428039902,-0.07904386436982236,204.93012439346882,-0.011933086623884037 +2024-08-16,192.69389776327685,0.03158348287783497,204.9278747620809,-0.002249631387911677 +2024-08-17,192.70915652053452,0.015258757257669231,204.95334282842248,0.025468066341574058 +2024-08-18,192.66078742145314,-0.04836909908138409,204.92046399518242,-0.03287883324006202 +2024-08-19,192.62832451850142,-0.03246290295172116,204.88315179102,-0.03731220416241854 +2024-08-20,192.54473914222535,-0.0835853762760621,204.81755079974155,-0.0656009912784441 +2024-08-21,192.52795040496028,-0.016788737265073905,204.78627948977598,-0.031271309965575256 +2024-08-22,192.55963189999235,0.031681495032074736,204.79567456328476,0.009395073508784435 +2024-08-23,192.5479755724993,-0.011656327493057006,204.80919796118133,0.013523397896562983 +2024-08-24,192.53575516440475,-0.012220408094549384,204.83261631757725,0.023418356395922046 +2024-08-25,192.55393758217778,0.01818241777303342,204.8331100044119,0.0004936868346590018 +2024-08-26,192.5308243113639,-0.02311327081389436,204.8340264045935,0.0009164001815804568 +2024-08-27,192.37656828529973,-0.15425602606416078,204.8340264045935,0.0 +2024-08-28,192.37469358780277,-0.0018746974969587882,204.80895240016724,-0.0250740044262443 +2024-08-29,192.35393548689143,-0.020758100911336896,204.7646273010518,-0.044325099115440025 +2024-08-30,192.28504805184343,-0.06888743504799777,204.71855130354066,-0.04607599751113867 +2024-08-31,192.27434758225507,-0.010700469588357464,204.7379976336434,0.01944633010273833 +2024-09-01,192.233095775552,-0.04125180670308737,204.73782488902262,-0.00017274462078376018 +2024-09-02,192.2415727429379,0.008476967385917078,204.76494671628953,0.02712182726691026 +2024-09-03,192.25443418906914,0.012861446131239518,204.78860406116465,0.023657344875118724 +2024-09-04,192.20245179555192,-0.051982393517221226,204.742009281036,-0.046594780128657476 +2024-09-05,192.19918936673636,-0.00326242881556027,204.73701710331852,-0.004992177717468849 +2024-09-06,192.11404959021507,-0.08513977652128801,204.7612372791385,0.02422017581997693 +2024-09-07,192.07742912434628,-0.03662046586879342,204.7202652332626,-0.04097204587588976 +2024-09-08,192.07970265496039,0.002273530614104402,204.72212727711502,0.0018620438524123983 +2024-09-09,192.12968448256706,0.049981827606671914,204.73112398350028,0.008996706385261177 +2024-09-10,192.15573610218394,0.026051619616879407,204.73957113866996,0.008447155169676535 +2024-09-11,192.23573975949776,0.0800036573138243,204.77891937365106,0.03934823498110518 +2024-09-12,192.26757795208255,0.03183819258478593,204.78074425818215,0.0018248845310893103 +2024-09-13,192.20720953786014,-0.06036841422240968,204.78074425818215,0.0 +2024-09-14,192.20800490026102,0.0007953624008791849,204.78074425818215,0.0 +2024-09-15,192.15287089756313,-0.05513400269788349,204.78074425818215,0.0 +2024-09-16,192.19947125242786,0.04660035486472225,204.81478836305595,0.03404410487380005 +2024-09-17,192.16872558219708,-0.030745670230771793,204.83269017476232,0.01790181170636629 +2024-09-18,192.13491990002134,-0.033805682175739094,204.7880264300589,-0.04466374470342771 +2024-09-19,192.06998410030147,-0.06493579971987629,204.71140551193628,-0.07662091812261451 +2024-09-20,192.06716776371837,-0.0028163365830948806,204.66347958043326,-0.04792593150301627 +2024-09-21,192.07331391685537,0.006146153136995736,204.68178515707044,0.018305576637175136 +2024-09-22,192.11405244900385,0.040738532148481,204.67007263272308,-0.011712524347359476 +2024-09-23,192.12007529376692,0.0060228447630663595,204.6727500131989,0.0026773804758306596 +2024-09-24,192.10134571816505,-0.018729575601867055,204.6494002158415,-0.023349797357411717 +2024-09-25,192.11451321357367,0.013167495408623608,204.66386311842484,0.014462902583346704 +2024-09-26,192.1367346220721,0.022221408498438677,204.66238988409245,-0.0014732343323942132 +2024-09-27,192.11117966869108,-0.02555495338103242,204.674112785568,0.011722901475565095 +2024-09-28,192.12023956872105,0.009059900029967594,204.6768814456123,0.0027686600442962117 +2024-09-29,192.10443470957685,-0.015804859144196826,204.6768814456123,0.0 +2024-09-30,192.08708222883826,-0.017352480738594522,204.6768814456123,0.0 +2024-10-01,191.9965599408243,-0.09052228801394335,204.6768814456123,0.0 +2024-10-02,191.91487974787938,-0.08168019294492979,204.66655134294453,-0.010330102667779784 +2024-10-03,191.94105093508873,0.02617118720934286,204.6856395410911,0.019088198146562263 +2024-10-04,191.96269462211563,0.02164368702690922,204.68747288092436,0.0018333398332686102 +2024-10-05,191.9811254231947,0.01843080107906303,204.68747288092436,0.0 +2024-10-06,191.976665165112,-0.004460258082701785,204.691273443019,0.0038005620946535146 +2024-10-07,191.96283922804315,-0.013825937068844496,204.7224039996077,0.03113055658869257 +2024-10-08,192.04341206180501,0.0805728337618632,204.7420053742056,0.019601374597897347 +2024-10-09,192.07084282943356,0.027430767628544572,204.7438402532557,0.0018348790501079293 +2024-10-10,192.15977777989107,0.08893495045751365,204.74447877745288,0.000638524197171364 +2024-10-11,192.10480842438963,-0.05496935550144144,204.6967752723702,-0.047703505082694164 +2024-10-12,192.0918927491057,-0.012915675283920791,204.71775555178408,0.020980279413890912 +2024-10-13,192.09942620807405,0.007533458968339346,204.71592854788727,-0.0018270038968069002 +2024-10-14,192.00859145951554,-0.09083474855850682,204.71777069665043,0.001842148763159912 +2024-10-15,192.06359473763442,0.05500327811887473,204.73612119252564,0.01835049587521098 +2024-10-16,192.06485292392162,0.001258186287202534,204.7456710549831,0.009549862457447489 +2024-10-17,192.13308572379037,0.06823279986875264,204.74751808445188,0.0018470294687915612 +2024-10-18,192.15177812948198,0.018692405691609792,204.74751808445188,0.0 +2024-10-19,192.15616324361085,0.004385114128865553,204.74751808445188,0.0 +2024-10-20,192.10707293438497,-0.04909030922587476,204.74751808445188,0.0 +2024-10-21,192.07519832140193,-0.031874612983045836,204.69660659696754,-0.05091148748434193 +2024-10-22,192.06904828845913,-0.006150032942798589,204.66394530546893,-0.032661291498612854 +2024-10-23,192.01171668755725,-0.05733160090187539,204.58620351179576,-0.07774179367316947 +2024-10-24,192.0054489567369,-0.0062677308203547,204.58044377741928,-0.005759734376482584 +2024-10-25,192.01410449210346,0.008655535366557388,204.60037827760158,0.019934500182301917 +2024-10-26,192.01019260684558,-0.003911885257878112,204.59220839885626,-0.008169878745320602 +2024-10-27,192.00514073873407,-0.005051868111507929,204.57214034850904,-0.020068050347219923 +2024-10-28,191.98967730750707,-0.015463431227004776,204.59841663027265,0.026276281763614406 +2024-10-29,191.96285020307343,-0.026827104433635895,204.59563599120992,-0.0027806390627347355 +2024-10-30,191.97221533424738,0.009365131173950658,204.63254582909,0.03690983788007429 +2024-10-31,191.87612358425304,-0.09609174999434344,204.52736260650337,-0.10518322258661783 +2024-11-01,191.904507572135,0.028383987881966277,204.53224991941167,0.004887312908294916 +2024-11-02,191.9132466142517,0.008739042116701512,204.53495624330384,0.0027063238921698485 +2024-11-03,191.92024230539565,0.00699569114394194,204.5498498795759,0.014893636272063304 +2024-11-04,191.90320768622033,-0.017034619175319676,204.55168307544784,0.001833195871938642 +2024-11-05,191.93189699310514,0.028689306884814414,204.5533034420427,0.0016203665948637536 +2024-11-06,191.80565454522207,-0.12624244788307237,204.58509524925236,0.03179180720965746 +2024-11-07,191.7587233130613,-0.046931232160773106,204.64283705159704,0.05774180234467963 +2024-11-08,191.71781358180488,-0.040909731256419946,204.64470441671534,0.0018673651183007678 +2024-11-09,191.6808403337604,-0.03697324804448954,204.6717206381285,0.027016221413163066 +2024-11-10,191.72475749562386,0.04391716186347594,204.69268650225308,0.020965864124576683 +2024-11-11,191.61718541090497,-0.10757208471889612,204.72603709957832,0.033350597325238596 +2024-11-12,191.76620119635865,0.14901578545368466,204.7306677640658,0.004630664487478953 +2024-11-13,191.6538331829123,-0.11236801344634273,204.65364511965157,-0.07702264441422813 +2024-11-14,191.62331291992396,-0.030520262988346758,204.67236273367348,0.018717614021909412 +2024-11-15,191.63061245687547,0.00729953695150698,204.6563638498613,-0.015998883812187614 +2024-11-16,191.61100664711557,-0.01960580975989501,204.59894305965128,-0.057420790210017 +2024-11-17,191.60332965245834,-0.007676994657231262,204.60368296070777,0.00473990105649591 +2024-11-18,191.60830527296866,0.004975620510322187,204.63169413091904,0.028011170211271974 +2024-11-19,191.65000545347905,0.04170018051038937,204.63354707480238,0.0018529438833354561 +2024-11-20,191.69050117948322,0.040495726004166954,204.63354707480238,0.0 +2024-11-21,191.7849091505561,0.0944079710728829,204.7028502632187,0.06930318841631333 +2024-11-22,191.74081529513182,-0.04409385542427913,204.6838916274631,-0.0189586357555811 +2024-11-23,191.75013980708508,0.009324511953252568,204.67738077214625,-0.0065108553168613525 +2024-11-24,191.72513540946463,-0.02500439762044948,204.65694077104024,-0.020440001106010186 +2024-11-25,191.76525043680752,0.04011502734289252,204.64680474929935,-0.01013602174089101 +2024-11-26,191.81948037892448,0.05422994211696164,204.6516313780869,0.00482662878755491 +2024-11-27,191.7228118936449,-0.0966684852795936,204.65435453498392,0.0027231568970194076 +2024-11-28,191.81526700930704,0.09245511566214759,204.6602913965083,0.005936861524389769 +2024-11-29,191.9140991873151,0.09883217800805255,204.66213688002858,0.0018454835202703634 +2024-11-30,191.9515647542178,0.037465566902710634,204.69914316586213,0.0370062858335416 +2024-12-01,191.97817988232,0.026615128102207564,204.7018936419987,0.002750476136583302 +2024-12-02,191.9952604302111,0.017080547891083597,204.70772129133005,0.00582764933133717 +2024-12-03,192.03003934330354,0.03477891309245251,204.72354668187205,0.01582539054200538 +2024-12-04,191.97557636212957,-0.05446298117396964,204.7432698270335,0.019723145161435696 +2024-12-05,191.94865617799132,-0.02692018413824826,204.70817273861056,-0.0350970884229298 +2024-12-06,191.96355038749067,0.014894209499345834,204.79451481146924,0.08634207285868456 +2024-12-07,191.97320056918076,0.00965018169009113,204.7972114496024,0.002696638133159013 +2024-12-08,191.99774496326765,0.024544394086888133,204.78971577264247,-0.007495676959933917 +2024-12-09,191.92933440242487,-0.06841056084277852,204.82445969127187,0.034743918629402515 +2024-12-10,191.89626690741937,-0.033067495005496994,204.82916225095508,0.004702559683209984 +2024-12-11,191.91672118646005,0.020454279040677648,204.87212766123054,0.04296541027545686 +2024-12-12,191.9442947048167,0.027573518356660998,204.92108109061277,0.048953429382237346 +2024-12-13,192.00018343695163,0.05588873213491752,204.95401730335757,0.03293621274480074 +2024-12-14,191.97811350354598,-0.022069933405646225,204.95494932800722,0.0009320246496429263 +2024-12-15,191.9499759156468,-0.02813758789918097,204.95494932800722,0.0 +2024-12-16,191.9234041839211,-0.026571731725709924,204.94321458005913,-0.011734747948082713 +2024-12-17,191.91939555604583,-0.004008627875265347,204.89606648591197,-0.047148094147161146 +2024-12-18,191.83670861375973,-0.0826869422861023,204.8975571307932,0.0014906448812155304 +2024-12-19,191.74001865934548,-0.096689954414245,204.90790756306978,0.010350432276595711 +2024-12-20,191.8091498966016,0.06913123725612991,204.90974647564028,0.0018389125704914022 +2024-12-21,191.82306684494796,0.013916948346349045,204.90974647564028,0.0 +2024-12-22,191.76726191592883,-0.05580492901913203,204.89754195767762,-0.012204517962658201 +2024-12-23,191.75511552861883,-0.012146387309996953,204.8993907130513,0.0018487553736861173 +2024-12-24,191.8371207880011,0.08200525938227088,204.9400165130075,0.04062579995618876 +2024-12-25,191.9058230006407,0.0687022126396073,204.94812354973408,0.008107036726585193 +2024-12-26,191.8228775159902,-0.08294548465050866,204.94905990954666,0.0009363598125844419 +2024-12-27,191.8667583305409,0.04388081455070392,204.92474153500294,-0.024318374543724985 +2024-12-28,191.85384232331876,-0.012916007222145254,204.88433901550096,-0.04040251950198126 +2024-12-29,191.8279649186781,-0.025877404640652912,204.8955452469501,0.011206231449136794 +2024-12-30,191.8082870406342,-0.019677878043893315,204.86525223602408,-0.030293010926015995 +2024-12-31,191.75458982523907,-0.053697215395146713,204.83065925869215,-0.03459297733192557 +2025-01-01,191.7843414033305,0.02975157809143525,204.86843945632137,0.03778019762921758 +2025-01-02,191.78060333912396,-0.0037380642065443226,204.8691643556996,0.0007248993782411617 +2025-01-03,191.71150621426452,-0.06909712485943942,204.8783701531948,0.009205797495184243 +2025-01-04,191.71240762529098,0.0009014110264615738,204.91732296095498,0.038952807760182395 +2025-01-05,191.7819608907519,0.069553265460911,204.92102987935155,0.0037069183965741104 +2025-01-06,191.86585647953262,0.08389558878073444,204.93081805046077,0.009788171109221366 +2025-01-07,191.73171170184366,-0.1341447776889595,204.93266766921607,0.0018496187553012078 +2025-01-08,191.7589912635617,0.027279561718046352,204.96224706496204,0.02957939574596935 +2025-01-09,191.80752045836783,0.04852919480612172,204.97714185957685,0.014894794614804141 +2025-01-10,191.8508471145548,0.043326656186962964,204.96076028776918,-0.016381571807670525 +2025-01-11,191.8641879551241,0.013340840569298962,204.96261195078267,0.0018516630134968182 +2025-01-12,191.8400986494391,-0.024089305684981355,204.96261195078267,0.0 +2025-01-13,191.73579219531294,-0.10430645412617423,204.89911453183018,-0.06349741895249394 +2025-01-14,191.7363341581681,0.0005419628551521782,204.89514519680986,-0.003969335020315157 +2025-01-15,191.6786459006205,-0.05768825754759632,204.93840922285094,0.04326402604107216 +2025-01-16,191.74478222783125,0.06613632721075646,204.92021424728577,-0.018194975565165805 +2025-01-17,191.71174084844537,-0.033041379385878145,204.9431837297329,0.022969482447138034 +2025-01-18,191.66069654997264,-0.05104429847273195,204.8737009863593,-0.06948274337361227 +2025-01-19,191.48271494017737,-0.17798160979526756,204.77398034017537,-0.09972064618392551 +2025-01-20,191.45070798444257,-0.03200695573480061,204.71443005959586,-0.05955028057951495 +2025-01-21,191.48110882087283,0.03040083643026037,204.71744109486465,0.003011035268798423 +2025-01-22,191.45335619633767,-0.027752624535168025,204.71865358680964,0.001212491944983185 +2025-01-23,191.5212676425886,0.06791144625094603,204.723184147473,0.004530560663368988 +2025-01-24,191.46277738630738,-0.05849025628123172,204.69133156150676,-0.031852585966248625 +2025-01-25,191.46454353512456,0.0017661488171825113,204.692721986542,0.0013904250352538838 +2025-01-26,191.39758321022555,-0.06696032489901427,204.69708809632883,0.0043661097868152865 +2025-01-27,191.28459285788944,-0.11299035233611221,204.64743560329438,-0.04965249303444352 +2025-01-28,191.25398350063114,-0.030609357258299497,204.6303316580614,-0.017103945232975093 +2025-01-29,191.35951629623904,0.10553279560789974,204.6317158732479,0.001384215186504889 +2025-01-30,191.27600520522003,-0.08351109101900533,204.64175147926352,0.010035606015605936 +2025-01-31,191.26845862271267,-0.00754658250735929,204.6574127918152,0.01566131255168557 +2025-02-01,191.19589597248014,-0.07256265023252695,204.54651451792742,-0.11089827388778417 +2025-02-02,191.0562664270918,-0.13962954538834538,204.39371165701894,-0.15280286090847994 +2025-02-03,190.90862579550924,-0.14764063158256135,204.04118223058435,-0.35252942643458596 +2025-02-04,190.96256900980865,0.05394321429940874,204.10808998299717,0.06690775241281699 +2025-02-05,191.02735995521468,0.06479094540603114,204.11294536086046,0.004855377863293597 +2025-02-06,191.01352644864815,-0.013833506566527376,204.15089827496294,0.03795291410247614 +2025-02-07,191.18122601589062,0.16769956724246526,204.20622086597473,0.05532259101178738 +2025-02-08,191.28858550627788,0.10735949038726744,204.22942714740694,0.023206281432209153 +2025-02-09,191.2765549540797,-0.012030552198183386,204.23125533551018,0.0018281881032464753 +2025-02-10,191.32478468914394,0.048229735064239776,204.23125533551018,0.0 +2025-02-11,191.26953745247152,-0.0552472366724146,204.16004225683838,-0.07121307867180349 +2025-02-12,191.30687891294173,0.03734146047020204,204.22433563377493,0.06429337693654702 +2025-02-13,191.24236600018878,-0.0645129127529458,204.15653608049027,-0.06779955328465803 +2025-02-14,191.22319947921204,-0.01916652097673932,204.1718784079456,0.015342327455329041 +2025-02-15,191.22082953295669,-0.002369946255356581,204.16257933335325,-0.009299074592348688 +2025-02-16,191.22784707708584,0.00701754412915534,204.16306578725292,0.00048645389966850416 +2025-02-17,191.27302969992584,0.045182622840002296,204.1823994005313,0.019333613278377015 +2025-02-18,191.21033024040162,-0.06269945952422518,204.15920646534838,-0.023192935182919427 +2025-02-19,191.2845608831554,0.07423064275377556,204.16906114677167,0.009854681423291822 +2025-02-20,191.28292774220608,-0.0016331409493091087,204.1718291846602,0.0027680378885293067 +2025-02-21,191.26951914082483,-0.013408601381257768,204.0771531063912,-0.09467607826900348 +2025-02-22,191.30541538946002,0.035896248635197026,204.0462633710554,-0.030889735335790647 +2025-02-23,191.30935160067685,0.003936211216824859,204.0674696774546,0.02120630639919341 +2025-02-24,191.17796789000315,-0.13138371067370258,204.07207241897146,0.004602741516862352 +2025-02-25,191.11880272662174,-0.05916516338140809,204.04272546558752,-0.02934695338393567 +2025-02-26,191.08477447992763,-0.0340282466941062,204.09424360933036,0.051518143742839584 +2025-02-27,191.04521892589995,-0.03955555402768596,204.0947494486574,0.0005058393270473971 +2025-02-28,190.83207989799945,-0.2131390279004961,204.00765033060455,-0.08709911805286197 +2025-03-01,190.77378577013525,-0.05829412786420107,204.0147500931323,0.0070997625277584575 +2025-03-02,190.59262912192185,-0.1811566482134026,204.0263337363098,0.011583643177488057 +2025-03-03,190.41098354895988,-0.18164557296196904,203.96325967703726,-0.0630740592725374 +2025-03-04,190.59631999196756,0.18533644300768515,204.12106624210728,0.15780656507001822 +2025-03-05,190.61915944536736,0.022839453399797094,204.19510681474122,0.07404057263394748 +2025-03-06,190.58917933251513,-0.029980112852229013,204.17628948567676,-0.01881732906446132 +2025-03-07,190.68407682195289,0.09489748943775567,204.20426116504257,0.027971679365805358 +2025-03-08,190.6989328295304,0.014856007577520813,204.21318458107444,0.00892341603187674 +2025-03-09,190.55048837153427,-0.14844445799613482,204.04778948292355,-0.1653950981508956 +2025-03-10,190.35852147378486,-0.19196689774940978,203.82052747076563,-0.2272620121579223 +2025-03-11,190.55902014479037,0.200498671005505,203.91926693442412,0.09873946365848951 +2025-03-12,190.5219306857173,-0.037089459073058606,203.8687613203088,-0.05050561411530907 +2025-03-13,190.47626905709586,-0.045661628621445516,203.86274135199577,-0.006019968313040636 +2025-03-14,190.4408986528748,-0.035370404221055196,203.86711016842054,0.004368816424772604 +2025-03-15,190.45865357700396,0.01775492412915014,203.9101911121925,0.043080943771968805 +2025-03-16,190.41340411508062,-0.045249461923333456,203.93853874318995,0.02834763099744464 +2025-03-17,190.46469342114375,0.05128930606312565,203.97057347610223,0.03203473291227965 +2025-03-18,190.44087176227086,-0.02382165887289034,203.97161369717116,0.0010402210689335334 +2025-03-19,190.3923903425527,-0.04848141971817199,204.00202522391416,0.030411526742994965 +2025-03-20,190.44892926700265,0.056538924449967,203.9961482265531,-0.005876997361070835 +2025-03-21,190.45418116912447,0.005251902121813146,203.99798170104248,0.0018334744893877541 +2025-03-22,190.44451786216405,-0.009663306960419504,203.99798170104248,0.0 +2025-03-23,190.42976592131592,-0.014751940848128697,203.99798170104248,0.0 +2025-03-24,190.39156277422677,-0.03820314708914907,203.99270333192203,-0.005278369120446769 +2025-03-25,190.39199337114948,0.0004305969227118567,203.99524351551756,0.0025401835955278784 +2025-03-26,190.41400227670192,0.022008905552439728,204.021935302042,0.026691786524452255 +2025-03-27,190.44211940437742,0.028117127675500342,204.02284526544983,0.0009099634078211238 +2025-03-28,190.35632063123467,-0.08579877314275564,204.02679329804397,0.00394803259413834 +2025-03-29,190.293353289403,-0.06296734183166564,204.02919665735558,0.0024033593116143948 +2025-03-30,190.2542227955466,-0.03913049385639056,204.02477526285935,-0.004421394496233688 +2025-03-31,190.25947707644852,0.0052542809019087144,204.0122005150782,-0.012574747781144424 +2025-04-01,190.27315800585615,0.013680929407627218,204.10751351536314,0.09531300028493206 +2025-04-02,190.28089872497466,0.007740719118515926,204.12116868207485,0.013655166711714628 +2025-04-03,190.32392011874865,0.04302139377398362,204.13358788638857,0.012419204313715682 +2025-04-04,190.32702095223695,0.0031008334883040334,204.13318500554652,-0.0004028808420457608 +2025-04-05,190.34312051839305,0.01609956615610031,204.14471249639297,0.011527490846447108 +2025-04-06,190.11372120217155,-0.2293993162215031,204.14563816782714,0.0009256714341745464 +2025-04-07,190.16950496342156,0.055783761250012276,204.19352596916977,0.04788780134262538 +2025-04-08,190.04664997279565,-0.12285499062591043,204.17952294159238,-0.014003027577388139 +2025-04-09,189.8604225319112,-0.1862274408844371,203.90794975255966,-0.271573189032722 +2025-04-10,189.79477895442557,-0.06564357748564476,203.91156555559112,0.003615803031465248 +2025-04-11,189.90053987194946,0.10576091752389516,203.90185681625934,-0.009708739331784955 +2025-04-12,189.81257849448343,-0.08796137746602994,203.80274807358091,-0.09910874267842473 +2025-04-13,189.81578483750604,0.0032063430226116907,203.78631485094382,-0.01643322263709024 +2025-04-14,189.81990828831505,0.0041234508090042254,203.82430537898452,0.03799052804069447 +2025-04-15,189.7864194976025,-0.033488790712539185,203.8279910828628,0.0036857038782898144 +2025-04-16,189.826585130661,0.040165633058478534,203.84647668017953,0.018485597316725944 +2025-04-17,189.9072027826178,0.08061765195679982,203.84577047774192,-0.0007062024376125464 +2025-04-18,189.9307057022583,0.02350291964052076,203.8550959530469,0.009325475304990505 +2025-04-19,189.94137407746408,0.010668375205767688,203.86342985955403,0.008333906507118627 +2025-04-20,189.93766396451585,-0.0037101129482266515,203.87887207896696,0.015442219412932445 +2025-04-21,189.88729009607943,-0.05037386843642366,203.81173111247992,-0.06714096648704526 +2025-04-22,189.81002824216733,-0.07726185391209128,203.90761638315445,0.09588527067452901 +2025-04-23,189.89091205021248,0.08088380804514372,203.92704579746376,0.019429414309314552 +2025-04-24,189.89535050912792,0.0044384589154446985,203.92035996683552,-0.006685830628242684 +2025-04-25,189.9796905291031,0.08434001997517271,203.94775916625488,0.02739919941936364 +2025-04-26,190.00391247551428,0.024221946411188355,203.97091756861298,0.02315840235809219 +2025-04-27,190.02330663112517,0.019394155610882535,203.9718421754843,0.000924606871336664 +2025-04-28,190.0072021179213,-0.01610451320385664,203.9718421754843,0.0 +2025-04-29,190.03138807811217,0.024185960190862943,203.95164968405643,-0.020192491427877712 +2025-04-30,190.004768892147,-0.026619185965159886,203.9522654441208,0.0006157600643632577 +2025-05-01,190.01430610521837,0.009537213071354245,203.91723538752294,-0.0350300565978614 +2025-05-02,189.9957412192588,-0.01856488595956307,203.91243176914514,-0.004803618377792418 +2025-05-03,189.99417519677803,-0.0015660224807731993,203.9151882676802,0.002756498535063656 +2025-05-04,190.01147695801117,0.017301761233142088,203.9151882676802,0.0 +2025-05-05,190.03402836235412,0.022551404342948445,203.915345620688,0.00015735300777919292 +2025-05-06,190.0240072086812,-0.010021153672909122,203.8859438446205,-0.029401776067487617 +2025-05-07,189.97860186226373,-0.04540534641748195,203.8812509050501,-0.0046929395703898535 +2025-05-08,189.56667891177736,-0.41192295048637106,203.88218502114887,0.0009341160987617059 +2025-05-09,189.44191544046993,-0.12476347130743193,203.93229467791858,0.050109656769706135 +2025-05-10,189.27859299661526,-0.16332244385466765,203.93415309613843,0.0018584182198537746 +2025-05-11,189.33884854912063,0.060255552505367405,203.94103909784698,0.006886001708551248 +2025-05-12,189.46567764810638,0.1268290989857519,203.96706451272198,0.026025414874993658 +2025-05-13,189.2953051402284,-0.1703725078779712,203.77652217954588,-0.19054233317609715 +2025-05-14,189.35945520142323,0.06415006119482314,203.77445750824745,-0.0020646712984273563 +2025-05-15,189.4208892409642,0.06143403954095561,203.7786754412633,0.004217933015837616 +2025-05-16,189.38554315384775,-0.035346087116437275,203.73241449752334,-0.046260943739952154 +2025-05-17,189.36792198718783,-0.017621166659921528,203.7134584796053,-0.018956017918043244 +2025-05-18,189.3543325798737,-0.01358940731412872,203.66039769771382,-0.05306078189147456 +2025-05-19,189.48470248177466,0.13036990190096276,203.6776526816363,0.017254983922470046 +2025-05-20,189.59539817506624,0.11069569329157503,203.68528814055807,0.007635458921782856 +2025-05-21,189.6674601141979,0.07206193913165748,203.6608285581776,-0.024459582380472966 +2025-05-22,189.61888000135704,-0.04858011284085251,203.62294123178208,-0.03788732639551995 +2025-05-23,189.53693590519143,-0.08194409616561416,203.50870210723792,-0.11423912454415586 +2025-05-24,189.56389708752266,0.026961182331234568,203.55609114733076,0.047389040092838286 +2025-05-25,189.5603869105527,-0.0035101769699679153,203.5724764426165,0.01638529528574395 +2025-05-26,189.56065706212146,0.0002701515687704159,203.57258928317347,0.00011284055696592077 +2025-05-27,189.48178692421075,-0.0788701379107124,203.56679448305727,-0.005794800116206034 +2025-05-28,189.557063431424,0.0752765072132604,203.57494161359296,0.00814713053568994 +2025-05-29,189.53026387423367,-0.026799557190344103,203.5589346183364,-0.016006995256560685 +2025-05-30,189.51389817546087,-0.016365698772801807,203.6104220468124,0.05148742847600829 +2025-05-31,189.5560327311818,0.04213455572093494,203.62035898355873,0.009936936746328229 +2025-06-01,189.5948478159302,0.03881508474839279,203.62218733852862,0.0018283549698878687 +2025-06-02,189.52764509883073,-0.06720271709946246,203.5508652005511,-0.07132213797751774 +2025-06-03,189.5694438177743,0.04179871894356779,203.5730446627459,0.02217946219479927 +2025-06-04,189.61760743713336,0.048163619359058885,203.60643905129993,0.03339438855402932 +2025-06-05,189.55360861819673,-0.06399881893662496,203.60919745808494,0.002758406785005718 +2025-06-06,189.59919968268773,0.04559106449099204,203.57894196955857,-0.030255488526364616 +2025-06-07,189.5996921758383,0.0004924931505740915,203.5452956782165,-0.0336462913420803 +2025-06-08,189.59442014719724,-0.005272028641059023,203.564974884618,0.019679206401519878 +2025-06-09,189.48373832723757,-0.11068181995966597,203.57900902141427,0.01403413679625487 +2025-06-10,189.4799501114776,-0.0037882157599824495,203.6074496001225,0.028440578708227804 +2025-06-11,189.4041517252537,-0.07579838622388024,203.5803279065159,-0.027121693606602548 +2025-06-12,189.34562722633075,-0.05852449892296363,203.59543037027302,0.01510246375713109 +2025-06-13,189.26726855515156,-0.07835867117918838,203.57627168980278,-0.019158680470241052 +2025-06-14,189.2840403277715,0.01677177261993279,203.60765446240532,0.031382772602540854 +2025-06-15,189.29486481636678,0.01082448859528995,203.60607468789203,-0.001579774513288612 +2025-06-16,189.2499430705058,-0.044921745860989404,203.62494662720084,0.01887193930880926 +2025-06-17,189.31114396770138,0.06120089719559019,203.65676949015167,0.03182286295083259 +2025-06-18,189.3186163995467,0.007472431845314986,203.6604196516383,0.0036501614866324417 +2025-06-19,189.32558584992057,0.006969450373873087,203.65339795889446,-0.007021692743848007 +2025-06-20,189.2218466594866,-0.10373919043396995,203.55895057221852,-0.0944473866759381 +2025-06-21,189.1293105482004,-0.09253611128619355,203.4717186726688,-0.08723189954972099 +2025-06-22,189.10600204959258,-0.023308498607832462,203.4100269615848,-0.06169171108399496 +2025-06-23,189.26901342624998,0.1630113766574084,203.42153839093223,0.011511429347422109 +2025-06-24,189.29198575157304,0.022972325323053155,203.44483514716518,0.02329675623295202 +2025-06-25,189.33954284604428,0.047557094471244454,203.44667653573117,0.0018413885659924745 +2025-06-26,189.3644877142528,0.024944868208507387,203.44384937632958,-0.0028271594015905066 +2025-06-27,189.3905644957529,0.026076781500108837,203.42705448757985,-0.016794888749728898 +2025-06-28,189.38565678012696,-0.004907715625932951,203.4388549187404,0.011800431160537528 +2025-06-29,189.36166955900867,-0.02398722111828988,203.43976704764356,0.0009121289031668312 +2025-06-30,189.3812159600972,0.019546401088518905,203.4376103918521,-0.002156655791452522 +2025-07-01,189.33912886276423,-0.042087097332967005,203.37251843413338,-0.065091957718721 +2025-07-02,189.26323114195534,-0.07589772080888224,203.2428348893051,-0.12968354482828204 +2025-07-03,189.37394352312612,0.11071238117077087,203.3043502235344,0.06151533422931266 +2025-07-04,189.3343195850383,-0.03962393808782849,203.30391561014025,-0.0004346133941623975 +2025-07-05,189.34467529833577,0.010355713297485636,203.31145605007904,0.007540439938793497 +2025-07-06,189.3487403182291,0.004065019893317867,203.331461332739,0.020005282659951718 +2025-07-07,189.3603238863617,0.011583568132607525,203.3201850106739,-0.01127632206510043 +2025-07-08,189.3681533537352,0.007829467373511534,203.32201002084489,0.0018250101709895716 +2025-07-09,189.38673664932526,0.01858329559004801,203.39432515451463,0.07231513366974696 +2025-07-10,189.36791110032127,-0.018825549003992137,203.4242984247673,0.02997327025266827 +2025-07-11,189.43913719200336,0.07122609168209237,203.46088188393387,0.03658345916656458 +2025-07-12,189.43210400526962,-0.0070331867337358744,203.46933260199305,0.008450718059179962 +2025-07-13,189.40630134096514,-0.02580266430447864,203.4663105341922,-0.003022067800856121 +2025-07-14,189.3683872372446,-0.037914103720538606,203.45642176658546,-0.009888767606724969 +2025-07-15,189.27465780404694,-0.09372943319766591,203.3380963269165,-0.1183254396689506 +2025-07-16,189.15053057370667,-0.12412723034026385,203.35554307012717,0.017446743210655313 +2025-07-17,189.1938526528348,0.04332207912813146,203.40897451559468,0.053431445467509775 +2025-07-18,189.18698738898263,-0.006865263852176895,203.43711789885572,0.028143383261038935 +2025-07-19,189.23116586091416,0.044178471931530794,203.4407922457805,0.0036743469247824123 +2025-07-20,189.17992032993317,-0.05124553098099227,203.45512065905467,0.014328413274171226 +2025-07-21,189.28954081634365,0.10962048641047772,203.51896753667145,0.06384687761678265 +2025-07-22,189.42916515932527,0.13962434298161952,203.5254159798978,0.006448443226332756 +2025-07-23,189.40350225950564,-0.025662899819621998,203.5254159798978,0.0 +2025-07-24,189.4238488139464,0.020346554440749287,203.52497982944124,-0.0004361504565508767 +2025-07-25,189.37818069135352,-0.045668122592871896,203.5025696282753,-0.022410201165939725 +2025-07-26,189.42191637188887,0.04373568053534882,203.5155818605571,0.013012232281795377 +2025-07-27,189.40681366467456,-0.01510270721431084,203.5387102015443,0.02312834098719918 +2025-07-28,189.3675250933325,-0.039288571342069645,203.49961691468798,-0.03909328685631408 +2025-07-29,189.4084478846149,0.04092279128241216,203.52333762547744,0.02372071078946192 +2025-07-30,189.44209304417495,0.03364515956005221,203.52240908355364,-0.0009285419237983206 +2025-07-31,189.41013457840543,-0.03195846576952022,203.53768374508127,0.015274661527627131 +2025-08-01,189.36773262206188,-0.04240195634355359,203.57452939666587,0.03684565158459918 +2025-08-02,189.37853348546471,0.010800863402835148,203.6131541793935,0.0386247827276236 +2025-08-03,189.39832846893282,0.0197949834681026,203.6295492908714,0.0163951114779195 +2025-08-04,189.31751459384472,-0.08081387508809712,203.63138849872576,0.0018392078543456591 +2025-08-05,189.33607302195557,0.0185584281108504,203.5865240181407,-0.04486448058506198 +2025-08-06,189.35012189799957,0.014048876044000735,203.59093320504493,0.004409186904240414 +2025-08-07,189.2737682209672,-0.07635367703235829,203.6034796278204,0.01254642277547191 +2025-08-08,189.209575459279,-0.06419276168821852,203.61539529441134,0.011915666590937235 +2025-08-09,189.13016865172864,-0.079406807550356,203.6490208433477,0.03362554893635661 +2025-08-10,189.26030447617987,0.13013582445123006,203.68865846564879,0.03963762230108614 +2025-08-11,189.24766419239936,-0.012640283780513073,203.6804111757911,-0.008247289857678197 +2025-08-12,189.1328032965311,-0.11486089586824733,203.6822403570604,0.0018291812693007614 +2025-08-13,189.0965012568984,-0.03630203963271583,203.69813665281066,0.01589629575025242 +2025-08-14,189.04927495842716,-0.047226298471230166,203.69997786691403,0.0018412141033650187 +2025-08-15,189.0035189032325,-0.04575605519465853,203.69031444001055,-0.009663426903472327 +2025-08-16,189.0046327643337,0.0011138611012029287,203.6876862117416,-0.0026282282689464864 +2025-08-17,189.02089453249914,0.016261768165435342,203.7032545329784,0.015568321236798965 +2025-08-18,188.97962188564185,-0.04127264685729415,203.7154791206365,0.012224587658096198 +2025-08-19,188.85836786197243,-0.1212540236694224,203.71155971220793,-0.003919408428572524 +2025-08-20,188.90226191551312,0.04389405354069709,203.77878786276852,0.06722815056059517 +2025-08-21,188.9632262170721,0.06096430155898247,203.79344839750547,0.014660534736947284 +2025-08-22,188.80491300411754,-0.15831321295456746,203.79528910226264,0.001840704757171352 +2025-08-23,188.83505179522643,0.030138791108896612,203.7730044478999,-0.022284654362749734 +2025-08-24,188.78457808656762,-0.05047370865881362,203.74814369443112,-0.024860753468772145 +2025-08-25,188.63195603570097,-0.15262205086665404,203.58066184910882,-0.1674818453222997 +2025-08-26,188.60306527711992,-0.028890758581042064,203.512279582685,-0.06838226642381073 +2025-08-27,188.57351212360575,-0.02955315351417198,203.47673698553612,-0.035542597148889854 +2025-08-28,188.54370118656374,-0.029810937042014984,203.4743664932424,-0.002370492293721327 +2025-08-29,188.5578436271976,0.014142440633861497,203.53392124092946,0.05955474768705926 +2025-08-30,188.55801054227456,0.00016691507696009467,203.5493796760359,0.015458435106438628 +2025-08-31,188.49630591772444,-0.06170462455011716,203.5227297193595,-0.026649956676408237 +2025-09-01,188.47895149120797,-0.01735442651647645,203.53930333191485,0.01657361255536216 +2025-09-02,188.46446974274866,-0.01448174845930339,203.52601068639325,-0.013292645521602253 +2025-09-03,188.49770803772344,0.03323829497477959,203.5590048579288,0.032994171535563055 +2025-09-04,188.46578210994852,-0.03192592777492109,203.56098093749728,0.0019760795684646837 +2025-09-05,188.39914740632605,-0.06663470362246926,203.52859828714887,-0.032382650348409925 +2025-09-06,188.41226230932125,0.013114902995198463,203.53135176609968,0.0027534789508081303 +2025-09-07,188.42834966220386,0.01608735288260732,203.53135176609968,0.0 +2025-09-08,188.43847201279846,0.010122350594599538,203.53135176609968,0.0 +2025-09-09,188.41423505810624,-0.02423695469221343,203.516297818284,-0.015053947815687252 +2025-09-10,188.40052907518535,-0.013705982920896531,203.51812373913378,0.0018259208497966029 +2025-09-11,188.40896817087054,0.008439095685190523,203.51812373913378,0.0 +2025-09-12,188.30938121877605,-0.09958695209448365,203.51812373913378,0.0 +2025-09-13,188.3174931787716,0.008111959995545703,203.5077248474726,-0.010398891661196785 +2025-09-14,188.31201183771552,-0.005481341056082556,203.4894037329916,-0.01832111448098317 +2025-09-15,188.2674111156132,-0.04460072210230237,203.48302280323634,-0.006380929755266607 +2025-09-16,188.2552941763028,-0.012116939310402586,203.47353984404992,-0.009482959186414064 +2025-09-17,188.28849838222698,0.0332042059241644,203.50727694466283,0.03373710061291035 +2025-09-18,188.3347839866515,0.04628560442452567,203.5224318351466,0.015154890483756844 +2025-09-19,188.33156344514657,-0.003220541504930452,203.52426992321955,0.001838088072958044 +2025-09-20,188.33738558302093,0.005822137874361033,203.52426992321955,0.0 +2025-09-21,188.32929653420973,-0.008089048811200428,203.52426992321955,0.0 +2025-09-22,188.27132179133446,-0.05797474287527393,203.54962016883565,0.02535024561609589 +2025-09-23,188.33068299811524,0.059361206780778275,203.56886936807967,0.01924919924402957 +2025-09-24,188.37908290921501,0.04839991109977859,203.57069257602268,0.0018232079430049453 +2025-09-25,188.32963462435956,-0.04944828485545827,203.57069257602268,0.0 +2025-09-26,188.30276515034748,-0.026869474012073624,203.51146288984003,-0.0592296861826469 +2025-09-27,188.30100218426304,-0.0017629660844420414,203.5342931043124,0.02283021447237843 +2025-09-28,188.24561311601715,-0.055389068245887074,203.53522475157146,0.0009316472590512603 +2025-09-29,188.26399138720498,0.018378271187827977,203.5575200722843,0.02229532071282847 +2025-09-30,188.22594429003752,-0.03804709716746402,203.51738449568737,-0.04013557659692424 +2025-10-01,188.19884096319214,-0.02710332684537775,203.4592421977965,-0.05814229789086767 +2025-10-02,188.23770924529896,0.0388682821068187,203.50764090327218,0.04839870547567671 +2025-10-03,188.30853862549932,0.07082938020036522,203.5464102508228,0.038769347550612565 +2025-10-04,188.31872190937,0.010183283870674131,203.5491969061405,0.002786655317720488 +2025-10-05,188.304846510483,-0.013875398886995072,203.52760374466862,-0.02159316147188406 +2025-10-06,188.29095671171544,-0.013889798767564798,203.5330494042873,0.0054456596186867046 +2025-10-07,188.24661742883217,-0.04433928288327138,203.53395860969883,0.0009092054115171777 +2025-10-08,188.30005201102674,0.0534345821945692,203.51935404177854,-0.014604567920287082 +2025-10-09,188.25906063889533,-0.04099137213140125,203.53796144231868,0.018607400540133767 +2025-10-10,188.07339130707538,-0.18566933181995182,203.53887789743715,0.000916455118471049 +2025-10-11,188.0719163041735,-0.0014750029018841815,203.5567970480333,0.017919150596156896 +2025-10-12,188.06852502688741,-0.0033912772860844598,203.54543545612722,-0.011361591906080548 +2025-10-13,188.04867371143627,-0.01985131545114882,203.5540318665918,0.00859641046457682 +2025-10-14,187.9216193168023,-0.12705439463397283,203.41282099062045,-0.1412108759713533 +2025-10-15,187.97235841370085,0.05073909689855327,203.43882913841517,0.02600814779472671 +2025-10-16,188.04476936849375,0.07241095479290038,203.44602696909018,0.007197830675011119 +2025-10-17,188.04161498754976,-0.00315438094398246,203.45530088408066,0.009273914990473031 +2025-10-18,188.05331680925633,0.011701821706566307,203.44011660657472,-0.015184277505937871 +2025-10-19,188.08068872967408,0.027371920417749607,203.44103988236498,0.0009232757902566391 +2025-10-20,188.1070245745654,0.026335844891320903,203.4153691528808,-0.025670729484176036 +2025-10-21,188.05554068118803,-0.05148389337736603,203.38462822066364,-0.03074093221715657 +2025-10-22,188.06917768687805,0.013637005690014803,203.4100930023412,0.025464781677555948 +2025-10-23,188.11024811222288,0.0410704253448273,203.3926867157055,-0.01740628663569055 +2025-10-24,188.10469412765715,-0.005553984565722203,203.40735036344253,0.014663647737023666 +2025-10-25,188.1040497826511,-0.0006443450060658051,203.41487343568838,0.007523072245845697 +2025-10-26,188.02478268050945,-0.07926710214164245,203.45586329790447,0.0409898622160938 +2025-10-27,188.0046792995586,-0.020103380950843075,203.40667771941503,-0.049185578489442605 +2025-10-28,188.03015556266578,0.025476263107179875,203.4155441461217,0.008866426706674702 +2025-10-29,188.12398604643857,0.09383048377279124,203.4960514118968,0.08050726577508271 +2025-10-30,188.0682807468263,-0.055705299612270665,203.4996753473709,0.003623935474109885 +2025-10-31,188.0989975857158,0.030716838889503606,203.4996753473709,0.0 +2025-11-01,188.1268119299084,0.02781434419259199,203.4996753473709,0.0 +2025-11-02,188.11101851003886,-0.01579341986953864,203.4996753473709,0.0 +2025-11-03,188.1522687935036,0.04125028346473414,203.52213596554304,0.02246061817214695 +2025-11-04,188.40924034741272,0.25697155390912485,203.54645642965636,0.02432046411331612 +2025-11-05,188.38408671795887,-0.02515362945385391,203.55010798811068,0.0036515584543224122 +2025-11-06,188.40014800588227,0.016061287923406553,203.5589215853272,0.0088135972165162 +2025-11-07,188.29147070723332,-0.10867729864895637,203.4606055833466,-0.09831600198060642 +2025-11-08,188.3243414036899,0.032870696456598125,203.48654858310843,0.025942999761838337 +2025-11-09,188.2836371802091,-0.040704223480815926,203.4876077993376,0.0010592162291800378 +2025-11-10,188.30346375618177,0.019826575972672345,203.48675237837836,-0.0008554209592546158 +2025-11-11,188.3097600612807,0.006296305098942412,203.49041646396745,0.003664085589093702 +2025-11-12,188.2678633147285,-0.04189674655222575,203.40428527726604,-0.08613118670140807 +2025-11-13,188.0813226789651,-0.18654063576337876,203.26269545544335,-0.14158982182269142 +2025-11-14,188.18676084795706,0.10543816899195235,203.26931261331106,0.006617157867708556 +2025-11-15,188.24959068642195,0.06282983846489287,203.27195809107195,0.0026454777608933 +2025-11-16,188.1817367312163,-0.0678539552056634,203.20437331695584,-0.06758477411611352 +2025-11-17,188.13986738338141,-0.041869347834875725,203.2695964958482,0.06522317889235296 +2025-11-18,188.1322322078415,-0.007635175539917327,203.27553629341213,0.005939797563939919 +2025-11-19,188.01952477511713,-0.11270743272436334,203.2149210656916,-0.060615227720518305 +2025-11-20,187.95550412089668,-0.06402065422045666,203.2741007686102,0.0591797029185841 +2025-11-21,187.91849308580353,-0.037011035093144073,203.2786728587064,0.0045720900961896405 +2025-11-22,187.94559886191055,0.02710577610702103,203.30092182265312,0.02224896394673692 +2025-11-23,187.96038729805903,0.014788436148478468,203.32206921264157,0.021147389988442455 +2025-11-24,187.89348586024568,-0.06690143781335678,203.3239077480239,0.0018385353823475725 +2025-11-25,187.94533738990796,0.051851529662286566,203.3034894818285,-0.02041826619540643 +2025-11-26,187.88091533395743,-0.06442205595052997,203.21664103550376,-0.0868484463247512 +2025-11-27,187.90106181442897,0.020146480471538553,203.20688484672576,-0.009756188777998887 +2025-11-28,187.93917756782494,0.03811575339597084,203.21965597396826,0.012771127242501734 +2025-11-29,188.01207502142768,0.07289745360273514,203.194393011388,-0.025262962580256954 +2025-11-30,188.0403495753653,0.028274553937620794,203.2042565485538,0.009863537165784919 +2025-12-01,187.874440813965,-0.16590876140028854,203.1758414544969,-0.02841509405689635 +2025-12-02,187.75443649754024,-0.12000431642476883,203.18227706390874,0.006435609411852283 +2025-12-03,187.7804968099857,0.026060312445451927,203.25942579172045,0.07714872781170357 +2025-12-04,187.8829112386095,0.10241442862380268,203.27635418721937,0.016928395498922555 +2025-12-05,187.8958861452889,0.012974906679403375,203.2781908325458,0.0018366453264206939 +2025-12-06,187.91762303740887,0.021736892119974982,203.28493811853963,0.006747285993839114 +2025-12-07,187.9690183729276,0.051395335518719776,203.24636915221618,-0.03856896632345297 +2025-12-08,187.96008134944353,-0.008937023484065776,203.2653704274512,0.019001275235012827 +2025-12-09,187.81984576252503,-0.14023558691849303,203.25014904094996,-0.015221386501224288 +2025-12-10,187.85731552608084,0.037469763555805,203.26818434600176,0.018035305051796513 +2025-12-11,187.86628034921875,0.0089648231379158,203.25569791627598,-0.012486429725782955 +2025-12-12,187.8258265383062,-0.04045381091256672,203.17196942568543,-0.08372849059054488 +2025-12-13,187.8205718667758,-0.005254671530394717,203.20478997382455,0.032820548139113725 +2025-12-14,187.80905711418723,-0.01151475258856749,203.20749311198026,0.002703138155709439 +2025-12-15,187.68723647339078,-0.12182064079644306,203.0809354810234,-0.12655763095685302 +2025-12-16,187.71346554403698,0.026229070646195396,203.10775161379522,0.026816132771813272 +2025-12-17,187.90058340149682,0.1871178574598389,203.131595830475,0.023844216679776764 +2025-12-18,187.86474152932269,-0.035841872174131595,203.11574578633028,-0.015850044144713138 +2025-12-19,187.81587622341056,-0.04886530591213045,203.05990601324504,-0.05583977308523913 +2025-12-20,187.84226449491015,0.02638827149959866,203.06145491462982,0.0015489013847798105 +2025-12-21,187.86416645519537,0.021901960285219957,203.0693628691725,0.007907954542673679 +2025-12-22,187.88828853587583,0.024122080680456293,203.07368485582,0.004321986647511267 +2025-12-23,187.90034674832356,0.012058212447726646,203.0860697015346,0.01238484571459253 +2025-12-24,187.90403384601237,0.0036870976888110363,203.08698009365602,0.0009103921214261845 +2025-12-25,187.8701194970821,-0.033914348930267124,203.08698009365602,0.0 +2025-12-26,187.89187834038674,0.02175884330463873,203.06487443056997,-0.022105663086051663 +2025-12-27,187.87676543432084,-0.015112906065894549,203.05318872471653,-0.011685705853437867 +2025-12-28,187.88374858112638,0.006983146805538354,203.05182248592084,-0.0013662387956969724 +2025-12-29,187.82512114157942,-0.05862743954696725,202.96902809663425,-0.08279438928659033 +2025-12-30,187.8586969818653,0.033575840285891445,202.97479198285453,0.005763886220279346 +2025-12-31,187.87751952363539,0.018822541770077805,202.98777028457513,0.012978301720607988 diff --git a/strategy/results/bb_5m_practical_upgrade_summary.csv b/strategy/results/bb_5m_practical_upgrade_summary.csv new file mode 100644 index 0000000..3cd1cb0 --- /dev/null +++ b/strategy/results/bb_5m_practical_upgrade_summary.csv @@ -0,0 +1,3 @@ +label,final_equity,return_pct,trade_count,win_rate_pct,liq_count,max_drawdown,total_fee,total_rebate,sharpe +"Baseline (BB30/3.0, no filters)",187.87751952363539,-6.061240238182307,8669,61.62187103472142,0,-12.334791284875877,16.98060303079724,15.274934432023217,-1.4020222751730407 +Practical (BB30/3.2 + EMA + BW + cooldown),202.98777028457513,1.4938851422875672,2208,64.4927536231884,0,-2.2659000933991535,4.492191078113778,4.042051704177064,0.5747142550615898 diff --git a/strategy/results/bb_trade_d_plan_2020_2025.png b/strategy/results/bb_trade_d_plan_2020_2025.png new file mode 100644 index 0000000..061ee88 Binary files /dev/null and b/strategy/results/bb_trade_d_plan_2020_2025.png differ diff --git a/strategy/run_bb_15m_2020_2025.py b/strategy/run_bb_15m_2020_2025.py new file mode 100644 index 0000000..9be3f0f --- /dev/null +++ b/strategy/run_bb_15m_2020_2025.py @@ -0,0 +1,111 @@ +""" +BB(10, 2.5) 均值回归策略回测 — 15分钟K线 | 2020-2025 | 200U | 万五手续费 | 90%返佣次日8点到账 +""" +import sys, time +sys.stdout.reconfigure(line_buffering=True) +sys.path.insert(0, str(__import__("pathlib").Path(__file__).resolve().parents[1])) + +import numpy as np +import pandas as pd +import matplotlib +matplotlib.use("Agg") +import matplotlib.pyplot as plt +from pathlib import Path + +from strategy.bb_backtest import BBConfig, run_bb_backtest +from strategy.data_loader import load_klines + +out_dir = Path(__file__).resolve().parent / "results" +out_dir.mkdir(parents=True, exist_ok=True) + +# ============================================================ +# 加载 15 分钟 K 线数据 (2020-2025) +# ============================================================ +YEARS = list(range(2020, 2026)) +data = {} + +print("加载 15 分钟 K 线数据 (2020-2025)...") +t0 = time.time() +for y in YEARS: + end_year = y + 1 if y < 2025 else 2026 # 2025 数据到 2026-01-01 前 + df = load_klines('15m', f'{y}-01-01', f'{end_year}-01-01') + data[y] = df + print(f" {y}: {len(df):>7,} 条 ({df.index[0]} ~ {df.index[-1]})") +print(f"数据加载完成 ({time.time()-t0:.1f}s)\n") + +# ============================================================ +# 配置: 200U | 万五手续费 | 90%返佣次日8点到账 +# ============================================================ +cfg = BBConfig( + bb_period=10, + bb_std=2.5, + leverage=50, + initial_capital=200.0, + margin_pct=0.01, # 1% 权益/单 + max_daily_loss=50.0, # 固定值备用 + max_daily_loss_pct=0.05, # 日亏损上限 = 当日起始权益的 5% + fee_rate=0.0005, # 万五 (0.05%) 开平仓各万五 + rebate_rate=0.0, + rebate_pct=0.90, # 90% 手续费返佣 + rebate_hour_utc=0, # UTC 0点 = 北京时间早上8点到账 + # 强平 + liq_enabled=True, + maint_margin_rate=0.005, # 0.5% 维持保证金率 + # 滑点 + slippage_pct=0.0005, # 0.05% 滑点 + # 市场容量限制 + max_notional=500000.0, # 单笔最大名义价值 50万U + # 加仓 + pyramid_enabled=True, + pyramid_step=0.01, # 递增加仓 + pyramid_max=3, +) + +# ============================================================ +# 运行回测 (滚仓: 200U 起,逐年累加不复位) +# ============================================================ +df_full = pd.concat([data[y] for y in YEARS]) +r_full = run_bb_backtest(df_full, cfg) +d_full = r_full.daily_stats +eq_full = d_full["equity"].astype(float) +pnl_full = d_full["pnl"].astype(float) +eq_curve = r_full.equity_curve["equity"].dropna() + +final_eq = float(eq_full.iloc[-1]) +ret_pct = (final_eq - 200) / 200 * 100 +dd_full = float((eq_full - eq_full.cummax()).min()) +sharpe_full = float(pnl_full.mean() / pnl_full.std()) * np.sqrt(365) if pnl_full.std() > 0 else 0 +win_full = sum(1 for t in r_full.trades if t.net_pnl > 0) / max(len(r_full.trades), 1) * 100 + +print("=" * 100) +print(" BB(10, 2.5) 15分钟K线 | 200U 起滚仓 | 万五 fee | 90% 返佣 | 含强平+滑点+容量限制") +print("=" * 100) +liq_count = sum(1 for t in r_full.trades if t.fee == 0.0 and t.net_pnl < 0) +print(f" 初始本金: 200U | 最终权益: {final_eq:,.0f}U | 收益率: {ret_pct:+,.1f}%") +print(f" 交易次数: {len(r_full.trades)} | 胜率: {win_full:.1f}% | 强平次数: {liq_count} | 最大回撤: {dd_full:+,.0f}U") +print(f" 总手续费: {r_full.total_fee:,.0f} | 总返佣: {r_full.total_rebate:,.0f} | Sharpe: {sharpe_full:.2f}") +print("-" * 100) +print(" 年末权益:") +for y in YEARS: + mask = eq_curve.index.year == y + if mask.any(): + yr_eq = float(eq_curve.loc[mask].iloc[-1]) + print(f" {y} 年末: {yr_eq:,.0f}U") +print("=" * 100) + +# ============================================================ +# 生成权益曲线图 (对数坐标,滚仓复利) +# ============================================================ +fig, ax = plt.subplots(1, 1, figsize=(14, 6), dpi=120) +eq_ser = eq_curve +days = (eq_ser.index - eq_ser.index[0]).total_seconds() / 86400 +ax.semilogy(days, eq_ser.values.clip(min=1), color="#2563eb", linewidth=1.2) +ax.axhline(y=200, color="gray", linestyle="--", alpha=0.6) +ax.set_title("BB(10, 2.5) 15min | 200U | 0.05% fee 90% rebate | 2020-2025", fontsize=12, fontweight="bold") +ax.set_xlabel("Days") +ax.set_ylabel("Equity (USDT, log scale)") +ax.grid(True, alpha=0.3) + +chart_path = out_dir / "bb_15m_200u_2020_2025.png" +plt.savefig(chart_path, bbox_inches="tight") +print(f"\n图表已保存: {chart_path}") diff --git a/strategy/run_bb_15m_2020_2025_conservative.py b/strategy/run_bb_15m_2020_2025_conservative.py new file mode 100644 index 0000000..432538c --- /dev/null +++ b/strategy/run_bb_15m_2020_2025_conservative.py @@ -0,0 +1,323 @@ +""" +Conservative BB backtest for bb_trade-style logic. + +Assumptions: +1) Use 15m OHLC from 2020-01-01 to 2026-01-01 (exclusive). +2) Bollinger band is computed from CLOSED bars (shifted by 1 bar). +3) If bar i touches band, execute on bar i+1 open (no same-bar fill). +4) Fee: 0.05% each side; rebate: 90% of daily fee, credited next day at 08:00 UTC+8 (UTC 00:00). +5) Position sizing: 1% equity open, then +1%/+2%/+3% add ladder (max 3 adds). +6) Leverage 50x; optional liquidation model enabled. +""" + +from __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path +import sys + +import numpy as np +import pandas as pd + +sys.path.insert(0, str(Path(__file__).resolve().parents[1])) + +from strategy.data_loader import load_klines + + +@dataclass +class ConservativeConfig: + bb_period: int = 10 + bb_std: float = 2.5 + leverage: float = 50.0 + initial_capital: float = 200.0 + margin_pct: float = 0.01 + pyramid_step: float = 0.01 + pyramid_max: int = 3 + fee_rate: float = 0.0005 + rebate_pct: float = 0.90 + rebate_hour_utc: int = 0 + slippage_pct: float = 0.0005 + liq_enabled: bool = True + maint_margin_rate: float = 0.005 + max_daily_loss: float = 50.0 + + +def bollinger_prev_close(close: pd.Series, period: int, n_std: float) -> tuple[np.ndarray, np.ndarray]: + mid = close.rolling(period).mean().shift(1) + std = close.rolling(period).std(ddof=0).shift(1) + upper = (mid + n_std * std).to_numpy(dtype=float) + lower = (mid - n_std * std).to_numpy(dtype=float) + return upper, lower + + +def run_conservative(df: pd.DataFrame, cfg: ConservativeConfig): + arr_open = df["open"].to_numpy(dtype=float) + arr_high = df["high"].to_numpy(dtype=float) + arr_low = df["low"].to_numpy(dtype=float) + arr_close = df["close"].to_numpy(dtype=float) + idx = df.index + n = len(df) + + upper, lower = bollinger_prev_close(df["close"].astype(float), cfg.bb_period, cfg.bb_std) + + balance = cfg.initial_capital + position = 0 # +1 long, -1 short + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + pyramid_count = 0 + + total_fee = 0.0 + total_rebate = 0.0 + trades = 0 + win_trades = 0 + liq_count = 0 + + day_fees = {} + current_day = None + day_start_equity = cfg.initial_capital + day_pnl = 0.0 + day_stopped = False + rebate_applied_today = False + + equity_arr = np.full(n, np.nan) + position_arr = np.zeros(n) + + def unrealised(price: float) -> float: + if position == 0: + return 0.0 + if position == 1: + return entry_qty * (price - entry_price) + return entry_qty * (entry_price - price) + + def apply_open_slippage(side: int, price: float) -> float: + # Buy higher, sell lower + return price * (1 + cfg.slippage_pct) if side == 1 else price * (1 - cfg.slippage_pct) + + def apply_close_slippage(side: int, price: float) -> float: + # Close long = sell lower; close short = buy higher + return price * (1 - cfg.slippage_pct) if side == 1 else price * (1 + cfg.slippage_pct) + + def add_fee(ts: pd.Timestamp, fee: float): + nonlocal total_fee + total_fee += fee + d = ts.date() + day_fees[d] = day_fees.get(d, 0.0) + fee + + def close_position(exec_price: float, exec_idx: int): + nonlocal balance, position, entry_price, entry_qty, entry_margin, pyramid_count + nonlocal trades, win_trades, day_pnl + if position == 0: + return + + px = apply_close_slippage(position, exec_price) + gross = entry_qty * (px - entry_price) if position == 1 else entry_qty * (entry_price - px) + notional = entry_qty * px + fee = notional * cfg.fee_rate + net = gross - fee + + balance += net + add_fee(idx[exec_idx], fee) + day_pnl += net + trades += 1 + if net > 0: + win_trades += 1 + + position = 0 + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + pyramid_count = 0 + + def open_position(side: int, exec_price: float, exec_idx: int, is_add: bool = False): + nonlocal balance, position, entry_price, entry_qty, entry_margin, pyramid_count + nonlocal day_pnl + px = apply_open_slippage(side, exec_price) + eq = balance + unrealised(px) + + if is_add: + margin = eq * (cfg.margin_pct + cfg.pyramid_step * (pyramid_count + 1)) + else: + margin = eq * cfg.margin_pct + + margin = min(margin, balance * 0.95) + if margin <= 0: + return + + notional = margin * cfg.leverage + qty = notional / px + fee = notional * cfg.fee_rate + + balance -= fee + add_fee(idx[exec_idx], fee) + day_pnl -= fee + + if is_add and position != 0: + old_notional = entry_qty * entry_price + new_notional = qty * px + entry_qty += qty + entry_price = (old_notional + new_notional) / entry_qty + entry_margin += margin + pyramid_count += 1 + else: + position = side + entry_price = px + entry_qty = qty + entry_margin = margin + pyramid_count = 0 + + for i in range(n - 1): + ts = idx[i] + bar_day = ts.date() + + if bar_day != current_day: + current_day = bar_day + day_start_equity = balance + unrealised(arr_close[i]) + day_pnl = 0.0 + day_stopped = False + rebate_applied_today = False + + if (not rebate_applied_today) and ts.hour >= cfg.rebate_hour_utc: + prev_day = bar_day - pd.Timedelta(days=1) + prev_fee = day_fees.get(prev_day, 0.0) + if prev_fee > 0: + rebate = prev_fee * cfg.rebate_pct + balance += rebate + total_rebate += rebate + rebate_applied_today = True + + if not day_stopped: + if day_pnl + unrealised(arr_close[i]) <= -cfg.max_daily_loss: + close_position(arr_open[i + 1], i + 1) + day_stopped = True + + if cfg.liq_enabled and position != 0 and entry_margin > 0: + liq_threshold = 1.0 / cfg.leverage * (1 - cfg.maint_margin_rate) + if position == 1: + liq_price = entry_price * (1 - liq_threshold) + if arr_low[i] <= liq_price: + balance -= entry_margin + day_pnl -= entry_margin + position = 0 + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + pyramid_count = 0 + trades += 1 + liq_count += 1 + elif position == -1: + liq_price = entry_price * (1 + liq_threshold) + if arr_high[i] >= liq_price: + balance -= entry_margin + day_pnl -= entry_margin + position = 0 + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + pyramid_count = 0 + trades += 1 + liq_count += 1 + + if day_stopped or np.isnan(upper[i]) or np.isnan(lower[i]): + equity_arr[i] = balance + unrealised(arr_close[i]) + position_arr[i] = position + if balance <= 0: + balance = 0.0 + equity_arr[i:] = 0.0 + position_arr[i:] = 0 + break + continue + + touched_upper = arr_high[i] >= upper[i] + touched_lower = arr_low[i] <= lower[i] + exec_px = arr_open[i + 1] + + if touched_upper and touched_lower: + pass + elif touched_upper: + if position == 1: + close_position(exec_px, i + 1) + if position == 0: + open_position(-1, exec_px, i + 1, is_add=False) + elif position == -1 and pyramid_count < cfg.pyramid_max: + open_position(-1, exec_px, i + 1, is_add=True) + elif touched_lower: + if position == -1: + close_position(exec_px, i + 1) + if position == 0: + open_position(1, exec_px, i + 1, is_add=False) + elif position == 1 and pyramid_count < cfg.pyramid_max: + open_position(1, exec_px, i + 1, is_add=True) + + equity_arr[i] = balance + unrealised(arr_close[i]) + position_arr[i] = position + + if balance <= 0: + balance = 0.0 + equity_arr[i:] = 0.0 + position_arr[i:] = 0 + break + + if position != 0 and balance > 0: + close_position(arr_close[-1], n - 1) + + equity_arr[-1] = balance + position_arr[-1] = 0 + + eq_df = pd.DataFrame({"equity": equity_arr, "position": position_arr}, index=idx) + daily = eq_df["equity"].resample("1D").last().dropna().to_frame("equity") + daily["pnl"] = daily["equity"].diff().fillna(0.0) + + return { + "equity_curve": eq_df, + "daily": daily, + "final_equity": float(daily["equity"].iloc[-1]), + "trade_count": int(trades), + "win_rate": float(win_trades / max(trades, 1)), + "liq_count": int(liq_count), + "total_fee": float(total_fee), + "total_rebate": float(total_rebate), + } + + +def main(): + df = load_klines("15m", "2020-01-01", "2026-01-01") + cfg = ConservativeConfig() + result = run_conservative(df, cfg) + + daily = result["daily"] + eq = daily["equity"].astype(float) + pnl = daily["pnl"].astype(float) + final_eq = float(eq.iloc[-1]) + ret_pct = (final_eq - cfg.initial_capital) / cfg.initial_capital * 100 + max_dd = float((eq - eq.cummax()).min()) if len(eq) else 0.0 + sharpe = float(pnl.mean() / pnl.std() * np.sqrt(365)) if pnl.std() > 0 else 0.0 + + print("=" * 110) + print("Conservative BB(10,2.5) | 15m | 2020-2025 | 200U | fee 0.05% each side | 90% rebate next day 08:00") + print("=" * 110) + print(f"Final equity: {final_eq:.8f} U") + print(f"Return: {ret_pct:+.2f}%") + print(f"Trades: {result['trade_count']}") + print(f"Win rate: {result['win_rate']*100:.2f}%") + print(f"Liquidations: {result['liq_count']}") + print(f"Max drawdown: {max_dd:.2f} U") + print(f"Total fee: {result['total_fee']:.8f}") + print(f"Total rebate: {result['total_rebate']:.8f}") + print(f"Sharpe: {sharpe:.4f}") + print("-" * 110) + for year in range(2020, 2026): + m = daily.index.year == year + if m.any(): + print(f"{year} year-end equity: {float(daily.loc[m, 'equity'].iloc[-1]):.8f} U") + print("=" * 110) + + out_dir = Path(__file__).resolve().parent / "results" + out_dir.mkdir(parents=True, exist_ok=True) + out_csv = out_dir / "bb_15m_2020_2025_conservative_daily.csv" + daily.to_csv(out_csv) + print(f"Saved daily equity: {out_csv}") + + +if __name__ == "__main__": + main() diff --git a/strategy/run_bb_202602_detail.py b/strategy/run_bb_202602_detail.py new file mode 100644 index 0000000..8a0ba7b --- /dev/null +++ b/strategy/run_bb_202602_detail.py @@ -0,0 +1,67 @@ +""" +bb_trade.py 策略回测 — 2026年2月,输出详细交易明细 +200U 本金 | 1% 仓位/单 | 万五手续费 | 90% 返佣次日8点到账 +按北京时间加载数据 (与交易所/网页显示一致) +""" +import sys +sys.path.insert(0, str(__import__("pathlib").Path(__file__).resolve().parents[1])) + +import pandas as pd +from pathlib import Path + +from strategy.bb_backtest import BBConfig, run_bb_backtest +from strategy.data_loader import load_klines + +out_dir = Path(__file__).resolve().parent / "results" +out_dir.mkdir(parents=True, exist_ok=True) + +# 按北京时间加载 2026-02-01 00:00 ~ 2026-03-01 00:00 +df = load_klines('5m', '2026-02-01', '2026-03-01', tz='Asia/Shanghai') + +cfg = BBConfig( + bb_period=10, bb_std=2.5, leverage=50, initial_capital=200.0, + margin_pct=0.01, max_daily_loss=50.0, fee_rate=0.0005, + rebate_pct=0.90, rebate_hour_utc=0, pyramid_enabled=False, # 不加仓 + pyramid_step=0.01, pyramid_max=3, slippage_pct=0.0, liq_enabled=True, + cross_margin=True, # 全仓:仅权益<=0 时爆仓 + fill_at_close=True, # 真实成交:检测到信号后在 K 线收盘价成交 +) + +r = run_bb_backtest(df, cfg) + +# 数据库/回测使用 UTC,转为北京时间输出 +def to_beijing(ts): + if hasattr(ts, 'tz_localize'): + return ts.tz_localize('UTC').tz_convert('Asia/Shanghai').strftime('%Y-%m-%d %H:%M:%S') + return str(ts)[:19] + +# 构建交易明细 DataFrame +rows = [] +for i, t in enumerate(r.trades, 1): + rows.append({ + "序号": i, + "方向": "做多" if t.side == "long" else "做空", + "开仓时间": to_beijing(t.entry_time), + "平仓时间": to_beijing(t.exit_time), + "开仓价": round(t.entry_price, 2), + "平仓价": round(t.exit_price, 2), + "保证金": round(t.margin, 2), + "杠杆": t.leverage, + "数量": round(t.qty, 4), + "毛盈亏": round(t.gross_pnl, 2), + "手续费": round(t.fee, 2), + "净盈亏": round(t.net_pnl, 2), + }) + +trade_df = pd.DataFrame(rows) + +# 保存 CSV +csv_path = out_dir / "bb_202602_trade_detail.csv" +trade_df.to_csv(csv_path, index=False, encoding="utf-8-sig") +print(f"交易明细已保存: {csv_path}") + +# 打印到控制台 +print("\n" + "=" * 150) +print(f" 交易明细 (共 {len(r.trades)} 笔)") +print("=" * 150) +print(trade_df.to_string(index=False)) diff --git a/strategy/run_bb_5m_practical_upgrade.py b/strategy/run_bb_5m_practical_upgrade.py new file mode 100644 index 0000000..02b9d51 --- /dev/null +++ b/strategy/run_bb_5m_practical_upgrade.py @@ -0,0 +1,381 @@ +""" +Practical upgraded BB backtest on 5m ETH data (2020-2025). + +Execution model (conservative): +1) BB uses closed bars only (shift by 1 bar). +2) Signal on bar i, execution at bar i+1 open. +3) Fee = 0.05% each side, rebate = 90% next day at UTC 00:00 (UTC+8 08:00). +4) Daily loss stop, liquidation, and slippage are enabled. + +Compares: +- Baseline: BB(30, 3.0), 1x, no trend filter. +- Practical: BB(30, 3.2), 1x, EMA trend filter, BB width filter, cooldown. +""" + +from __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path +import sys + +import numpy as np +import pandas as pd + +sys.path.insert(0, str(Path(__file__).resolve().parents[1])) + +from strategy.data_loader import load_klines + + +@dataclass +class PracticalConfig: + bb_period: int = 30 + bb_std: float = 3.2 + leverage: float = 1.0 + initial_capital: float = 200.0 + margin_pct: float = 0.01 + fee_rate: float = 0.0005 + rebate_pct: float = 0.90 + rebate_hour_utc: int = 0 + slippage_pct: float = 0.0005 + liq_enabled: bool = True + maint_margin_rate: float = 0.005 + max_daily_loss: float = 50.0 + + # Practical risk controls + trend_ema_period: int = 288 # 288 * 5m = 24h EMA + min_bandwidth: float = 0.01 # (upper-lower)/mid minimum + cooldown_bars: int = 6 # 6 * 5m = 30 minutes + + +def run_practical_backtest(df: pd.DataFrame, cfg: PracticalConfig): + arr_open = df["open"].to_numpy(dtype=float) + arr_high = df["high"].to_numpy(dtype=float) + arr_low = df["low"].to_numpy(dtype=float) + arr_close = df["close"].to_numpy(dtype=float) + idx = df.index + n = len(df) + + close_s = df["close"].astype(float) + mid = close_s.rolling(cfg.bb_period).mean().shift(1) + std = close_s.rolling(cfg.bb_period).std(ddof=0).shift(1) + upper_s = mid + cfg.bb_std * std + lower_s = mid - cfg.bb_std * std + bandwidth_s = (upper_s - lower_s) / mid + + upper = upper_s.to_numpy(dtype=float) + lower = lower_s.to_numpy(dtype=float) + bandwidth = bandwidth_s.to_numpy(dtype=float) + + if cfg.trend_ema_period > 0: + trend_ema = close_s.ewm(span=cfg.trend_ema_period, adjust=False).mean().shift(1).to_numpy(dtype=float) + else: + trend_ema = np.full(n, np.nan) + + balance = cfg.initial_capital + position = 0 # +1 long, -1 short + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + + trades = 0 + win_trades = 0 + liq_count = 0 + total_fee = 0.0 + total_rebate = 0.0 + + current_day = None + day_pnl = 0.0 + day_stopped = False + rebate_applied_today = False + next_trade_bar = 0 + day_fees = {} + + equity_arr = np.full(n, np.nan) + position_arr = np.zeros(n) + + def unrealised(price: float) -> float: + if position == 0: + return 0.0 + if position == 1: + return entry_qty * (price - entry_price) + return entry_qty * (entry_price - price) + + def apply_open_slippage(side: int, price: float) -> float: + return price * (1 + cfg.slippage_pct) if side == 1 else price * (1 - cfg.slippage_pct) + + def apply_close_slippage(side: int, price: float) -> float: + return price * (1 - cfg.slippage_pct) if side == 1 else price * (1 + cfg.slippage_pct) + + def add_fee(ts: pd.Timestamp, fee: float): + nonlocal total_fee + total_fee += fee + d = ts.date() + day_fees[d] = day_fees.get(d, 0.0) + fee + + def close_position(exec_price: float, exec_idx: int): + nonlocal balance, position, entry_price, entry_qty, entry_margin + nonlocal trades, win_trades, day_pnl + if position == 0: + return + + px = apply_close_slippage(position, exec_price) + gross = entry_qty * (px - entry_price) if position == 1 else entry_qty * (entry_price - px) + notional = entry_qty * px + fee = notional * cfg.fee_rate + net = gross - fee + + balance += net + add_fee(idx[exec_idx], fee) + day_pnl += net + trades += 1 + if net > 0: + win_trades += 1 + + position = 0 + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + + def open_position(side: int, exec_price: float, exec_idx: int): + nonlocal balance, position, entry_price, entry_qty, entry_margin + nonlocal day_pnl + px = apply_open_slippage(side, exec_price) + eq = balance + unrealised(px) + margin = min(eq * cfg.margin_pct, balance * 0.95) + if margin <= 0: + return + + notional = margin * cfg.leverage + qty = notional / px + fee = notional * cfg.fee_rate + + balance -= fee + add_fee(idx[exec_idx], fee) + day_pnl -= fee + + position = side + entry_price = px + entry_qty = qty + entry_margin = margin + + for i in range(n - 1): + ts = idx[i] + bar_day = ts.date() + + if bar_day != current_day: + current_day = bar_day + day_pnl = 0.0 + day_stopped = False + rebate_applied_today = False + + # Fee rebate settlement (next day 08:00 UTC+8 = UTC 00:00) + if (not rebate_applied_today) and ts.hour >= cfg.rebate_hour_utc: + prev_day = bar_day - pd.Timedelta(days=1) + prev_fee = day_fees.get(prev_day, 0.0) + if prev_fee > 0: + rebate = prev_fee * cfg.rebate_pct + balance += rebate + total_rebate += rebate + rebate_applied_today = True + + # Daily loss stop + if not day_stopped and (day_pnl + unrealised(arr_close[i]) <= -cfg.max_daily_loss): + close_position(arr_open[i + 1], i + 1) + day_stopped = True + + # Liquidation check + if cfg.liq_enabled and position != 0 and entry_margin > 0: + liq_threshold = 1.0 / cfg.leverage * (1 - cfg.maint_margin_rate) + if position == 1: + liq_price = entry_price * (1 - liq_threshold) + if arr_low[i] <= liq_price: + balance -= entry_margin + day_pnl -= entry_margin + position = 0 + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + trades += 1 + liq_count += 1 + else: + liq_price = entry_price * (1 + liq_threshold) + if arr_high[i] >= liq_price: + balance -= entry_margin + day_pnl -= entry_margin + position = 0 + entry_price = 0.0 + entry_qty = 0.0 + entry_margin = 0.0 + trades += 1 + liq_count += 1 + + if ( + day_stopped + or i < next_trade_bar + or np.isnan(upper[i]) + or np.isnan(lower[i]) + or np.isnan(bandwidth[i]) + ): + equity_arr[i] = balance + unrealised(arr_close[i]) + position_arr[i] = position + if balance <= 0: + balance = 0.0 + equity_arr[i:] = 0.0 + position_arr[i:] = 0 + break + continue + + if cfg.trend_ema_period > 0 and np.isnan(trend_ema[i]): + equity_arr[i] = balance + unrealised(arr_close[i]) + position_arr[i] = position + continue + + if bandwidth[i] < cfg.min_bandwidth: + equity_arr[i] = balance + unrealised(arr_close[i]) + position_arr[i] = position + continue + + touched_upper = arr_high[i] >= upper[i] + touched_lower = arr_low[i] <= lower[i] + exec_px = arr_open[i + 1] + + if cfg.trend_ema_period > 0: + long_ok = arr_close[i] > trend_ema[i] + short_ok = arr_close[i] < trend_ema[i] + else: + long_ok = True + short_ok = True + + if touched_upper and touched_lower: + pass + elif touched_upper: + if position == 1: + close_position(exec_px, i + 1) + next_trade_bar = max(next_trade_bar, i + 1 + cfg.cooldown_bars) + if position == 0 and short_ok: + open_position(-1, exec_px, i + 1) + next_trade_bar = max(next_trade_bar, i + 1 + cfg.cooldown_bars) + elif touched_lower: + if position == -1: + close_position(exec_px, i + 1) + next_trade_bar = max(next_trade_bar, i + 1 + cfg.cooldown_bars) + if position == 0 and long_ok: + open_position(1, exec_px, i + 1) + next_trade_bar = max(next_trade_bar, i + 1 + cfg.cooldown_bars) + + equity_arr[i] = balance + unrealised(arr_close[i]) + position_arr[i] = position + + if balance <= 0: + balance = 0.0 + equity_arr[i:] = 0.0 + position_arr[i:] = 0 + break + + if position != 0 and balance > 0: + close_position(arr_close[-1], n - 1) + + equity_arr[-1] = balance + position_arr[-1] = 0 + + eq_df = pd.DataFrame({"equity": equity_arr, "position": position_arr}, index=idx) + daily = eq_df["equity"].resample("1D").last().dropna().to_frame("equity") + daily["pnl"] = daily["equity"].diff().fillna(0.0) + + return { + "equity_curve": eq_df, + "daily": daily, + "final_equity": float(daily["equity"].iloc[-1]), + "trade_count": int(trades), + "win_rate": float(win_trades / max(trades, 1)), + "liq_count": int(liq_count), + "total_fee": float(total_fee), + "total_rebate": float(total_rebate), + } + + +def summarize(label: str, result: dict, initial_capital: float): + daily = result["daily"] + eq = daily["equity"].astype(float) + pnl = daily["pnl"].astype(float) + final_eq = float(eq.iloc[-1]) + ret_pct = (final_eq - initial_capital) / initial_capital * 100 + max_dd = float((eq - eq.cummax()).min()) if len(eq) else 0.0 + sharpe = float(pnl.mean() / pnl.std() * np.sqrt(365)) if pnl.std() > 0 else 0.0 + + print(f"[{label}]") + print(f" Final equity: {final_eq:.6f} U") + print(f" Return: {ret_pct:+.4f}%") + print(f" Trades: {result['trade_count']} | Win rate: {result['win_rate']*100:.2f}% | Liquidations: {result['liq_count']}") + print(f" Max drawdown: {max_dd:.6f} U | Sharpe: {sharpe:.4f}") + print(f" Total fee: {result['total_fee']:.6f} | Total rebate: {result['total_rebate']:.6f}") + print(" Year-end equity:") + for year in range(2020, 2026): + m = daily.index.year == year + if m.any(): + print(f" {year}: {float(daily.loc[m, 'equity'].iloc[-1]):.6f} U") + print() + + return { + "label": label, + "final_equity": final_eq, + "return_pct": ret_pct, + "trade_count": result["trade_count"], + "win_rate_pct": result["win_rate"] * 100, + "liq_count": result["liq_count"], + "max_drawdown": max_dd, + "total_fee": result["total_fee"], + "total_rebate": result["total_rebate"], + "sharpe": sharpe, + } + + +def main(): + df = load_klines("5m", "2020-01-01", "2026-01-01") + + baseline_cfg = PracticalConfig( + bb_period=30, + bb_std=3.0, + leverage=1.0, + trend_ema_period=0, + min_bandwidth=0.0, + cooldown_bars=0, + ) + practical_cfg = PracticalConfig( + bb_period=30, + bb_std=3.2, + leverage=1.0, + trend_ema_period=288, + min_bandwidth=0.01, + cooldown_bars=6, + ) + + print("=" * 118) + print("Practical Upgrade Backtest | 5m | 2020-2025 | capital=200U | fee=0.05% each side | rebate=90% next day 08:00") + print("=" * 118) + print("Execution: signal at bar i, fill at bar i+1 open (conservative)") + print() + + baseline = run_practical_backtest(df, baseline_cfg) + practical = run_practical_backtest(df, practical_cfg) + + summary_rows = [] + summary_rows.append(summarize("Baseline (BB30/3.0, no filters)", baseline, baseline_cfg.initial_capital)) + summary_rows.append(summarize("Practical (BB30/3.2 + EMA + BW + cooldown)", practical, practical_cfg.initial_capital)) + + out_dir = Path(__file__).resolve().parent / "results" + out_dir.mkdir(parents=True, exist_ok=True) + + baseline_daily = baseline["daily"].rename(columns={"equity": "baseline_equity", "pnl": "baseline_pnl"}) + practical_daily = practical["daily"].rename(columns={"equity": "practical_equity", "pnl": "practical_pnl"}) + daily_compare = baseline_daily.join(practical_daily, how="outer") + daily_compare.to_csv(out_dir / "bb_5m_practical_upgrade_daily.csv") + + pd.DataFrame(summary_rows).to_csv(out_dir / "bb_5m_practical_upgrade_summary.csv", index=False) + + print(f"Saved: {out_dir / 'bb_5m_practical_upgrade_daily.csv'}") + print(f"Saved: {out_dir / 'bb_5m_practical_upgrade_summary.csv'}") + + +if __name__ == "__main__": + main() diff --git a/strategy/run_bb_trade_backtest.py b/strategy/run_bb_trade_backtest.py new file mode 100644 index 0000000..15e4e0e --- /dev/null +++ b/strategy/run_bb_trade_backtest.py @@ -0,0 +1,197 @@ +""" +回测 bb_trade.py 的 D方案策略 +BB(10, 2.5) | 5分钟 | ETH | 50x | 递增加仓+1%/次 max=3 +200U 本金 | 每次开仓 1% 权益 | 开平仓手续费万五 | 返佣90%次日早8点到账 +""" +import sys, time +sys.stdout.reconfigure(line_buffering=True) +sys.path.insert(0, str(__import__("pathlib").Path(__file__).resolve().parents[1])) + +import numpy as np +import pandas as pd +import matplotlib +matplotlib.use("Agg") +import matplotlib.pyplot as plt +from pathlib import Path + +from strategy.bb_backtest import BBConfig, run_bb_backtest +from strategy.data_loader import load_klines + +out_dir = Path(__file__).resolve().parent / "results" +out_dir.mkdir(parents=True, exist_ok=True) + +# ============================================================ +# 加载数据 2020-2025 +# ============================================================ +YEARS = list(range(2020, 2026)) + +print("加载 5 分钟 K 线数据 (2020-2025)...") +t0 = time.time() +data = {} +for y in YEARS: + df = load_klines('5m', f'{y}-01-01', f'{y+1}-01-01') + data[y] = df + print(f" {y}: {len(df):>7,} 条 ({df.index[0]} ~ {df.index[-1]})") + +# 合并全量数据用于连续回测 +df_all = pd.concat([data[y] for y in YEARS]) +df_all = df_all[~df_all.index.duplicated(keep='first')].sort_index() +print(f" 合计: {len(df_all):>7,} 条 ({df_all.index[0]} ~ {df_all.index[-1]})") +print(f"数据加载完成 ({time.time()-t0:.1f}s)\n") + +# ============================================================ +# 配置 — 完全匹配 bb_trade.py D方案 +# ============================================================ +cfg = BBConfig( + bb_period=10, + bb_std=2.5, + leverage=50, + initial_capital=200.0, + margin_pct=0.01, # 1% 权益/单 + max_daily_loss=50.0, + fee_rate=0.0005, # 万五 (0.05%) 每侧 (开+平各收一次) + rebate_rate=0.0, # 无即时返佣 + rebate_pct=0.90, # 90% 手续费次日返还 + rebate_hour_utc=0, # UTC 0点 = 北京时间早上8点 + pyramid_enabled=True, + pyramid_step=0.01, # 递增加仓 +1%/次 + pyramid_max=3, # 最多加仓3次 + slippage_pct=0.0, # 回测不加滑点 (实盘浏览器市价单有滑点) + liq_enabled=True, + stop_loss_pct=0.0, +) + +# ============================================================ +# 1) 逐年回测 (每年独立 200U 起步) +# ============================================================ +print("=" * 100) +print(" 【逐年独立回测】每年独立 200U 本金") +print(f" BB({cfg.bb_period}, {cfg.bb_std}) | {cfg.leverage}x | 开仓={cfg.margin_pct:.0%}权益 | " + f"手续费={cfg.fee_rate:.4%}/侧 | 返佣={cfg.rebate_pct:.0%}次日8点") +print("=" * 100) +print(f" {'年份':>6s} {'最终权益':>10s} {'收益率':>8s} {'日均PnL':>8s} {'交易次数':>8s} {'胜率':>6s} " + f"{'最大回撤':>10s} {'回撤%':>8s} {'总手续费':>10s} {'总返佣':>10s} {'净手续费':>10s} {'Sharpe':>7s}") +print("-" * 130) + +year_results = {} +for y in YEARS: + r = run_bb_backtest(data[y], cfg) + year_results[y] = r + + d = r.daily_stats + pnl = d["pnl"].astype(float) + eq = d["equity"].astype(float) + peak = eq.cummax() + dd = float((eq - peak).min()) + dd_pct = dd / float(peak[eq - peak == dd].iloc[0]) * 100 if dd < 0 else 0 + final_eq = float(eq.iloc[-1]) + ret_pct = (final_eq - cfg.initial_capital) / cfg.initial_capital * 100 + n_trades = len(r.trades) + win_rate = sum(1 for t in r.trades if t.net_pnl > 0) / max(n_trades, 1) * 100 + avg_daily = float(pnl.mean()) + sharpe = float(pnl.mean() / pnl.std()) * np.sqrt(365) if pnl.std() > 0 else 0 + net_fee = r.total_fee - r.total_rebate + + print(f" {y:>6d} {final_eq:>10.1f} {ret_pct:>+7.1f}% {avg_daily:>+7.2f}U " + f"{n_trades:>8d} {win_rate:>5.1f}% {dd:>+10.1f} {dd_pct:>+7.1f}% " + f"{r.total_fee:>10.1f} {r.total_rebate:>10.1f} {net_fee:>10.1f} {sharpe:>7.2f}") + +print() + +# ============================================================ +# 2) 连续回测 (2020-2025 一次性跑,资金连续滚动) +# ============================================================ +print("=" * 100) +print(" 【连续回测】2020-2025 资金滚动,200U 起步") +print("=" * 100) + +r_all = run_bb_backtest(df_all, cfg) + +d_all = r_all.daily_stats +pnl_all = d_all["pnl"].astype(float) +eq_all = d_all["equity"].astype(float) +peak_all = eq_all.cummax() +dd_all = float((eq_all - peak_all).min()) +dd_pct_all = dd_all / float(peak_all[eq_all - peak_all == dd_all].iloc[0]) * 100 if dd_all < 0 else 0 +final_eq_all = float(eq_all.iloc[-1]) +ret_pct_all = (final_eq_all - cfg.initial_capital) / cfg.initial_capital * 100 +n_trades_all = len(r_all.trades) +win_rate_all = sum(1 for t in r_all.trades if t.net_pnl > 0) / max(n_trades_all, 1) * 100 +avg_daily_all = float(pnl_all.mean()) +sharpe_all = float(pnl_all.mean() / pnl_all.std()) * np.sqrt(365) if pnl_all.std() > 0 else 0 +net_fee_all = r_all.total_fee - r_all.total_rebate + +print(f" 初始资金: {cfg.initial_capital:.0f} U") +print(f" 最终权益: {final_eq_all:.1f} U") +print(f" 总收益率: {ret_pct_all:+.1f}%") +print(f" 日均 PnL: {avg_daily_all:+.2f} U") +print(f" 交易次数: {n_trades_all}") +print(f" 胜率: {win_rate_all:.1f}%") +print(f" 最大回撤: {dd_all:+.1f} U ({dd_pct_all:+.1f}%)") +print(f" 总手续费: {r_all.total_fee:.1f} U") +print(f" 总返佣: {r_all.total_rebate:.1f} U") +print(f" 净手续费: {net_fee_all:.1f} U") +print(f" Sharpe: {sharpe_all:.2f}") +print() + +# 按年统计连续回测中的表现 +print(" 连续回测逐年切片:") +print(f" {'年份':>6s} {'年初权益':>10s} {'年末权益':>10s} {'年收益':>10s} {'年收益率':>8s}") +print("-" * 60) +for y in YEARS: + mask = (eq_all.index >= f'{y}-01-01') & (eq_all.index < f'{y+1}-01-01') + if mask.sum() == 0: + continue + eq_year = eq_all[mask] + start_eq = float(eq_year.iloc[0]) + end_eq = float(eq_year.iloc[-1]) + yr_ret = end_eq - start_eq + yr_pct = yr_ret / start_eq * 100 + print(f" {y:>6d} {start_eq:>10.1f} {end_eq:>10.1f} {yr_ret:>+10.1f} {yr_pct:>+7.1f}%") +print() + +# ============================================================ +# 图表 +# ============================================================ +fig, axes = plt.subplots(3, 1, figsize=(18, 18), dpi=120) + +# 图1: 逐年独立回测权益曲线 +ax1 = axes[0] +colors = plt.cm.tab10(np.linspace(0, 1, len(YEARS))) +for i, y in enumerate(YEARS): + r = year_results[y] + eq = r.equity_curve["equity"].dropna() + days = (eq.index - eq.index[0]).total_seconds() / 86400 + ax1.plot(days, eq.values, label=f"{y}", color=colors[i], linewidth=0.8) +ax1.set_title(f"BB(10,2.5) D方案 逐年独立回测 (200U起步)", fontsize=13, fontweight="bold") +ax1.set_xlabel("天数") +ax1.set_ylabel("权益 (USDT)") +ax1.axhline(y=200, color="gray", linestyle="--", alpha=0.5, label="本金200U") +ax1.legend(loc="upper left", fontsize=9) +ax1.grid(True, alpha=0.3) + +# 图2: 连续回测权益曲线 +ax2 = axes[1] +eq_curve = r_all.equity_curve["equity"].dropna() +ax2.plot(eq_curve.index, eq_curve.values, color="steelblue", linewidth=0.6) +ax2.set_title(f"BB(10,2.5) D方案 连续回测 2020-2025 (200U→{final_eq_all:.0f}U)", fontsize=13, fontweight="bold") +ax2.set_xlabel("日期") +ax2.set_ylabel("权益 (USDT)") +ax2.axhline(y=200, color="gray", linestyle="--", alpha=0.5) +ax2.grid(True, alpha=0.3) + +# 图3: 连续回测日PnL +ax3 = axes[2] +daily_pnl = r_all.daily_stats["pnl"].astype(float) +colors_pnl = ['green' if x >= 0 else 'red' for x in daily_pnl.values] +ax3.bar(daily_pnl.index, daily_pnl.values, color=colors_pnl, width=1, alpha=0.7) +ax3.set_title("日 PnL 分布", fontsize=13, fontweight="bold") +ax3.set_xlabel("日期") +ax3.set_ylabel("PnL (USDT)") +ax3.axhline(y=0, color="black", linewidth=0.5) +ax3.grid(True, alpha=0.3) + +plt.tight_layout() +chart_path = out_dir / "bb_trade_d_plan_2020_2025.png" +plt.savefig(chart_path, bbox_inches="tight") +print(f"图表已保存: {chart_path}")