Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Beta (Slope) for Amibroker (AFL)
Rating:
4 / 5 (Votes 3)
Tags:
amibroker
Beta calculation based on Excel’s SLOPE function
Similar Indicators / Formulas
Kavach Of Karna v2
Submitted
by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted
by MarcosEn over 13 years ago
3_6Day GuaiLiLv
Submitted
by motorfly over 13 years ago
Williams Alligator System
Submitted
by durgesh1712 over 13 years ago
*Level Breakout system*
Submitted
by Tinych over 13 years ago
Horizontal Live Priceline Tool
Submitted
by northstar over 13 years ago
Indicator / Formula
Copy & Paste Friendly
1 2 3 4 5 6 7 8 9 10 11 12 | function aBetaLnRegCoeff (Index, Stock, Period) { IndexRtn = (Index- Ref (Index,-1))/ Ref (Index,-1)*100; StockRtn = (Stock- Ref (Stock,-1))/ Ref (Stock,-1)*100; IndexRtnAvg = Sum (IndexRtn,Period) / Period; StockRtnAvg = Sum (StockRtn,Period) / Period; IndexDev = IndexRtn - IndexRtnAvg; StockDev = StockRtn - StockRtnAvg; return ( Sum (IndexDev*StockDev,Period) / Sum (IndexDev*IndexDev,Period)); } Beta = aBetaLnRegCoeff ( Foreign ( "INDU" , "C" ), C , 50); Plot (Beta, "Beta" , ParamColor ( "Beta color" , colorBlue ), ParamStyle ( "Beta style" )); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
how come i missed this !!!
Nice work kiedal