SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : Metastock 6.0 for Window -- Ignore unavailable to you. Want to Upgrade?


To: Barry Kales who wrote (3556)7/7/2000 5:40:04 PM
From: Richard Estes  Read Replies (1) | Respond to of 4056
 
try:

Doji() AND
Alert((Ref(C,-1) > Ref(C,-2) > Ref(C,-3) > Ref(C,-4)),5)

I didn't test it. I think alert you want only applies to the close aspect. like their help example, only appiled to volume.



To: Barry Kales who wrote (3556)7/7/2000 11:35:35 PM
From: Paul Beattie  Read Replies (1) | Respond to of 4056
 
Barry,

Try
Alert(Doji() AND Ref(Sum(C>Ref(C,-1),4)=4,-1), 5)

Paul



To: Barry Kales who wrote (3556)7/8/2000 4:37:55 PM
From: Barry Kales  Respond to of 4056
 
MetaStock formula help (continued...)

thanks to Richard and Paul for suggested formulas. However neither of them did what I was looking for. Perhaps I didn't explain clearly.

Click on either of the two pages noted below. This explains the screen I'm looking for.

pristine.com
pristine.com

Thanks--Barry



To: Barry Kales who wrote (3556)7/8/2000 5:12:33 PM
From: CatLady  Respond to of 4056
 
Try this

Alert(Doji() AND
Ref(C,-1) > Ref(C,-2) AND
Ref(C,-2) > Ref(C,-3) AND
Ref(C,-3) > Ref(C,-4) AND
Ref(C,-4) > Ref(C,-5),5)

I added one more comparison to get 4 days rising before the Doji, I'm not sure if the doji day itself should be included in the count. ( I don't think it should )