Sam & All, Since lightning hit the house last week the computer has been limping along with all sorts of strange problems. My BSS post is a good example, a simple cut and paste gets all messed up. Anyway insurance company has given me the go ahead to buy a new system so will be back to normal in a few weeks. Please accept my appoligies and try the following:
The Bill Sandusky System developed in WOW50 Pro. Create the three indicators "# CCI", "# BSS", and "# BSS(alerts)" as described below. Make a plot of a security in a color setup that you like, then Plot an "other security" of the S&P 500 (this is for relative strength). Plot the # BSS indicator and the # BSS(alerts) indicator. For those that want to cut and paste, I will post this on Silicon Investor site Technical Analysis - Indicators & Systems Subject 8452
# CCI This is equivalent to Equis CCIe, GET's CCI Standard, LiveWire's CCI. This is broken into two lines because of an unresolved problem with WOW.
1: [non-display] ( abs(ref(typ(),0) - mov(typ(),13,s)) + abs(ref(typ(),-1) - mov(typ(),13,s))+ abs(ref(typ(),-2) - mov(typ(),13,s)) + abs(ref(typ(),-3) - mov(typ(),13,s))+ abs(ref(typ(),-4) - mov(typ(),13,s)) + abs(ref(typ(),-5) - mov(typ(),13,s))+ abs(ref(typ(),-6) - mov(typ(),13,s)) )
2: (typ() - mov(typ(),13,s))/(.015*( fml("# CCI",1) + abs(ref(typ(),-7) - mov(typ(),13,s))+ abs(ref(typ(),-8) - mov(typ(),13,s)) + abs(ref(typ(),-9) - mov(typ(),13,s))+ abs(ref(typ(),-10) - mov(typ(),13,s)) + abs(ref(typ(),-11) - mov(typ(),13,s))+ abs(ref(typ(),-12) - mov(typ(),13,s)) )/13)
# BSS Set each line to plot as a histogram. 50-Red is CCI(13) 50 indicates moving up, 60 indicates above 100. 40-Green is MACD(5,35,4) 30-Blue is RSI(9) 20-Light Blue is Relative Strength 10-Pink is DM- 10-Yellow is DM+
1: if((fml("# CCI",2)>ref(fml("# CCI",2),-1)),50+10*(fml("# CCI",2)>100),(-10*(fml("# CCI",2)<-100)-50)*(fml("# CCI",2)<ref(fml("# CCI",2),-1))) 2: [non-display] ( (mov(c,5,e) - mov(c,35,e)) - (mov((mov(c,5,e) - mov(c,35,e)),4,e)) ) 3: if( fml("# BSS",2)>0,40,-40*(fml("# BSS",2)<0)) 4: if( (rsi(9) > ref(rsi(9),-1)) , 30, -30 * (rsi(9) < ref(rsi(9),-1)) ) 5: if(( (sec1:close/sec2:close)*100 > ref((sec1:close/sec2:close)*100,-1) ), 20, -20*( (sec1:close/sec2:close)*100 < ref((sec1:close/sec2:close)*100,-1) )) 6: if( (mdi(13) < ref(mdi(13),-1)), 10,0) 7: if( (pdi(13) < ref(pdi(13),-1)), -10,0) 8: trend(0,0)
# BSS(alerts) Puts a red (down alert) and green (up alert) on plot of Security
1: [non-display] 50000*(fml("# BSS",1)>=50) + 4000*(fml("# BSS",3)=40) + 300*(fml("# BSS",4)=30) + 20*(fml("# BSS",5)=20) + 1*(fml("# BSS",6)=10) 2: [non-display] 50000*(fml("# BSS",1)<=-50) + 4000*(fml("# BSS",3)=-40) + 300*(fml("# BSS",4)=-30) + 20*(fml("# BSS",5)=-20) + 1*(fml("# BSS",7)=-10) 3: AlertMarker( (fml("# BSS(alerts)",2) = 54321), Above) 4: AlertMarker( (fml("# BSS(alerts)",1) = 54321), Below) |