| 
 PureBytes Links 
Trading Reference Links 
 | 
Wallace
It looks to me as though this is written wongly, if only for the 
fact that it uses a forward reference. Since this is looking into 
the future (time periods that haven't arrived yet) then I can't see 
it being a lot of use.
Buy Condition: LOW < Ref(LOW,-1) AND LOW < Ref(LOW,1)
Sell Condition: HIGH > Ref(HIGH,-1) AND HIGH > Ref(HIGH,1)
Try this
Buy Condition:
L>Ref(L,-1) AND Ref(L,-1)<Ref(L,-2) AND Ref(L,-1)<Ref(L,-3);
Sell Condition:
H<Ref(H,-1) AND Ref(H,-1)>Ref(H,-2) AND Ref(H,-1)>Ref(H,-3);
The signal will be (I think) one bar later on all but the leading 
edge, and there is a fourth bar added to the pattern that should cut 
down on some of the signals.
Roy
--- In equismetastock@xxxxxxxxxxxxxxx, murusprimus <no_reply@xxxx> 
wrote:
> Hello All, hoping you might be interested in improving this Expert.
> The Expert gives signals usually at the top/bottom of swings, but 
> also puts signals on almost every other bar of the trend on 
Intraday 
> prices, and even the Daily gets too many signals.
> Any ideas ? Wallace.
> 
> Symbols
> 
>  Buy Condition: LOW < Ref(LOW,-1) AND LOW < Ref(LOW,1)
> 
> Sell Condition: HIGH > Ref(HIGH,-1) AND HIGH > Ref(HIGH,1)
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/BefplB/TM
---------------------------------------------------------------------~->
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
 
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/ 
 
 |