| 
 PureBytes Links 
Trading Reference Links 
 | 
I just downloaded EOD Data for yesterday, did not update for current 
data today so last date on chart is 04/07/2003.
If this formula needs future data, and the buy and sell vertical 
lines are lagging, why do I get a Buy (Green vertical line) on APCC, 
BNI, GP,HNZ, LPX etc... for 04/07/2003, the last date of data on the 
chart????? 
Regards
Jim
 /* Asymmetrical Deviation Bands v1 */
/* Author Marc Valley 2003*/
 
//MaxGraph = 8;
HUB = BBandTop(High, 24, .20);
LUB = BBandTop(High, 15, .50);
LLB = BBandTop(Low, 8, 1.00);
G1 = DEMA(Avg,8);
//G4 = DEMA(Close,4);
 
SUB = BBandBot(High, 16, .50);
SLB = BBandBot(Low, 16, .25);
 
Plot(HUB ,"HUB ",7,4); // YELLOW LINE
Plot(LUB ,"LUB ",2,4);
Plot(LLB ,"LLB ",4,4);
Plot(G1 ,"G1 ",1,4);  //BLACK
//Plot(G4 ,"G4 ",5,4);
//Plot(SUB ,"SUB ",colorOrange,4);
Plot(SLB,"SLB",5,4);
//Plot(Peak(G1,1,1),"Peak",4,4);
//Plot(Trough(G1,1,1),"Trough",5,4);
Plot(Cross(G1,Trough(G1,1,1))*G1,"Entry",5,6);
Plot(Cross(Peak(G1,1,1),G1)*G1,"Exit",4,6);
GraphXSpace = 2;
 
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get a FREE REFINANCE QUOTE - click here!
http://us.click.yahoo.com/2CXtTB/ca0FAA/i5gGAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
 
 |