Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Stoch Rsi for Amibroker (AFL)
A simple and useful tool that I use often to recognize the trend
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | _SECTION_BEGIN ( "STOCHRSI" ); // REM RSI indicator rise= Max (0, Close - Ref ( Close ,-1)); fall= Max (0, Ref ( Close ,-1)- Close ); mmrise= Wilders (rise,21); mmfall= Wilders (fall,21); RS=mmrise/mmfall; mioRSI=100-100/(1+RS); // REM Stocastic indicator upper= HHV ( High ,21); lower= LLV ( Low ,21); oscillator=( Close -lower)/(upper-lower)*100; lineaK= MA (oscillator, 21); // REM StochRSI stkrsi=((mioRSI*lineaK)/100)*1.43; // return oscilla AS "StochRSI" Plot (stkrsi, "StochRSI" , colorBlue , styleLine ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back