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

Simple Bollinger Band Scan


  • To: "Amibroker Group" <amibroker@xxxxxxxxxxxxxxx>
  • Subject: Simple Bollinger Band Scan
  • From: "First Pacific Securities P/L" <lvl@xxxx>
  • Date: 1 Oct 2002 04:14:18 -0000

PureBytes Links

Trading Reference Links



George,
Here is a 
simple example of what you can do with BBs in a scan.
<FONT face=Tahoma 
size=1>T1=20;
bbb=<FONT 
color=#0000ff>BBandBot(C,<SPAN 
class=453045903-01102002>T1,2<FONT 
face=Tahoma>);
bbt=<FONT 
color=#0000ff>BBandTop(C,<SPAN 
class=453045903-01102002>T1,2<FONT 
face=Tahoma>);
pctB=(C-bbb)/(bbt-bbb)*<FONT 
face=Tahoma>100<FONT 
size=1>;
fn1 = pctB<<FONT face=Tahoma 
color=#ff00ff>10;
fn2 = 
pctB>90;
<SPAN 
class=453045903-01102002>Buy=fn1;
<SPAN 
class=453045903-01102002>Sell=fn2;
Filter=Buy or 
Sell;<FONT 
color=#0000ff size=1>
AddColumn<FONT 
color=#000000 size=1>(Buy,<FONT color=#ff00ff 
size=1>"Buy"<FONT 
color=#000000>);
AddColumn<FONT 
color=#000000 size=1>(Sell,<FONT color=#ff00ff 
size=1>"Sell");
Larry 
Lovrencic
<SPAN 
class=453045903-01102002> 
<FONT face=Tahoma 
color=#000000>