Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
KPShortTermTrend Bias for Amibroker (AFL)
Plot either as a Histogram OR as a ribbon
Requires the following plugin to be installed:
Download Plugins
or
Download Plugins
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 | /* KPShortTermTrend Bias Plot either as a Histogram OR as a ribbon */ // tskp_sttb1, tskp_sttb2,tskp_sttb3 parmSTTBStyle = ParamStyle ( "STTB" , styleHistogram + styleNoLabel , maskAll ); parmSTTBColorUp = ParamColor ( "STTB color Up" , colorBlue ); parmSTTBColorDn = ParamColor ( "STTB color Dn" , colorRed ); parmRibbon = ParamToggle ( "Plot as ribbon" , "No|Yes" , 0); parmRibbonUpColor = ParamColor ( "STTB ribbon olor Up" , ColorRGB (167, 224, 243) ); parmRibbonDnColor = ParamColor ( "STTB ribbon color Dn" , ColorRGB (255, 192, 203) ); parmRibbonSize = Param ( "Ribbon size" , 1, 0.5, 10, 0.5); SetBarsRequired (350, -1); //calculations dummy = E_TSKPSHORTTERMTRADEBIAS( High , Low , Close ); KPSTTB1 = tskp_sttb1; //Plots if (parmRibbon == 0) { Plot ( KPSTTB1, "STTB1" , IIf (KPSTTB1 > 0, parmSTTBColorUp, parmSTTBColorDn) , parmSTTBStyle ); } else Plot ( parmRibbonSize, StrFormat ( "STTB1(%g%)" , SelectedValue (KPSTTB1) ) , IIf (KPSTTB1> 0, parmRibbonUpColor, parmRibbonDnColor) , styleArea | styleNoLabel | styleOwnScale , 0, 10); |
2 comments
Leave Comment
Please login here to leave a comment.
Back
not working for me sir i have done plug in and includs still not working sir
not sure .. but i think this is KwikPop ..KP ??