QuantBasics
文章平均质量分 90
关小A
这个作者很懒,什么都没留下…
展开
-
【UpToLec5】【Linear Algebra】线性代数基础回顾
看最优化时发现许多围绕PSD、Eigenvectors等概念的定理不太熟悉,于是想着把线代基础重新过一遍。打算过两套材料:MIT Gilbert Strang的线代课,老经典了,很基础。可惜以前没看过,借此机会膜拜一下,再锻炼锻炼直觉Linear Algebra by Kenneth Hoffman & Ray Kunze。重点在后半部分inner product spaces, 可能要花两周的时间重新学一下。笔记只记能增进直觉的核心理解。以前实分析的老师说,他觉得反证法不算证明,因为很多原创 2022-05-19 15:56:52 · 345 阅读 · 0 评论 -
【ConvexOptimization】1.Convex sets and functions
Disclaimer: This is a study note of the Fall 2018 Convex Optimization course offered at CMU. The note is compiled to document key understandings of concepts, which I think greatly aids the memorization and recalling process. While the note will inevitably原创 2022-05-11 11:12:04 · 144 阅读 · 0 评论 -
【Option 101】【未完成】历史波动率的不同度量方法
1. Close-to-close公式: σ=Σi=1i=N(ri−μ)2N\sigma = \sqrt{\frac{\Sigma_{i = 1}^{i = N} (r_i - \mu)^2}{N}}σ=NΣi=1i=N(ri−μ)2 再年化优点: 简单易懂缺点: 没隔夜跳空,没日内信息,容易低估。2. Parkinson 1980. aka High low HV公式: σ=Σi=1i=N(lnhili)24Nln2\sigma = \sqrt{\frac{\Sigma_{i = 1}原创 2022-02-07 19:16:31 · 2209 阅读 · 0 评论 -
【PythonBasics】Variable Passing Mechanism
Variable Passing in Python2021.12.29 To be updated after machine structure is learntSource: A very good graphical explanationWe think of varible x = [1, 2] using a box-pointer diagram, where x points to a box containing a pointer to the list object [1,原创 2021-12-29 14:31:31 · 164 阅读 · 0 评论