You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/hurst.py
+39Lines changed: 39 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,9 +35,48 @@ def _(mo):
35
35
36
36
* [Hurst Exponent for Algorithmic Trading](https://robotwealth.com/demystifying-the-hurst-exponent-part-1/)
37
37
* [Basics of Statistical Mean Reversion Testing](https://www.quantstart.com/articles/Basics-of-Statistical-Mean-Reversion-Testing/)
38
+
39
+
## Estimate from OHLC data
40
+
41
+
We want to construct a mechanism to estimate the Hurst exponent via OHLC data because it is widely available from data providers and easily constructed as an online signal during trading.
42
+
43
+
In order to evaluate results against known solutions, we consider the Weiner process as generator of timeseries.
44
+
45
+
We use the **WeinerProcess** from the stochastic process library and sample one path over a time horizon of 1 (day) with a time step every second.
0 commit comments