PureBytes Links
Trading Reference Links
|
Hello,
I have built a custom formula, which always returns a number
between -5 and 5 for each period.
I want to test this formula so a buy signal is flagged each time the
value crosses -1 from under. *BUT*, I also want to make sure that
before crossing -1, the result of my formula was less than -2 during
its "run" under.
In other words, I do not want to buy a stock that crosses -1, but
that did not previously go under -2 during its run.
To accomplish this, I have written the following in my "Buy Order":
<<<---------Formula---------
VVP:= FML("Martin(VVP)"); {ref to my formula}
PerSinceLower:=BarsSince(VVP<-1); {Periods since result has been
under -1}
LowestValue:=LLV(VVP,PerSinceLower); {Tries to determine the
lowest value since result has been under -1}
---------Formula--------->>>
My problem is that the LLV does not accept a variable for the
PERIODS parameter.
Does anyone have a suggestion? Any help will be greatly appreciated.
Thanks!
Martin
------------------------ 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
---------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|