PureBytes Links
Trading Reference Links
|
This is the last indicator on Dale Legan's request it is the ## Top &
Bottom Indicator. It is based on his Confluence indicator. If you have
questions as to the use and application you can contact Dale Legan, he
would be happy to hear from you and give you tips on it's use.
John
{ ## Top & Bottom Indicator}
vars:string1("");
value1= confluence(c,6);
if value1=9 then begin
value2=l-1 point;
value3=h+1 point;
plot1(value2,"+9G");
end;
if value1=-9 then begin
value4=l-1 point;
value5=h+1 point;
plot2(value5,"-9R");
end;
|