logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
carcajou  
#1 Posted : Wednesday, November 5, 2008 7:43:01 PM(UTC)
carcajou

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/6/2008(UTC)
Posts: 7

Hello,

I try to find stcok on potentiel support zone.

I try the template and the indicators on Metastock, I try that :

LookBack := Input("Look Back Periods",1,1000,10);

Resistance :=ValueWhen(1,Cross(Mov(C, LookBack,

S),C),HHV(H, LookBack));

Support :=ValueWhen(1,Cross(C,Mov(C, LookBack,

S)),LLV(L, LookBack));

Resistance;

Support;

and this one ;

PrCnt:=Input("Percentage",0,100,10);

LookBack:= Input("Look Back Periods",1,1000,10);

Resistance:=ValueWhen(1,Cross(Mov(C,LookBack,S),C),HHV(H,LookBack));

Support:=ValueWhen(1,Cross(C,Mov(C,LookBack,S)),LLV(L,LookBack));

Resistance * ((100-prcnt)/100);

Support * ((prcnt/100)+1);

If low was :

bas400:=L <= Ref(LLV(L,400),-1);

bas400

How I can find stocks around 2% more or less bas400 ?

Carcajou

wabbit  
#2 Posted : Wednesday, November 12, 2008 4:26:00 PM(UTC)
wabbit

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 3,111
Location: Perth, Western Australia

Was thanked: 16 time(s) in 16 post(s)
Hi Carcajou,

Welcome to the forum.

Have a read in the MS Users Manual about how to use the Explorer to find stocks that meet certain criteria. Use a filter condition to select the required stocks, or eliminate those not required, something like this?

Code:

{filter}
bas400:=LLV(L,400);
pct:=0.02;

(L < (1+pct)*bas400)
 AND
(L > (1-pct)*bas400);



Hope this helps.

wabbit [:D]

carcajou  
#3 Posted : Tuesday, November 18, 2008 7:17:14 PM(UTC)
carcajou

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/6/2008(UTC)
Posts: 7

Thanks,

Carcajou

Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.