PureBytes Links
Trading Reference Links
|
Frank, try this code in your exploration filter:
---8<-----------------------
{ Variables }
minVol:=500000;
pdsVol:=120;
minPrice:=20;
{ Current & prior setup }
current:=BigBlack() AND Ref(Black(),-1)
OR BigWhite() AND Ref(White(),-1);
{ Volume filter }
VolFilter:=Mov(V,pdsVol,S)>=minVol;
{ Price filter }
priceFilter:=C>=minPrice;
{ Signals }
current AND VolFilter AND priceFilter
---8<-----------------------
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "stonesouls207"
<stonesouls207@xxxx> wrote:
>
>
> Hi All,
>
> I have been lurking around this group for about eight months now and
> I am a long time Metastock user. I have recently changed my trading
> style to more of swing-day trading method based on end of day
> candlestick charting. I am now using two separate explorations,
> utilizing the filter method to find a "Big Black Candle" and a "Big
> White Candle." This gives me quite a few results to sort through
> based on the current end of day prices. This is proving to be quite
> a time consuming task. The following is what I am visually sorting
> for, daily, any help on stream lining this would be greatly
> appreciated.
>
> Current or last day: Big Black Candle or Big White Candle
> Prior day: Black Body (to go with BBC)or White Body (to go with BWC)
> Minimum average daily volume based on 120 days: 500,000 shares per
> day Minimum share price: $20.00
>
> Thanks for your help.
> Frank
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/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/
|