PureBytes Links
Trading Reference Links
|
Hi Mike
Thanks so much for your help. I dropped your formula
into an exploration and it performed as I was hoping.
It's what I was trying to do but wasn't quite able to
put together properly. But you've given me some new
ideas about how to build a formula, which is also what
I was looking for. So again, thanks for your kind
assistance. It is much appreciated.
Best wishes,
Terry
--- Mike Sloane <mfsloane@xxxxxxxxxxxxxx> wrote:
> Hi Terry,
>
> Try this; you can set the X and Y numbers in the
> first two lines to suit
> your ideas; I have assumed a simple average - you
> can change it to
> exponential by replacing S with E.
>
> If you drop it into a new window you will get a
> binary signal line
> (spikes to 1 when all three conditions are true).
>
>
> AVDays:= X; {fill in your number}
> Lookback:= Y; {fill in your number}
> Cond1:= Mov(C, AVDays, S) > Ref(Mov(C, AVDays, S),
> -Lookback);
> Cond2:= C < Ref(C, -Lookback);
> Cond3:= C > Ref(C, -(Lookback + AVDays));
>
> Cond1 AND Cond2 AND Cond3
>
>
> Let me know how it goes.
>
> Good testing and trading.
> Mike
>
>
>
>
> -----Original Message-----
> From: terrance maccormack
> [mailto:terrymaccormack@xxxxxxxxx]
> Sent: Saturday, 14 February 2004 3:55 PM
> To: equismetastock@xxxxxxxxxxxxxxx
> Subject: [EquisMetaStock Group] formula help
>
>
> Like a few others I'm new to Metastock and writing
> formulas to match trading ideas.
>
> I've taken a few stabs at the following but can't
> seem
> to get it right so was wondering if someone out
> there
> could give me a hand.
>
> I want to buy on the open of the next day when the
> following three conditions are met:
>
> (1) The average close of the past X number of days
> is
> greater than the same average close Y days ago.
> (2) Today's close is less than the close Y days ago.
> (3) Today's close is greater than the close Y+X days
> ago.
>
> The reverse would be the case for a sell.
>
> Any help would be greatly appreciated.
>
> Terry M
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Finance: Get your refund fast by filing
> online.
> http://taxes.yahoo.com/filing.html
>
>
>
> _____
>
> 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
>
<mailto:equismetastock-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
>
>
>
> * Your use of Yahoo! Groups is subject to the Yahoo!
> Terms of
> Service <http://docs.yahoo.com/info/terms/> .
>
>
>
__________________________________
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
------------------------ 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/
|