quantark 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (399) hide show
  1. quantark/__init__.py +3 -0
  2. quantark/_compat.py +150 -0
  3. quantark/asset/__init__.py +8 -0
  4. quantark/asset/bond/__init__.py +2 -0
  5. quantark/asset/bond/engine/__init__.py +44 -0
  6. quantark/asset/bond/engine/analytical/__init__.py +12 -0
  7. quantark/asset/bond/engine/analytical/black_engine.py +583 -0
  8. quantark/asset/bond/engine/analytical/bond_forward_engine.py +390 -0
  9. quantark/asset/bond/engine/analytical/bond_futures_engine.py +569 -0
  10. quantark/asset/bond/engine/convertible/__init__.py +12 -0
  11. quantark/asset/bond/engine/convertible/convertible_bond_engine.py +800 -0
  12. quantark/asset/bond/engine/discount/__init__.py +10 -0
  13. quantark/asset/bond/engine/discount/bond_discount_engine.py +517 -0
  14. quantark/asset/bond/engine/discount/frn_engine.py +913 -0
  15. quantark/asset/bond/engine/pde/__init__.py +14 -0
  16. quantark/asset/bond/engine/pde/convertible/__init__.py +21 -0
  17. quantark/asset/bond/engine/pde/convertible/jump_diffusion_engine.py +603 -0
  18. quantark/asset/bond/engine/pde/convertible/pde_params.py +59 -0
  19. quantark/asset/bond/engine/pde/convertible/tf_engine.py +546 -0
  20. quantark/asset/bond/engine/tree/__init__.py +14 -0
  21. quantark/asset/bond/engine/tree/convertible/__init__.py +21 -0
  22. quantark/asset/bond/engine/tree/convertible/binomial_engine.py +488 -0
  23. quantark/asset/bond/engine/tree/convertible/tree_params.py +72 -0
  24. quantark/asset/bond/engine/tree/convertible/trinomial_engine.py +1341 -0
  25. quantark/asset/bond/product/__init__.py +37 -0
  26. quantark/asset/bond/product/base_bond_product.py +114 -0
  27. quantark/asset/bond/product/convertible/__init__.py +16 -0
  28. quantark/asset/bond/product/convertible/convertible_bond.py +595 -0
  29. quantark/asset/bond/product/couponbond/__init__.py +12 -0
  30. quantark/asset/bond/product/couponbond/fixed_bond.py +285 -0
  31. quantark/asset/bond/product/couponbond/frn.py +538 -0
  32. quantark/asset/bond/product/forward/__init__.py +9 -0
  33. quantark/asset/bond/product/forward/base_bond_forward.py +92 -0
  34. quantark/asset/bond/product/forward/bond_forward.py +335 -0
  35. quantark/asset/bond/product/futures/__init__.py +8 -0
  36. quantark/asset/bond/product/futures/bond_futures.py +532 -0
  37. quantark/asset/bond/product/option/__init__.py +9 -0
  38. quantark/asset/bond/product/option/euro_short_term_bond_option.py +231 -0
  39. quantark/asset/bond/riskmeasures/__init__.py +13 -0
  40. quantark/asset/bond/riskmeasures/bond_greeks_calculator.py +484 -0
  41. quantark/asset/bond/schedule/__init__.py +21 -0
  42. quantark/asset/bond/schedule/cashflow.py +595 -0
  43. quantark/asset/equity/__init__.py +11 -0
  44. quantark/asset/equity/analysis/__init__.py +4 -0
  45. quantark/asset/equity/analysis/autocallable_path_analyzer.py +257 -0
  46. quantark/asset/equity/engine/__init__.py +84 -0
  47. quantark/asset/equity/engine/analytical/__init__.py +37 -0
  48. quantark/asset/equity/engine/analytical/american_option_engine.py +682 -0
  49. quantark/asset/equity/engine/analytical/asian_option_analytical_engine.py +1102 -0
  50. quantark/asset/equity/engine/analytical/barrier_analytical_engine.py +455 -0
  51. quantark/asset/equity/engine/analytical/black_scholes_engine.py +322 -0
  52. quantark/asset/equity/engine/analytical/deltaone_engine.py +340 -0
  53. quantark/asset/equity/engine/analytical/digital_option_engine.py +168 -0
  54. quantark/asset/equity/engine/analytical/double_barrier_option_engine.py +481 -0
  55. quantark/asset/equity/engine/analytical/double_sharkfin_option_analytical_engine.py +508 -0
  56. quantark/asset/equity/engine/analytical/one_touch_analytical_engine.py +302 -0
  57. quantark/asset/equity/engine/analytical/range_accrual_analytical_engine.py +396 -0
  58. quantark/asset/equity/engine/analytical/single_sharkfin_option_analytical_engine.py +229 -0
  59. quantark/asset/equity/engine/base_engine.py +137 -0
  60. quantark/asset/equity/engine/event_stats.py +85 -0
  61. quantark/asset/equity/engine/mc/__init__.py +31 -0
  62. quantark/asset/equity/engine/mc/american_option_mc_engine.py +485 -0
  63. quantark/asset/equity/engine/mc/asian_option_mc_engine.py +678 -0
  64. quantark/asset/equity/engine/mc/barrier_option_mc_engine.py +726 -0
  65. quantark/asset/equity/engine/mc/digital_option_mc_engine.py +419 -0
  66. quantark/asset/equity/engine/mc/double_sharkfin_option_mc_engine.py +676 -0
  67. quantark/asset/equity/engine/mc/euro_mc_engine.py +423 -0
  68. quantark/asset/equity/engine/mc/phoenix_mc_engine.py +1206 -0
  69. quantark/asset/equity/engine/mc/range_accrual_mc_engine.py +738 -0
  70. quantark/asset/equity/engine/mc/single_sharkfin_option_mc_engine.py +549 -0
  71. quantark/asset/equity/engine/mc/snowball_mc_engine.py +2250 -0
  72. quantark/asset/equity/engine/pde/__init__.py +36 -0
  73. quantark/asset/equity/engine/pde/american_pde_solver.py +211 -0
  74. quantark/asset/equity/engine/pde/barrier_pde_solver.py +692 -0
  75. quantark/asset/equity/engine/pde/base_pde_solver.py +994 -0
  76. quantark/asset/equity/engine/pde/double_barrier_pde_solver.py +510 -0
  77. quantark/asset/equity/engine/pde/double_one_touch_pde_solver.py +435 -0
  78. quantark/asset/equity/engine/pde/european_pde_solver.py +170 -0
  79. quantark/asset/equity/engine/pde/ko_reset_snowball_pde_solver.py +477 -0
  80. quantark/asset/equity/engine/pde/one_touch_pde_solver.py +439 -0
  81. quantark/asset/equity/engine/pde/phoenix_pde_solver.py +613 -0
  82. quantark/asset/equity/engine/pde/snowball_pde_solver.py +1810 -0
  83. quantark/asset/equity/engine/pde/spatial_grid.py +750 -0
  84. quantark/asset/equity/engine/pde/time_grid.py +308 -0
  85. quantark/asset/equity/engine/pde_engine.py +238 -0
  86. quantark/asset/equity/engine/quad/__init__.py +23 -0
  87. quantark/asset/equity/engine/quad/discrete_quad_engine.py +106 -0
  88. quantark/asset/equity/engine/quad/european_quad_engine.py +325 -0
  89. quantark/asset/equity/engine/quad/ko_reset_snowball_quad_engine.py +362 -0
  90. quantark/asset/equity/engine/quad/phoenix_quad_engine.py +614 -0
  91. quantark/asset/equity/engine/quad/quad_adapters.py +1260 -0
  92. quantark/asset/equity/engine/quad/quad_core.py +513 -0
  93. quantark/asset/equity/engine/quad/quad_math.py +219 -0
  94. quantark/asset/equity/engine/quad/snowball_quad_engine.py +1137 -0
  95. quantark/asset/equity/engine/validation/script/benchmark_check_american_analytical.py +117 -0
  96. quantark/asset/equity/engine/validation/script/benchmark_check_american_pde.py +114 -0
  97. quantark/asset/equity/engine/validation/script/benchmark_check_asian_analytical.py +440 -0
  98. quantark/asset/equity/engine/validation/script/benchmark_check_barrier_analytical.py +269 -0
  99. quantark/asset/equity/engine/validation/script/benchmark_check_barrier_pde_solver.py +636 -0
  100. quantark/asset/equity/engine/validation/script/benchmark_check_digital_option.py +256 -0
  101. quantark/asset/equity/engine/validation/script/benchmark_check_snowball_pde_solver.py +807 -0
  102. quantark/asset/equity/engine/validation/script/boundary_check_american_analytical.py +290 -0
  103. quantark/asset/equity/engine/validation/script/boundary_check_american_pde.py +242 -0
  104. quantark/asset/equity/engine/validation/script/boundary_check_asian_analytical.py +612 -0
  105. quantark/asset/equity/engine/validation/script/boundary_check_barrier_analytical.py +434 -0
  106. quantark/asset/equity/engine/validation/script/boundary_check_barrier_pde_solver.py +748 -0
  107. quantark/asset/equity/engine/validation/script/boundary_check_digital_option.py +575 -0
  108. quantark/asset/equity/engine/validation/script/boundary_check_snowball_pde_solver.py +1101 -0
  109. quantark/asset/equity/engine/validation/script/greeks_check_digital_option.py +349 -0
  110. quantark/asset/equity/engine/validation/script/mc_comparison_barrier_pde.py +270 -0
  111. quantark/asset/equity/engine/validation/script/quick_mc_compare.py +51 -0
  112. quantark/asset/equity/engine/validation/script/validation_stepdown_improved.py +97 -0
  113. quantark/asset/equity/param/__init__.py +24 -0
  114. quantark/asset/equity/param/engine_param_profiles.py +325 -0
  115. quantark/asset/equity/param/engine_params.py +728 -0
  116. quantark/asset/equity/process/__init__.py +7 -0
  117. quantark/asset/equity/process/bsm/__init__.py +7 -0
  118. quantark/asset/equity/process/bsm/bsm_process.py +108 -0
  119. quantark/asset/equity/process/bsm/qmc_brownian_bridge.py +401 -0
  120. quantark/asset/equity/process/bsm/qmc_path_generator.py +694 -0
  121. quantark/asset/equity/process/bsm/qmc_rqmc_driver.py +163 -0
  122. quantark/asset/equity/process/bsm/qmc_sobol.py +195 -0
  123. quantark/asset/equity/process/bsm/qmc_variance_reduction.py +292 -0
  124. quantark/asset/equity/product/__init__.py +8 -0
  125. quantark/asset/equity/product/base_equity_product.py +72 -0
  126. quantark/asset/equity/product/deltaone/__init__.py +22 -0
  127. quantark/asset/equity/product/deltaone/base_deltaone_product.py +147 -0
  128. quantark/asset/equity/product/deltaone/futures.py +485 -0
  129. quantark/asset/equity/product/deltaone/spot_instrument.py +118 -0
  130. quantark/asset/equity/product/option/__init__.py +104 -0
  131. quantark/asset/equity/product/option/american_option.py +114 -0
  132. quantark/asset/equity/product/option/asian_option.py +531 -0
  133. quantark/asset/equity/product/option/barrier_option.py +289 -0
  134. quantark/asset/equity/product/option/base_equity_option.py +659 -0
  135. quantark/asset/equity/product/option/digital_option.py +102 -0
  136. quantark/asset/equity/product/option/double_barrier_option.py +286 -0
  137. quantark/asset/equity/product/option/double_one_touch_option.py +310 -0
  138. quantark/asset/equity/product/option/double_sharkfin_option.py +466 -0
  139. quantark/asset/equity/product/option/european_vanilla_option.py +103 -0
  140. quantark/asset/equity/product/option/ko_reset_snowball_option.py +563 -0
  141. quantark/asset/equity/product/option/observation_schedule.py +530 -0
  142. quantark/asset/equity/product/option/one_touch_option.py +287 -0
  143. quantark/asset/equity/product/option/phoenix_config.py +116 -0
  144. quantark/asset/equity/product/option/phoenix_helpers.py +576 -0
  145. quantark/asset/equity/product/option/phoenix_option.py +1167 -0
  146. quantark/asset/equity/product/option/range_accrual_config.py +288 -0
  147. quantark/asset/equity/product/option/range_accrual_helpers.py +608 -0
  148. quantark/asset/equity/product/option/range_accrual_option.py +526 -0
  149. quantark/asset/equity/product/option/single_sharkfin_option.py +420 -0
  150. quantark/asset/equity/product/option/snowball_config.py +261 -0
  151. quantark/asset/equity/product/option/snowball_helpers.py +977 -0
  152. quantark/asset/equity/product/option/snowball_option.py +1242 -0
  153. quantark/asset/equity/report/__init__.py +15 -0
  154. quantark/asset/equity/report/autocallable_risk_report.py +2118 -0
  155. quantark/asset/equity/report/plotting.py +87 -0
  156. quantark/asset/equity/report/snowball_risk_comparison_report.py +2230 -0
  157. quantark/asset/equity/report/surfaces.py +123 -0
  158. quantark/asset/equity/report/term_structure.py +126 -0
  159. quantark/asset/equity/riskmeasures/__init__.py +7 -0
  160. quantark/asset/equity/riskmeasures/greeks_calculator.py +1204 -0
  161. quantark/asset/rate/__init__.py +58 -0
  162. quantark/asset/rate/engine/__init__.py +25 -0
  163. quantark/asset/rate/engine/cap_floor_engine.py +514 -0
  164. quantark/asset/rate/engine/fra_engine.py +286 -0
  165. quantark/asset/rate/engine/irs_discount_engine.py +891 -0
  166. quantark/asset/rate/engine/swaption_engine.py +587 -0
  167. quantark/asset/rate/product/__init__.py +67 -0
  168. quantark/asset/rate/product/cap_floor.py +550 -0
  169. quantark/asset/rate/product/fra.py +219 -0
  170. quantark/asset/rate/product/irs.py +1223 -0
  171. quantark/asset/rate/product/swaption.py +372 -0
  172. quantark/backtest/__init__.py +153 -0
  173. quantark/backtest/base.py +263 -0
  174. quantark/backtest/dashboard.py +874 -0
  175. quantark/backtest/equity/__init__.py +35 -0
  176. quantark/backtest/equity/config.py +118 -0
  177. quantark/backtest/equity/engine.py +408 -0
  178. quantark/backtest/equity/hedge_executor.py +374 -0
  179. quantark/backtest/equity/metrics.py +396 -0
  180. quantark/backtest/equity/results.py +232 -0
  181. quantark/backtest/equity/state.py +252 -0
  182. quantark/backtest/examples/__init__.py +4 -0
  183. quantark/backtest/examples/advanced_backtest.py +345 -0
  184. quantark/backtest/examples/basic_delta_hedge.py +246 -0
  185. quantark/backtest/examples/fi_dv01_hedge.py +267 -0
  186. quantark/backtest/fi/__init__.py +30 -0
  187. quantark/backtest/fi/config.py +114 -0
  188. quantark/backtest/fi/engine.py +378 -0
  189. quantark/backtest/fi/hedge_executor.py +254 -0
  190. quantark/backtest/fi/metrics.py +308 -0
  191. quantark/backtest/fi/results.py +193 -0
  192. quantark/backtest/fi/state.py +212 -0
  193. quantark/backtest/logger.py +393 -0
  194. quantark/backtest/otc/__init__.py +74 -0
  195. quantark/backtest/otc/_replay.py +637 -0
  196. quantark/backtest/otc/book_engine.py +587 -0
  197. quantark/backtest/otc/config.py +175 -0
  198. quantark/backtest/otc/dashboard.py +1006 -0
  199. quantark/backtest/otc/engine.py +420 -0
  200. quantark/backtest/otc/engine_factory.py +138 -0
  201. quantark/backtest/otc/market.py +216 -0
  202. quantark/backtest/otc/results.py +107 -0
  203. quantark/backtest/otc/state.py +166 -0
  204. quantark/backtest/report_generator.py +608 -0
  205. quantark/backtest/strategy/__init__.py +28 -0
  206. quantark/backtest/strategy/base_strategy.py +235 -0
  207. quantark/backtest/strategy/convexity_neutral_strategy.py +247 -0
  208. quantark/backtest/strategy/delta_neutral_strategy.py +283 -0
  209. quantark/backtest/strategy/dv01_neutral_strategy.py +283 -0
  210. quantark/backtest/transaction_costs.py +485 -0
  211. quantark/backtest/visualizer.py +1019 -0
  212. quantark/cashleg/__init__.py +31 -0
  213. quantark/cashleg/accrual_leg.py +120 -0
  214. quantark/cashleg/base.py +48 -0
  215. quantark/cashleg/base_amount.py +60 -0
  216. quantark/cashleg/deterministic_leg.py +39 -0
  217. quantark/cashleg/event_distribution.py +262 -0
  218. quantark/cashleg/fixed_payoff_leg.py +92 -0
  219. quantark/cashleg/leg_schedule.py +95 -0
  220. quantark/cashleg/leg_valuator.py +40 -0
  221. quantark/dynamicscenario/__init__.py +97 -0
  222. quantark/dynamicscenario/base.py +297 -0
  223. quantark/dynamicscenario/config.py +122 -0
  224. quantark/dynamicscenario/engine.py +703 -0
  225. quantark/dynamicscenario/equity/__init__.py +14 -0
  226. quantark/dynamicscenario/fi/__init__.py +24 -0
  227. quantark/dynamicscenario/fi/config.py +149 -0
  228. quantark/dynamicscenario/fi/engine.py +500 -0
  229. quantark/dynamicscenario/fi/results.py +503 -0
  230. quantark/dynamicscenario/path/__init__.py +17 -0
  231. quantark/dynamicscenario/path/day_path.py +397 -0
  232. quantark/dynamicscenario/path/fi_path_library.py +488 -0
  233. quantark/dynamicscenario/path/path_builder.py +726 -0
  234. quantark/dynamicscenario/path/path_library.py +620 -0
  235. quantark/dynamicscenario/report/__init__.py +12 -0
  236. quantark/dynamicscenario/report/dynamic_report.py +1175 -0
  237. quantark/dynamicscenario/report/visualizer.py +1586 -0
  238. quantark/dynamicscenario/results/__init__.py +19 -0
  239. quantark/dynamicscenario/results/dynamic_results.py +579 -0
  240. quantark/dynamicscenario/results/result_exporter.py +438 -0
  241. quantark/param/__init__.py +75 -0
  242. quantark/param/basis/__init__.py +19 -0
  243. quantark/param/basis/basis_yield.py +301 -0
  244. quantark/param/div/__init__.py +16 -0
  245. quantark/param/div/dividend_yield.py +123 -0
  246. quantark/param/index/__init__.py +52 -0
  247. quantark/param/index/rate_index.py +568 -0
  248. quantark/param/quote/__init__.py +7 -0
  249. quantark/param/quote/spot_quote.py +35 -0
  250. quantark/param/rrf/__init__.py +22 -0
  251. quantark/param/rrf/rate_curve.py +436 -0
  252. quantark/param/vol/__init__.py +6 -0
  253. quantark/param/vol/vol_surface.py +118 -0
  254. quantark/portfolio/__init__.py +61 -0
  255. quantark/portfolio/base.py +203 -0
  256. quantark/portfolio/equity/__init__.py +17 -0
  257. quantark/portfolio/equity/portfolio.py +391 -0
  258. quantark/portfolio/equity/position.py +368 -0
  259. quantark/portfolio/fi/__init__.py +14 -0
  260. quantark/portfolio/fi/portfolio.py +424 -0
  261. quantark/portfolio/fi/position.py +272 -0
  262. quantark/portfolio/portfolio_snapshot.py +221 -0
  263. quantark/portfolio/portfolio_storage.py +414 -0
  264. quantark/priceenv/__init__.py +7 -0
  265. quantark/priceenv/pricing_environment.py +196 -0
  266. quantark/rfq/__init__.py +32 -0
  267. quantark/rfq/builders.py +102 -0
  268. quantark/rfq/models.py +214 -0
  269. quantark/rfq/registry.py +611 -0
  270. quantark/rfq/service.py +237 -0
  271. quantark/simm/__init__.py +155 -0
  272. quantark/simm/calibration/__init__.py +206 -0
  273. quantark/simm/calibration/accessors.py +439 -0
  274. quantark/simm/calibration/commodity.py +156 -0
  275. quantark/simm/calibration/credit_non_qualifying.py +79 -0
  276. quantark/simm/calibration/credit_qualifying.py +130 -0
  277. quantark/simm/calibration/cross_risk.py +39 -0
  278. quantark/simm/calibration/equity.py +125 -0
  279. quantark/simm/calibration/fx.py +92 -0
  280. quantark/simm/calibration/ir.py +152 -0
  281. quantark/simm/calibration/version.py +33 -0
  282. quantark/simm/config.py +186 -0
  283. quantark/simm/crif/__init__.py +35 -0
  284. quantark/simm/crif/models.py +230 -0
  285. quantark/simm/crif/parser.py +585 -0
  286. quantark/simm/engines/__init__.py +62 -0
  287. quantark/simm/engines/aggregation/__init__.py +67 -0
  288. quantark/simm/engines/aggregation/addon.py +141 -0
  289. quantark/simm/engines/aggregation/bucket_aggregator.py +298 -0
  290. quantark/simm/engines/aggregation/concentration.py +349 -0
  291. quantark/simm/engines/aggregation/product_class_aggregator.py +183 -0
  292. quantark/simm/engines/aggregation/risk_class_aggregator.py +403 -0
  293. quantark/simm/engines/aggregation/simm_calculator.py +430 -0
  294. quantark/simm/engines/aggregation/weighted_sensitivity.py +272 -0
  295. quantark/simm/engines/base.py +231 -0
  296. quantark/simm/engines/classification/__init__.py +10 -0
  297. quantark/simm/engines/classification/bucket_mapper.py +347 -0
  298. quantark/simm/engines/factory.py +137 -0
  299. quantark/simm/engines/portfolio_adapter.py +336 -0
  300. quantark/simm/engines/result.py +176 -0
  301. quantark/simm/engines/risk_class/__init__.py +18 -0
  302. quantark/simm/engines/risk_class/equity_engine.py +263 -0
  303. quantark/simm/engines/risk_class/ir_engine.py +264 -0
  304. quantark/simm/report/__init__.py +17 -0
  305. quantark/simm/report/crif_export.py +284 -0
  306. quantark/simm/report/excel_generator.py +401 -0
  307. quantark/simm/report/html_generator.py +840 -0
  308. quantark/simm/results/__init__.py +38 -0
  309. quantark/simm/results/attribution.py +313 -0
  310. quantark/simm/results/simm_result.py +339 -0
  311. quantark/simm/results/whatif.py +268 -0
  312. quantark/simm/sensitivity.py +533 -0
  313. quantark/simm/taxonomy.py +416 -0
  314. quantark/stresstest/__init__.py +67 -0
  315. quantark/stresstest/base.py +116 -0
  316. quantark/stresstest/config.py +5 -0
  317. quantark/stresstest/engine.py +5 -0
  318. quantark/stresstest/equity/__init__.py +17 -0
  319. quantark/stresstest/equity/config.py +69 -0
  320. quantark/stresstest/equity/engine.py +272 -0
  321. quantark/stresstest/equity/report/__init__.py +7 -0
  322. quantark/stresstest/equity/report/report_generator.py +423 -0
  323. quantark/stresstest/equity/report/visualizer.py +328 -0
  324. quantark/stresstest/equity/results.py +145 -0
  325. quantark/stresstest/fi/__init__.py +15 -0
  326. quantark/stresstest/fi/config.py +59 -0
  327. quantark/stresstest/fi/engine.py +213 -0
  328. quantark/stresstest/fi/metrics.py +60 -0
  329. quantark/stresstest/fi/results.py +64 -0
  330. quantark/stresstest/report/__init__.py +12 -0
  331. quantark/stresstest/report/report_generator.py +5 -0
  332. quantark/stresstest/report/visualizer.py +5 -0
  333. quantark/stresstest/results/__init__.py +16 -0
  334. quantark/stresstest/results/result_aggregator.py +325 -0
  335. quantark/stresstest/results/result_exporter.py +286 -0
  336. quantark/stresstest/results/stress_results.py +5 -0
  337. quantark/stresstest/scenario/__init__.py +13 -0
  338. quantark/stresstest/scenario/scenario.py +242 -0
  339. quantark/stresstest/scenario/scenario_builder.py +376 -0
  340. quantark/stresstest/scenario/scenario_library.py +435 -0
  341. quantark/stresstest/scenario/scenario_storage.py +224 -0
  342. quantark/stresstest/stress/__init__.py +13 -0
  343. quantark/stresstest/stress/stress_applicator.py +590 -0
  344. quantark/stresstest/stress/stress_types.py +142 -0
  345. quantark/util/__init__.py +23 -0
  346. quantark/util/barrier_shift.py +44 -0
  347. quantark/util/calendar/__init__.py +27 -0
  348. quantark/util/calendar/business_calendar.py +584 -0
  349. quantark/util/calendar/day_counter.py +517 -0
  350. quantark/util/calendar/holidayfile/china.csv +1920 -0
  351. quantark/util/calendar/holidayfile/china_sse.csv +1462 -0
  352. quantark/util/enum/__init__.py +81 -0
  353. quantark/util/enum/bond_enums.py +112 -0
  354. quantark/util/enum/deltaone_enums.py +16 -0
  355. quantark/util/enum/engine_enums.py +137 -0
  356. quantark/util/enum/greeks_enums.py +29 -0
  357. quantark/util/enum/option_enums.py +221 -0
  358. quantark/util/exceptions.py +66 -0
  359. quantark/util/marketdata/__init__.py +39 -0
  360. quantark/util/marketdata/adapter/base_adapter.py +203 -0
  361. quantark/util/marketdata/adapter/mock_adapter.py +265 -0
  362. quantark/util/marketdata/converter.py +289 -0
  363. quantark/util/marketdata/example_usage.py +314 -0
  364. quantark/util/marketdata/generator/__init__.py +7 -0
  365. quantark/util/marketdata/generator/mock_generator.py +466 -0
  366. quantark/util/marketdata/models.py +358 -0
  367. quantark/util/marketdata/storage/__init__.py +7 -0
  368. quantark/util/marketdata/storage/parquet_storage.py +340 -0
  369. quantark/util/numerical/__init__.py +98 -0
  370. quantark/util/numerical/comparison.py +219 -0
  371. quantark/util/numerical/constants.py +98 -0
  372. quantark/util/numerical/formatting.py +380 -0
  373. quantark/util/numerical/pnl.py +17 -0
  374. quantark/util/numerical/safe_math.py +238 -0
  375. quantark/util/numerical/validation.py +315 -0
  376. quantark/var/__init__.py +39 -0
  377. quantark/var/attribution.py +398 -0
  378. quantark/var/backtest/__init__.py +7 -0
  379. quantark/var/backtest/var_backtester.py +309 -0
  380. quantark/var/base.py +63 -0
  381. quantark/var/config.py +219 -0
  382. quantark/var/engines/__init__.py +13 -0
  383. quantark/var/engines/historical.py +925 -0
  384. quantark/var/engines/monte_carlo.py +870 -0
  385. quantark/var/engines/parametric.py +1199 -0
  386. quantark/var/results/__init__.py +16 -0
  387. quantark/var/results/incremental_var_result.py +131 -0
  388. quantark/var/results/var_report.py +346 -0
  389. quantark/var/results/var_result.py +134 -0
  390. quantark/var/risk_factors/__init__.py +22 -0
  391. quantark/var/risk_factors/base.py +41 -0
  392. quantark/var/risk_factors/equity_factors.py +158 -0
  393. quantark/var/risk_factors/fi_factors.py +99 -0
  394. quantark-0.1.0.dist-info/METADATA +351 -0
  395. quantark-0.1.0.dist-info/RECORD +399 -0
  396. quantark-0.1.0.dist-info/WHEEL +4 -0
  397. quantark-0.1.0.dist-info/licenses/LICENSE +202 -0
  398. quantark-0.1.0.dist-info/licenses/NOTICE +2 -0
  399. quantark_compat.pth +1 -0
@@ -0,0 +1,1462 @@
1
+ date
2
+ 2019-01-01
3
+ 2019-01-05
4
+ 2019-01-06
5
+ 2019-01-12
6
+ 2019-01-13
7
+ 2019-01-19
8
+ 2019-01-20
9
+ 2019-01-26
10
+ 2019-01-27
11
+ 2019-02-02
12
+ 2019-02-03
13
+ 2019-02-04
14
+ 2019-02-05
15
+ 2019-02-06
16
+ 2019-02-07
17
+ 2019-02-08
18
+ 2019-02-09
19
+ 2019-02-10
20
+ 2019-02-16
21
+ 2019-02-17
22
+ 2019-02-23
23
+ 2019-02-24
24
+ 2019-03-02
25
+ 2019-03-03
26
+ 2019-03-09
27
+ 2019-03-10
28
+ 2019-03-16
29
+ 2019-03-17
30
+ 2019-03-23
31
+ 2019-03-24
32
+ 2019-03-30
33
+ 2019-03-31
34
+ 2019-04-06
35
+ 2019-04-07
36
+ 2019-04-13
37
+ 2019-04-14
38
+ 2019-04-20
39
+ 2019-04-21
40
+ 2019-04-27
41
+ 2019-04-28
42
+ 2019-05-01
43
+ 2019-05-04
44
+ 2019-05-05
45
+ 2019-05-11
46
+ 2019-05-12
47
+ 2019-05-18
48
+ 2019-05-19
49
+ 2019-05-25
50
+ 2019-05-26
51
+ 2019-06-01
52
+ 2019-06-02
53
+ 2019-06-08
54
+ 2019-06-09
55
+ 2019-06-15
56
+ 2019-06-16
57
+ 2019-06-22
58
+ 2019-06-23
59
+ 2019-06-29
60
+ 2019-06-30
61
+ 2019-07-06
62
+ 2019-07-07
63
+ 2019-07-13
64
+ 2019-07-14
65
+ 2019-07-20
66
+ 2019-07-21
67
+ 2019-07-27
68
+ 2019-07-28
69
+ 2019-08-03
70
+ 2019-08-04
71
+ 2019-08-10
72
+ 2019-08-11
73
+ 2019-08-17
74
+ 2019-08-18
75
+ 2019-08-24
76
+ 2019-08-25
77
+ 2019-08-31
78
+ 2019-09-01
79
+ 2019-09-07
80
+ 2019-09-08
81
+ 2019-09-14
82
+ 2019-09-15
83
+ 2019-09-21
84
+ 2019-09-22
85
+ 2019-09-28
86
+ 2019-09-29
87
+ 2019-10-05
88
+ 2019-10-06
89
+ 2019-10-12
90
+ 2019-10-13
91
+ 2019-10-19
92
+ 2019-10-20
93
+ 2019-10-26
94
+ 2019-10-27
95
+ 2019-11-02
96
+ 2019-11-03
97
+ 2019-11-09
98
+ 2019-11-10
99
+ 2019-11-16
100
+ 2019-11-17
101
+ 2019-11-23
102
+ 2019-11-24
103
+ 2019-11-30
104
+ 2019-12-01
105
+ 2019-12-07
106
+ 2019-12-08
107
+ 2019-12-14
108
+ 2019-12-15
109
+ 2019-12-21
110
+ 2019-12-22
111
+ 2019-12-28
112
+ 2019-12-29
113
+ 2020-01-01
114
+ 2020-01-04
115
+ 2020-01-05
116
+ 2020-01-11
117
+ 2020-01-12
118
+ 2020-01-18
119
+ 2020-01-19
120
+ 2020-01-24
121
+ 2020-01-25
122
+ 2020-01-26
123
+ 2020-01-27
124
+ 2020-01-28
125
+ 2020-01-29
126
+ 2020-01-30
127
+ 2020-01-31
128
+ 2020-02-01
129
+ 2020-02-02
130
+ 2020-02-08
131
+ 2020-02-09
132
+ 2020-02-15
133
+ 2020-02-16
134
+ 2020-02-22
135
+ 2020-02-23
136
+ 2020-02-29
137
+ 2020-03-01
138
+ 2020-03-07
139
+ 2020-03-08
140
+ 2020-03-14
141
+ 2020-03-15
142
+ 2020-03-21
143
+ 2020-03-22
144
+ 2020-03-28
145
+ 2020-03-29
146
+ 2020-04-04
147
+ 2020-04-05
148
+ 2020-04-06
149
+ 2020-04-11
150
+ 2020-04-12
151
+ 2020-04-18
152
+ 2020-04-19
153
+ 2020-04-25
154
+ 2020-04-26
155
+ 2020-05-01
156
+ 2020-05-02
157
+ 2020-05-03
158
+ 2020-05-04
159
+ 2020-05-05
160
+ 2020-05-09
161
+ 2020-05-10
162
+ 2020-05-16
163
+ 2020-05-17
164
+ 2020-05-23
165
+ 2020-05-24
166
+ 2020-05-30
167
+ 2020-05-31
168
+ 2020-06-06
169
+ 2020-06-07
170
+ 2020-06-13
171
+ 2020-06-14
172
+ 2020-06-20
173
+ 2020-06-21
174
+ 2020-06-25
175
+ 2020-06-26
176
+ 2020-06-27
177
+ 2020-06-28
178
+ 2020-07-04
179
+ 2020-07-05
180
+ 2020-07-11
181
+ 2020-07-12
182
+ 2020-07-18
183
+ 2020-07-19
184
+ 2020-07-25
185
+ 2020-07-26
186
+ 2020-08-01
187
+ 2020-08-02
188
+ 2020-08-08
189
+ 2020-08-09
190
+ 2020-08-15
191
+ 2020-08-16
192
+ 2020-08-22
193
+ 2020-08-23
194
+ 2020-08-29
195
+ 2020-08-30
196
+ 2020-09-05
197
+ 2020-09-06
198
+ 2020-09-12
199
+ 2020-09-13
200
+ 2020-09-19
201
+ 2020-09-20
202
+ 2020-09-26
203
+ 2020-09-27
204
+ 2020-10-01
205
+ 2020-10-02
206
+ 2020-10-03
207
+ 2020-10-04
208
+ 2020-10-05
209
+ 2020-10-06
210
+ 2020-10-07
211
+ 2020-10-08
212
+ 2020-10-10
213
+ 2020-10-11
214
+ 2020-10-17
215
+ 2020-10-18
216
+ 2020-10-24
217
+ 2020-10-25
218
+ 2020-10-31
219
+ 2020-11-01
220
+ 2020-11-07
221
+ 2020-11-08
222
+ 2020-11-14
223
+ 2020-11-15
224
+ 2020-11-21
225
+ 2020-11-22
226
+ 2020-11-28
227
+ 2020-11-29
228
+ 2020-12-05
229
+ 2020-12-06
230
+ 2020-12-12
231
+ 2020-12-13
232
+ 2020-12-19
233
+ 2020-12-20
234
+ 2020-12-26
235
+ 2020-12-27
236
+ 2021-01-01
237
+ 2021-01-02
238
+ 2021-01-03
239
+ 2021-01-09
240
+ 2021-01-10
241
+ 2021-01-16
242
+ 2021-01-17
243
+ 2021-01-23
244
+ 2021-01-24
245
+ 2021-01-30
246
+ 2021-01-31
247
+ 2021-02-06
248
+ 2021-02-07
249
+ 2021-02-11
250
+ 2021-02-12
251
+ 2021-02-13
252
+ 2021-02-14
253
+ 2021-02-15
254
+ 2021-02-16
255
+ 2021-02-17
256
+ 2021-02-20
257
+ 2021-02-21
258
+ 2021-02-27
259
+ 2021-02-28
260
+ 2021-03-06
261
+ 2021-03-07
262
+ 2021-03-13
263
+ 2021-03-14
264
+ 2021-03-20
265
+ 2021-03-21
266
+ 2021-03-27
267
+ 2021-03-28
268
+ 2021-04-03
269
+ 2021-04-04
270
+ 2021-04-05
271
+ 2021-04-10
272
+ 2021-04-11
273
+ 2021-04-17
274
+ 2021-04-18
275
+ 2021-04-24
276
+ 2021-04-25
277
+ 2021-05-01
278
+ 2021-05-02
279
+ 2021-05-03
280
+ 2021-05-04
281
+ 2021-05-05
282
+ 2021-05-08
283
+ 2021-05-09
284
+ 2021-05-15
285
+ 2021-05-16
286
+ 2021-05-22
287
+ 2021-05-23
288
+ 2021-05-29
289
+ 2021-05-30
290
+ 2021-06-05
291
+ 2021-06-06
292
+ 2021-06-12
293
+ 2021-06-13
294
+ 2021-06-14
295
+ 2021-06-19
296
+ 2021-06-20
297
+ 2021-06-26
298
+ 2021-06-27
299
+ 2021-07-03
300
+ 2021-07-04
301
+ 2021-07-10
302
+ 2021-07-11
303
+ 2021-07-17
304
+ 2021-07-18
305
+ 2021-07-24
306
+ 2021-07-25
307
+ 2021-07-31
308
+ 2021-08-01
309
+ 2021-08-07
310
+ 2021-08-08
311
+ 2021-08-14
312
+ 2021-08-15
313
+ 2021-08-21
314
+ 2021-08-22
315
+ 2021-08-28
316
+ 2021-08-29
317
+ 2021-09-04
318
+ 2021-09-05
319
+ 2021-09-11
320
+ 2021-09-12
321
+ 2021-09-18
322
+ 2021-09-19
323
+ 2021-09-20
324
+ 2021-09-21
325
+ 2021-09-25
326
+ 2021-09-26
327
+ 2021-10-01
328
+ 2021-10-02
329
+ 2021-10-03
330
+ 2021-10-04
331
+ 2021-10-05
332
+ 2021-10-06
333
+ 2021-10-07
334
+ 2021-10-09
335
+ 2021-10-10
336
+ 2021-10-16
337
+ 2021-10-17
338
+ 2021-10-23
339
+ 2021-10-24
340
+ 2021-10-30
341
+ 2021-10-31
342
+ 2021-11-06
343
+ 2021-11-07
344
+ 2021-11-13
345
+ 2021-11-14
346
+ 2021-11-20
347
+ 2021-11-21
348
+ 2021-11-27
349
+ 2021-11-28
350
+ 2021-12-04
351
+ 2021-12-05
352
+ 2021-12-11
353
+ 2021-12-12
354
+ 2021-12-18
355
+ 2021-12-19
356
+ 2021-12-25
357
+ 2021-12-26
358
+ 2022-01-01
359
+ 2022-01-02
360
+ 2022-01-03
361
+ 2022-01-08
362
+ 2022-01-09
363
+ 2022-01-15
364
+ 2022-01-16
365
+ 2022-01-22
366
+ 2022-01-23
367
+ 2022-01-29
368
+ 2022-01-30
369
+ 2022-01-31
370
+ 2022-02-01
371
+ 2022-02-02
372
+ 2022-02-03
373
+ 2022-02-04
374
+ 2022-02-05
375
+ 2022-02-06
376
+ 2022-02-12
377
+ 2022-02-13
378
+ 2022-02-19
379
+ 2022-02-20
380
+ 2022-02-26
381
+ 2022-02-27
382
+ 2022-03-05
383
+ 2022-03-06
384
+ 2022-03-12
385
+ 2022-03-13
386
+ 2022-03-19
387
+ 2022-03-20
388
+ 2022-03-26
389
+ 2022-03-27
390
+ 2022-04-02
391
+ 2022-04-03
392
+ 2022-04-04
393
+ 2022-04-05
394
+ 2022-04-09
395
+ 2022-04-10
396
+ 2022-04-16
397
+ 2022-04-17
398
+ 2022-04-23
399
+ 2022-04-24
400
+ 2022-04-30
401
+ 2022-05-01
402
+ 2022-05-02
403
+ 2022-05-03
404
+ 2022-05-04
405
+ 2022-05-07
406
+ 2022-05-08
407
+ 2022-05-14
408
+ 2022-05-15
409
+ 2022-05-21
410
+ 2022-05-22
411
+ 2022-05-28
412
+ 2022-05-29
413
+ 2022-06-03
414
+ 2022-06-04
415
+ 2022-06-05
416
+ 2022-06-11
417
+ 2022-06-12
418
+ 2022-06-18
419
+ 2022-06-19
420
+ 2022-06-25
421
+ 2022-06-26
422
+ 2022-07-02
423
+ 2022-07-03
424
+ 2022-07-09
425
+ 2022-07-10
426
+ 2022-07-16
427
+ 2022-07-17
428
+ 2022-07-23
429
+ 2022-07-24
430
+ 2022-07-30
431
+ 2022-07-31
432
+ 2022-08-06
433
+ 2022-08-07
434
+ 2022-08-13
435
+ 2022-08-14
436
+ 2022-08-20
437
+ 2022-08-21
438
+ 2022-08-27
439
+ 2022-08-28
440
+ 2022-09-03
441
+ 2022-09-04
442
+ 2022-09-10
443
+ 2022-09-11
444
+ 2022-09-12
445
+ 2022-09-17
446
+ 2022-09-18
447
+ 2022-09-24
448
+ 2022-09-25
449
+ 2022-10-01
450
+ 2022-10-02
451
+ 2022-10-03
452
+ 2022-10-04
453
+ 2022-10-05
454
+ 2022-10-06
455
+ 2022-10-07
456
+ 2022-10-08
457
+ 2022-10-09
458
+ 2022-10-15
459
+ 2022-10-16
460
+ 2022-10-22
461
+ 2022-10-23
462
+ 2022-10-29
463
+ 2022-10-30
464
+ 2022-11-05
465
+ 2022-11-06
466
+ 2022-11-12
467
+ 2022-11-13
468
+ 2022-11-19
469
+ 2022-11-20
470
+ 2022-11-26
471
+ 2022-11-27
472
+ 2022-12-03
473
+ 2022-12-04
474
+ 2022-12-10
475
+ 2022-12-11
476
+ 2022-12-17
477
+ 2022-12-18
478
+ 2022-12-24
479
+ 2022-12-25
480
+ 2022-12-31
481
+ 2023-01-01
482
+ 2023-01-02
483
+ 2023-01-07
484
+ 2023-01-08
485
+ 2023-01-14
486
+ 2023-01-15
487
+ 2023-01-21
488
+ 2023-01-22
489
+ 2023-01-23
490
+ 2023-01-24
491
+ 2023-01-25
492
+ 2023-01-26
493
+ 2023-01-27
494
+ 2023-01-28
495
+ 2023-01-29
496
+ 2023-02-04
497
+ 2023-02-05
498
+ 2023-02-11
499
+ 2023-02-12
500
+ 2023-02-18
501
+ 2023-02-19
502
+ 2023-02-25
503
+ 2023-02-26
504
+ 2023-03-04
505
+ 2023-03-05
506
+ 2023-03-11
507
+ 2023-03-12
508
+ 2023-03-18
509
+ 2023-03-19
510
+ 2023-03-25
511
+ 2023-03-26
512
+ 2023-04-01
513
+ 2023-04-02
514
+ 2023-04-05
515
+ 2023-04-08
516
+ 2023-04-09
517
+ 2023-04-15
518
+ 2023-04-16
519
+ 2023-04-22
520
+ 2023-04-23
521
+ 2023-04-29
522
+ 2023-04-30
523
+ 2023-05-01
524
+ 2023-05-02
525
+ 2023-05-03
526
+ 2023-05-06
527
+ 2023-05-07
528
+ 2023-05-13
529
+ 2023-05-14
530
+ 2023-05-20
531
+ 2023-05-21
532
+ 2023-05-27
533
+ 2023-05-28
534
+ 2023-06-03
535
+ 2023-06-04
536
+ 2023-06-10
537
+ 2023-06-11
538
+ 2023-06-17
539
+ 2023-06-18
540
+ 2023-06-22
541
+ 2023-06-23
542
+ 2023-06-24
543
+ 2023-06-25
544
+ 2023-07-01
545
+ 2023-07-02
546
+ 2023-07-08
547
+ 2023-07-09
548
+ 2023-07-15
549
+ 2023-07-16
550
+ 2023-07-22
551
+ 2023-07-23
552
+ 2023-07-29
553
+ 2023-07-30
554
+ 2023-08-05
555
+ 2023-08-06
556
+ 2023-08-12
557
+ 2023-08-13
558
+ 2023-08-19
559
+ 2023-08-20
560
+ 2023-08-26
561
+ 2023-08-27
562
+ 2023-09-02
563
+ 2023-09-03
564
+ 2023-09-09
565
+ 2023-09-10
566
+ 2023-09-16
567
+ 2023-09-17
568
+ 2023-09-23
569
+ 2023-09-24
570
+ 2023-09-29
571
+ 2023-09-30
572
+ 2023-10-01
573
+ 2023-10-02
574
+ 2023-10-03
575
+ 2023-10-04
576
+ 2023-10-05
577
+ 2023-10-06
578
+ 2023-10-07
579
+ 2023-10-08
580
+ 2023-10-14
581
+ 2023-10-15
582
+ 2023-10-21
583
+ 2023-10-22
584
+ 2023-10-28
585
+ 2023-10-29
586
+ 2023-11-04
587
+ 2023-11-05
588
+ 2023-11-11
589
+ 2023-11-12
590
+ 2023-11-18
591
+ 2023-11-19
592
+ 2023-11-25
593
+ 2023-11-26
594
+ 2023-12-02
595
+ 2023-12-03
596
+ 2023-12-09
597
+ 2023-12-10
598
+ 2023-12-16
599
+ 2023-12-17
600
+ 2023-12-23
601
+ 2023-12-24
602
+ 2023-12-30
603
+ 2023-12-31
604
+ 2024-01-01
605
+ 2024-01-06
606
+ 2024-01-07
607
+ 2024-01-13
608
+ 2024-01-14
609
+ 2024-01-20
610
+ 2024-01-21
611
+ 2024-01-27
612
+ 2024-01-28
613
+ 2024-02-03
614
+ 2024-02-04
615
+ 2024-02-09
616
+ 2024-02-10
617
+ 2024-02-11
618
+ 2024-02-12
619
+ 2024-02-13
620
+ 2024-02-14
621
+ 2024-02-15
622
+ 2024-02-16
623
+ 2024-02-17
624
+ 2024-02-18
625
+ 2024-02-24
626
+ 2024-02-25
627
+ 2024-03-02
628
+ 2024-03-03
629
+ 2024-03-09
630
+ 2024-03-10
631
+ 2024-03-16
632
+ 2024-03-17
633
+ 2024-03-23
634
+ 2024-03-24
635
+ 2024-03-30
636
+ 2024-03-31
637
+ 2024-04-04
638
+ 2024-04-05
639
+ 2024-04-06
640
+ 2024-04-07
641
+ 2024-04-13
642
+ 2024-04-14
643
+ 2024-04-20
644
+ 2024-04-21
645
+ 2024-04-27
646
+ 2024-04-28
647
+ 2024-05-01
648
+ 2024-05-02
649
+ 2024-05-03
650
+ 2024-05-04
651
+ 2024-05-05
652
+ 2024-05-11
653
+ 2024-05-12
654
+ 2024-05-18
655
+ 2024-05-19
656
+ 2024-05-25
657
+ 2024-05-26
658
+ 2024-06-01
659
+ 2024-06-02
660
+ 2024-06-08
661
+ 2024-06-09
662
+ 2024-06-10
663
+ 2024-06-15
664
+ 2024-06-16
665
+ 2024-06-22
666
+ 2024-06-23
667
+ 2024-06-29
668
+ 2024-06-30
669
+ 2024-07-06
670
+ 2024-07-07
671
+ 2024-07-13
672
+ 2024-07-14
673
+ 2024-07-20
674
+ 2024-07-21
675
+ 2024-07-27
676
+ 2024-07-28
677
+ 2024-08-03
678
+ 2024-08-04
679
+ 2024-08-10
680
+ 2024-08-11
681
+ 2024-08-17
682
+ 2024-08-18
683
+ 2024-08-24
684
+ 2024-08-25
685
+ 2024-08-31
686
+ 2024-09-01
687
+ 2024-09-07
688
+ 2024-09-08
689
+ 2024-09-14
690
+ 2024-09-15
691
+ 2024-09-16
692
+ 2024-09-17
693
+ 2024-09-21
694
+ 2024-09-22
695
+ 2024-09-28
696
+ 2024-09-29
697
+ 2024-10-01
698
+ 2024-10-02
699
+ 2024-10-03
700
+ 2024-10-04
701
+ 2024-10-05
702
+ 2024-10-06
703
+ 2024-10-07
704
+ 2024-10-12
705
+ 2024-10-13
706
+ 2024-10-19
707
+ 2024-10-20
708
+ 2024-10-26
709
+ 2024-10-27
710
+ 2024-11-02
711
+ 2024-11-03
712
+ 2024-11-09
713
+ 2024-11-10
714
+ 2024-11-16
715
+ 2024-11-17
716
+ 2024-11-23
717
+ 2024-11-24
718
+ 2024-11-30
719
+ 2024-12-01
720
+ 2024-12-07
721
+ 2024-12-08
722
+ 2024-12-14
723
+ 2024-12-15
724
+ 2024-12-21
725
+ 2024-12-22
726
+ 2024-12-28
727
+ 2024-12-29
728
+ 2025-01-01
729
+ 2025-01-04
730
+ 2025-01-05
731
+ 2025-01-11
732
+ 2025-01-12
733
+ 2025-01-18
734
+ 2025-01-19
735
+ 2025-01-25
736
+ 2025-01-26
737
+ 2025-01-28
738
+ 2025-01-29
739
+ 2025-01-30
740
+ 2025-01-31
741
+ 2025-02-01
742
+ 2025-02-02
743
+ 2025-02-03
744
+ 2025-02-04
745
+ 2025-02-08
746
+ 2025-02-09
747
+ 2025-02-15
748
+ 2025-02-16
749
+ 2025-02-22
750
+ 2025-02-23
751
+ 2025-03-01
752
+ 2025-03-02
753
+ 2025-03-08
754
+ 2025-03-09
755
+ 2025-03-15
756
+ 2025-03-16
757
+ 2025-03-22
758
+ 2025-03-23
759
+ 2025-03-29
760
+ 2025-03-30
761
+ 2025-04-04
762
+ 2025-04-05
763
+ 2025-04-06
764
+ 2025-04-12
765
+ 2025-04-13
766
+ 2025-04-19
767
+ 2025-04-20
768
+ 2025-04-26
769
+ 2025-04-27
770
+ 2025-05-01
771
+ 2025-05-02
772
+ 2025-05-03
773
+ 2025-05-04
774
+ 2025-05-05
775
+ 2025-05-10
776
+ 2025-05-11
777
+ 2025-05-17
778
+ 2025-05-18
779
+ 2025-05-24
780
+ 2025-05-25
781
+ 2025-05-31
782
+ 2025-06-01
783
+ 2025-06-02
784
+ 2025-06-07
785
+ 2025-06-08
786
+ 2025-06-14
787
+ 2025-06-15
788
+ 2025-06-21
789
+ 2025-06-22
790
+ 2025-06-28
791
+ 2025-06-29
792
+ 2025-07-05
793
+ 2025-07-06
794
+ 2025-07-12
795
+ 2025-07-13
796
+ 2025-07-19
797
+ 2025-07-20
798
+ 2025-07-26
799
+ 2025-07-27
800
+ 2025-08-02
801
+ 2025-08-03
802
+ 2025-08-09
803
+ 2025-08-10
804
+ 2025-08-16
805
+ 2025-08-17
806
+ 2025-08-23
807
+ 2025-08-24
808
+ 2025-08-30
809
+ 2025-08-31
810
+ 2025-09-06
811
+ 2025-09-07
812
+ 2025-09-13
813
+ 2025-09-14
814
+ 2025-09-20
815
+ 2025-09-21
816
+ 2025-09-27
817
+ 2025-09-28
818
+ 2025-10-01
819
+ 2025-10-02
820
+ 2025-10-03
821
+ 2025-10-04
822
+ 2025-10-05
823
+ 2025-10-06
824
+ 2025-10-07
825
+ 2025-10-08
826
+ 2025-10-11
827
+ 2025-10-12
828
+ 2025-10-18
829
+ 2025-10-19
830
+ 2025-10-25
831
+ 2025-10-26
832
+ 2025-11-01
833
+ 2025-11-02
834
+ 2025-11-08
835
+ 2025-11-09
836
+ 2025-11-15
837
+ 2025-11-16
838
+ 2025-11-22
839
+ 2025-11-23
840
+ 2025-11-29
841
+ 2025-11-30
842
+ 2025-12-06
843
+ 2025-12-07
844
+ 2025-12-13
845
+ 2025-12-14
846
+ 2025-12-20
847
+ 2025-12-21
848
+ 2025-12-27
849
+ 2025-12-28
850
+ 2026-01-01
851
+ 2026-01-02
852
+ 2026-01-03
853
+ 2026-01-04
854
+ 2026-01-10
855
+ 2026-01-11
856
+ 2026-01-17
857
+ 2026-01-18
858
+ 2026-01-24
859
+ 2026-01-25
860
+ 2026-01-31
861
+ 2026-02-01
862
+ 2026-02-07
863
+ 2026-02-08
864
+ 2026-02-14
865
+ 2026-02-15
866
+ 2026-02-16
867
+ 2026-02-17
868
+ 2026-02-18
869
+ 2026-02-19
870
+ 2026-02-20
871
+ 2026-02-21
872
+ 2026-02-22
873
+ 2026-02-23
874
+ 2026-02-28
875
+ 2026-03-01
876
+ 2026-03-07
877
+ 2026-03-08
878
+ 2026-03-14
879
+ 2026-03-15
880
+ 2026-03-21
881
+ 2026-03-22
882
+ 2026-03-28
883
+ 2026-03-29
884
+ 2026-04-04
885
+ 2026-04-05
886
+ 2026-04-06
887
+ 2026-04-11
888
+ 2026-04-12
889
+ 2026-04-18
890
+ 2026-04-19
891
+ 2026-04-25
892
+ 2026-04-26
893
+ 2026-05-01
894
+ 2026-05-02
895
+ 2026-05-03
896
+ 2026-05-04
897
+ 2026-05-05
898
+ 2026-05-09
899
+ 2026-05-10
900
+ 2026-05-16
901
+ 2026-05-17
902
+ 2026-05-23
903
+ 2026-05-24
904
+ 2026-05-30
905
+ 2026-05-31
906
+ 2026-06-06
907
+ 2026-06-07
908
+ 2026-06-13
909
+ 2026-06-14
910
+ 2026-06-19
911
+ 2026-06-20
912
+ 2026-06-21
913
+ 2026-06-27
914
+ 2026-06-28
915
+ 2026-07-04
916
+ 2026-07-05
917
+ 2026-07-11
918
+ 2026-07-12
919
+ 2026-07-18
920
+ 2026-07-19
921
+ 2026-07-25
922
+ 2026-07-26
923
+ 2026-08-01
924
+ 2026-08-02
925
+ 2026-08-08
926
+ 2026-08-09
927
+ 2026-08-15
928
+ 2026-08-16
929
+ 2026-08-22
930
+ 2026-08-23
931
+ 2026-08-29
932
+ 2026-08-30
933
+ 2026-09-05
934
+ 2026-09-06
935
+ 2026-09-12
936
+ 2026-09-13
937
+ 2026-09-19
938
+ 2026-09-20
939
+ 2026-09-25
940
+ 2026-09-26
941
+ 2026-09-27
942
+ 2026-10-01
943
+ 2026-10-02
944
+ 2026-10-03
945
+ 2026-10-04
946
+ 2026-10-05
947
+ 2026-10-06
948
+ 2026-10-07
949
+ 2026-10-10
950
+ 2026-10-11
951
+ 2026-10-17
952
+ 2026-10-18
953
+ 2026-10-24
954
+ 2026-10-25
955
+ 2026-10-31
956
+ 2026-11-01
957
+ 2026-11-07
958
+ 2026-11-08
959
+ 2026-11-14
960
+ 2026-11-15
961
+ 2026-11-21
962
+ 2026-11-22
963
+ 2026-11-28
964
+ 2026-11-29
965
+ 2026-12-05
966
+ 2026-12-06
967
+ 2026-12-12
968
+ 2026-12-13
969
+ 2026-12-19
970
+ 2026-12-20
971
+ 2026-12-26
972
+ 2026-12-27
973
+ 2027-01-01
974
+ 2027-01-02
975
+ 2027-01-03
976
+ 2027-01-09
977
+ 2027-01-10
978
+ 2027-01-16
979
+ 2027-01-17
980
+ 2027-01-23
981
+ 2027-01-24
982
+ 2027-01-30
983
+ 2027-01-31
984
+ 2027-02-05
985
+ 2027-02-06
986
+ 2027-02-07
987
+ 2027-02-08
988
+ 2027-02-09
989
+ 2027-02-10
990
+ 2027-02-11
991
+ 2027-02-12
992
+ 2027-02-13
993
+ 2027-02-14
994
+ 2027-02-20
995
+ 2027-02-21
996
+ 2027-02-27
997
+ 2027-02-28
998
+ 2027-03-06
999
+ 2027-03-07
1000
+ 2027-03-13
1001
+ 2027-03-14
1002
+ 2027-03-20
1003
+ 2027-03-21
1004
+ 2027-03-27
1005
+ 2027-03-28
1006
+ 2027-04-03
1007
+ 2027-04-04
1008
+ 2027-04-05
1009
+ 2027-04-10
1010
+ 2027-04-11
1011
+ 2027-04-17
1012
+ 2027-04-18
1013
+ 2027-04-24
1014
+ 2027-04-25
1015
+ 2027-05-01
1016
+ 2027-05-02
1017
+ 2027-05-03
1018
+ 2027-05-04
1019
+ 2027-05-05
1020
+ 2027-05-08
1021
+ 2027-05-09
1022
+ 2027-05-15
1023
+ 2027-05-16
1024
+ 2027-05-22
1025
+ 2027-05-23
1026
+ 2027-05-29
1027
+ 2027-05-30
1028
+ 2027-06-05
1029
+ 2027-06-06
1030
+ 2027-06-09
1031
+ 2027-06-12
1032
+ 2027-06-13
1033
+ 2027-06-19
1034
+ 2027-06-20
1035
+ 2027-06-26
1036
+ 2027-06-27
1037
+ 2027-07-03
1038
+ 2027-07-04
1039
+ 2027-07-10
1040
+ 2027-07-11
1041
+ 2027-07-17
1042
+ 2027-07-18
1043
+ 2027-07-24
1044
+ 2027-07-25
1045
+ 2027-07-31
1046
+ 2027-08-01
1047
+ 2027-08-07
1048
+ 2027-08-08
1049
+ 2027-08-14
1050
+ 2027-08-15
1051
+ 2027-08-21
1052
+ 2027-08-22
1053
+ 2027-08-28
1054
+ 2027-08-29
1055
+ 2027-09-04
1056
+ 2027-09-05
1057
+ 2027-09-11
1058
+ 2027-09-12
1059
+ 2027-09-15
1060
+ 2027-09-18
1061
+ 2027-09-19
1062
+ 2027-09-25
1063
+ 2027-09-26
1064
+ 2027-10-01
1065
+ 2027-10-02
1066
+ 2027-10-03
1067
+ 2027-10-04
1068
+ 2027-10-05
1069
+ 2027-10-06
1070
+ 2027-10-07
1071
+ 2027-10-09
1072
+ 2027-10-10
1073
+ 2027-10-16
1074
+ 2027-10-17
1075
+ 2027-10-23
1076
+ 2027-10-24
1077
+ 2027-10-30
1078
+ 2027-10-31
1079
+ 2027-11-06
1080
+ 2027-11-07
1081
+ 2027-11-13
1082
+ 2027-11-14
1083
+ 2027-11-20
1084
+ 2027-11-21
1085
+ 2027-11-27
1086
+ 2027-11-28
1087
+ 2027-12-04
1088
+ 2027-12-05
1089
+ 2027-12-11
1090
+ 2027-12-12
1091
+ 2027-12-18
1092
+ 2027-12-19
1093
+ 2027-12-25
1094
+ 2027-12-26
1095
+ 2028-01-01
1096
+ 2028-01-02
1097
+ 2028-01-03
1098
+ 2028-01-08
1099
+ 2028-01-09
1100
+ 2028-01-15
1101
+ 2028-01-16
1102
+ 2028-01-22
1103
+ 2028-01-23
1104
+ 2028-01-25
1105
+ 2028-01-26
1106
+ 2028-01-27
1107
+ 2028-01-28
1108
+ 2028-01-29
1109
+ 2028-01-30
1110
+ 2028-01-31
1111
+ 2028-02-01
1112
+ 2028-02-05
1113
+ 2028-02-06
1114
+ 2028-02-12
1115
+ 2028-02-13
1116
+ 2028-02-19
1117
+ 2028-02-20
1118
+ 2028-02-26
1119
+ 2028-02-27
1120
+ 2028-03-04
1121
+ 2028-03-05
1122
+ 2028-03-11
1123
+ 2028-03-12
1124
+ 2028-03-18
1125
+ 2028-03-19
1126
+ 2028-03-25
1127
+ 2028-03-26
1128
+ 2028-04-01
1129
+ 2028-04-02
1130
+ 2028-04-03
1131
+ 2028-04-04
1132
+ 2028-04-08
1133
+ 2028-04-09
1134
+ 2028-04-15
1135
+ 2028-04-16
1136
+ 2028-04-22
1137
+ 2028-04-23
1138
+ 2028-04-29
1139
+ 2028-04-30
1140
+ 2028-05-01
1141
+ 2028-05-02
1142
+ 2028-05-03
1143
+ 2028-05-06
1144
+ 2028-05-07
1145
+ 2028-05-13
1146
+ 2028-05-14
1147
+ 2028-05-20
1148
+ 2028-05-21
1149
+ 2028-05-27
1150
+ 2028-05-28
1151
+ 2028-05-29
1152
+ 2028-06-03
1153
+ 2028-06-04
1154
+ 2028-06-10
1155
+ 2028-06-11
1156
+ 2028-06-17
1157
+ 2028-06-18
1158
+ 2028-06-24
1159
+ 2028-06-25
1160
+ 2028-07-01
1161
+ 2028-07-02
1162
+ 2028-07-08
1163
+ 2028-07-09
1164
+ 2028-07-15
1165
+ 2028-07-16
1166
+ 2028-07-22
1167
+ 2028-07-23
1168
+ 2028-07-29
1169
+ 2028-07-30
1170
+ 2028-08-05
1171
+ 2028-08-06
1172
+ 2028-08-12
1173
+ 2028-08-13
1174
+ 2028-08-19
1175
+ 2028-08-20
1176
+ 2028-08-26
1177
+ 2028-08-27
1178
+ 2028-09-02
1179
+ 2028-09-03
1180
+ 2028-09-09
1181
+ 2028-09-10
1182
+ 2028-09-16
1183
+ 2028-09-17
1184
+ 2028-09-23
1185
+ 2028-09-24
1186
+ 2028-09-30
1187
+ 2028-10-01
1188
+ 2028-10-02
1189
+ 2028-10-03
1190
+ 2028-10-04
1191
+ 2028-10-05
1192
+ 2028-10-06
1193
+ 2028-10-07
1194
+ 2028-10-08
1195
+ 2028-10-14
1196
+ 2028-10-15
1197
+ 2028-10-21
1198
+ 2028-10-22
1199
+ 2028-10-28
1200
+ 2028-10-29
1201
+ 2028-11-04
1202
+ 2028-11-05
1203
+ 2028-11-11
1204
+ 2028-11-12
1205
+ 2028-11-18
1206
+ 2028-11-19
1207
+ 2028-11-25
1208
+ 2028-11-26
1209
+ 2028-12-02
1210
+ 2028-12-03
1211
+ 2028-12-09
1212
+ 2028-12-10
1213
+ 2028-12-16
1214
+ 2028-12-17
1215
+ 2028-12-23
1216
+ 2028-12-24
1217
+ 2028-12-30
1218
+ 2028-12-31
1219
+ 2029-01-01
1220
+ 2029-01-06
1221
+ 2029-01-07
1222
+ 2029-01-13
1223
+ 2029-01-14
1224
+ 2029-01-20
1225
+ 2029-01-21
1226
+ 2029-01-27
1227
+ 2029-01-28
1228
+ 2029-02-03
1229
+ 2029-02-04
1230
+ 2029-02-10
1231
+ 2029-02-11
1232
+ 2029-02-12
1233
+ 2029-02-13
1234
+ 2029-02-14
1235
+ 2029-02-15
1236
+ 2029-02-16
1237
+ 2029-02-17
1238
+ 2029-02-18
1239
+ 2029-02-19
1240
+ 2029-02-24
1241
+ 2029-02-25
1242
+ 2029-03-03
1243
+ 2029-03-04
1244
+ 2029-03-10
1245
+ 2029-03-11
1246
+ 2029-03-17
1247
+ 2029-03-18
1248
+ 2029-03-24
1249
+ 2029-03-25
1250
+ 2029-03-31
1251
+ 2029-04-01
1252
+ 2029-04-04
1253
+ 2029-04-07
1254
+ 2029-04-08
1255
+ 2029-04-14
1256
+ 2029-04-15
1257
+ 2029-04-21
1258
+ 2029-04-22
1259
+ 2029-04-28
1260
+ 2029-04-29
1261
+ 2029-05-01
1262
+ 2029-05-02
1263
+ 2029-05-05
1264
+ 2029-05-06
1265
+ 2029-05-12
1266
+ 2029-05-13
1267
+ 2029-05-19
1268
+ 2029-05-20
1269
+ 2029-05-26
1270
+ 2029-05-27
1271
+ 2029-06-02
1272
+ 2029-06-03
1273
+ 2029-06-09
1274
+ 2029-06-10
1275
+ 2029-06-16
1276
+ 2029-06-17
1277
+ 2029-06-18
1278
+ 2029-06-23
1279
+ 2029-06-24
1280
+ 2029-06-30
1281
+ 2029-07-01
1282
+ 2029-07-07
1283
+ 2029-07-08
1284
+ 2029-07-14
1285
+ 2029-07-15
1286
+ 2029-07-21
1287
+ 2029-07-22
1288
+ 2029-07-28
1289
+ 2029-07-29
1290
+ 2029-08-04
1291
+ 2029-08-05
1292
+ 2029-08-11
1293
+ 2029-08-12
1294
+ 2029-08-18
1295
+ 2029-08-19
1296
+ 2029-08-25
1297
+ 2029-08-26
1298
+ 2029-09-01
1299
+ 2029-09-02
1300
+ 2029-09-08
1301
+ 2029-09-09
1302
+ 2029-09-15
1303
+ 2029-09-16
1304
+ 2029-09-22
1305
+ 2029-09-23
1306
+ 2029-09-24
1307
+ 2029-09-29
1308
+ 2029-09-30
1309
+ 2029-10-01
1310
+ 2029-10-02
1311
+ 2029-10-03
1312
+ 2029-10-04
1313
+ 2029-10-05
1314
+ 2029-10-06
1315
+ 2029-10-07
1316
+ 2029-10-13
1317
+ 2029-10-14
1318
+ 2029-10-20
1319
+ 2029-10-21
1320
+ 2029-10-27
1321
+ 2029-10-28
1322
+ 2029-11-03
1323
+ 2029-11-04
1324
+ 2029-11-10
1325
+ 2029-11-11
1326
+ 2029-11-17
1327
+ 2029-11-18
1328
+ 2029-11-24
1329
+ 2029-11-25
1330
+ 2029-12-01
1331
+ 2029-12-02
1332
+ 2029-12-08
1333
+ 2029-12-09
1334
+ 2029-12-15
1335
+ 2029-12-16
1336
+ 2029-12-22
1337
+ 2029-12-23
1338
+ 2029-12-29
1339
+ 2029-12-30
1340
+ 2029-12-31
1341
+ 2030-01-01
1342
+ 2030-01-05
1343
+ 2030-01-06
1344
+ 2030-01-12
1345
+ 2030-01-13
1346
+ 2030-01-19
1347
+ 2030-01-20
1348
+ 2030-01-26
1349
+ 2030-01-27
1350
+ 2030-02-02
1351
+ 2030-02-03
1352
+ 2030-02-04
1353
+ 2030-02-05
1354
+ 2030-02-06
1355
+ 2030-02-07
1356
+ 2030-02-08
1357
+ 2030-02-09
1358
+ 2030-02-10
1359
+ 2030-02-16
1360
+ 2030-02-17
1361
+ 2030-02-23
1362
+ 2030-02-24
1363
+ 2030-03-02
1364
+ 2030-03-03
1365
+ 2030-03-09
1366
+ 2030-03-10
1367
+ 2030-03-16
1368
+ 2030-03-17
1369
+ 2030-03-23
1370
+ 2030-03-24
1371
+ 2030-03-30
1372
+ 2030-03-31
1373
+ 2030-04-05
1374
+ 2030-04-06
1375
+ 2030-04-07
1376
+ 2030-04-13
1377
+ 2030-04-14
1378
+ 2030-04-20
1379
+ 2030-04-21
1380
+ 2030-04-27
1381
+ 2030-04-28
1382
+ 2030-05-01
1383
+ 2030-05-02
1384
+ 2030-05-03
1385
+ 2030-05-04
1386
+ 2030-05-05
1387
+ 2030-05-11
1388
+ 2030-05-12
1389
+ 2030-05-18
1390
+ 2030-05-19
1391
+ 2030-05-25
1392
+ 2030-05-26
1393
+ 2030-06-01
1394
+ 2030-06-02
1395
+ 2030-06-05
1396
+ 2030-06-08
1397
+ 2030-06-09
1398
+ 2030-06-15
1399
+ 2030-06-16
1400
+ 2030-06-22
1401
+ 2030-06-23
1402
+ 2030-06-29
1403
+ 2030-06-30
1404
+ 2030-07-06
1405
+ 2030-07-07
1406
+ 2030-07-13
1407
+ 2030-07-14
1408
+ 2030-07-20
1409
+ 2030-07-21
1410
+ 2030-07-27
1411
+ 2030-07-28
1412
+ 2030-08-03
1413
+ 2030-08-04
1414
+ 2030-08-10
1415
+ 2030-08-11
1416
+ 2030-08-17
1417
+ 2030-08-18
1418
+ 2030-08-24
1419
+ 2030-08-25
1420
+ 2030-08-31
1421
+ 2030-09-01
1422
+ 2030-09-07
1423
+ 2030-09-08
1424
+ 2030-09-12
1425
+ 2030-09-13
1426
+ 2030-09-14
1427
+ 2030-09-15
1428
+ 2030-09-21
1429
+ 2030-09-22
1430
+ 2030-09-28
1431
+ 2030-09-29
1432
+ 2030-10-01
1433
+ 2030-10-02
1434
+ 2030-10-03
1435
+ 2030-10-04
1436
+ 2030-10-05
1437
+ 2030-10-06
1438
+ 2030-10-07
1439
+ 2030-10-12
1440
+ 2030-10-13
1441
+ 2030-10-19
1442
+ 2030-10-20
1443
+ 2030-10-26
1444
+ 2030-10-27
1445
+ 2030-11-02
1446
+ 2030-11-03
1447
+ 2030-11-09
1448
+ 2030-11-10
1449
+ 2030-11-16
1450
+ 2030-11-17
1451
+ 2030-11-23
1452
+ 2030-11-24
1453
+ 2030-11-30
1454
+ 2030-12-01
1455
+ 2030-12-07
1456
+ 2030-12-08
1457
+ 2030-12-14
1458
+ 2030-12-15
1459
+ 2030-12-21
1460
+ 2030-12-22
1461
+ 2030-12-28
1462
+ 2030-12-29