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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

KPShortTermTrend Bias for Amibroker (AFL)

Rating:
3 / 5 (Votes 4)
Tags:
oscillator, amibroker

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

3 Days Track
Submitted by janet0211 almost 14 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
%R ++
Submitted by reb almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
/* 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

1. rajaswamy

not working for me sir i have done plug in and includs still not working sir

2. kuwait

not sure .. but i think this is KwikPop ..KP ??

Leave Comment

Please login here to leave a comment.

Back