Breakout Range 2
For interpretation refer to the August 2000 issue of Technical Analysis of STOCKS & COMMODITIES magazine.
var
lb:=4;
{ number of periods in look back }
event:=H > Highest(H\1\, lb);
bs:=0;
end_var
{calculating bars since}
if HistorySize>1 then
begin
if not event then bs:=bs\1\+1;
else bs:=0;
end;
if event and (bs\1\ >= lb) then
return bs\1\;
return 0;
|
Download to import into Tradecision. 
How to use this indicator in Tradecision:
- Click Download.
- Save this indicator in a safe location on your hard drive.
- Open Tradecision and in the Tools menu click Indicator Builder.
- In the Indicator Builder dialog, click Import, locate the saved file and then click OK.
The indicator will be added to the Custom Indicators list.
|