Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Garman-Klass volatility estimator for Amibroker (AFL)
http://formulapages.com/eq/402
Exploration outputs Garman-Klass volatility
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 | period = Param ( "lookback period" ,30,5,300,1); TimeFrameSet ( inDaily ); GKvol = sqrt (252/period*(0.5 * (ln( H / L ))^2 - (2*ln(2)-1) * (ln( O / C ))^2 )); TimeFrameRestore (); Filter =1; AddColumn (GKvol, "GKvol" , 1.0, colorDefault , colorDefault ,45); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Seems sum function is missing
Change GKvol with this one:
GKvol = sqrt(252/period * Sum((0.5 * (ln(H/L))^2 – (2*ln(2)-1) * (ln(O/C))^2 ), period));