[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Plain text Stoller (starc) bands



PureBytes Links

Trading Reference Links

I have been asked by those with TS 3.5 to supply the plain text.

Happy to oblige.

Manning Stoller
Type: Indicator
Name:Stoller Bands


input:av (6) , atrlen (15) , factor1 (2) , factor2 (3);

var:atr (0) , mav (0) , top1 (0) , top2 (0) , bot1 (0) , bot2 (0);

atr=average (truerange,atrlen)  ;
mav=average (c, av) ;
top1=mav+(factor1*atr) ;
top2=mav+(factor2*atr) ;
bot1=mav- (factor1*atr) ;
bot2=mav- (factor2*atr) ;

if top2>0 then plot1 (top2, “StollerHi”) ;
if top1>0 then plot2 (top1, “StollerHi2”) ;
if bot1>0 then plot3 (bot1, “StollerLo”) ;
if bot2>0 then plot4 (bot2, “StollerLo2”) ;