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

Notification

Icon
Error

Options
Go to last post Go to first unread
picasso  
#1 Posted : Monday, November 5, 2012 6:43:44 AM(UTC)
picasso

Rank: Newbie

Groups: Registered, Registered Users
Joined: 11/5/2012(UTC)
Posts: 7

Hello, I would like to have help to build a explorer to scan after stocks that have gaped more than 1,5% both up and down. Could anyone help me with this? Many thanks in advance
wabbit  
#2 Posted : Monday, November 5, 2012 6:52:59 AM(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)
Simple price comparisons can be achieved by reading the MS User Manual, and working through the basic exercises in the free Equis Formula Primer. wabbit [:D]
henry1224  
#3 Posted : Monday, November 12, 2012 1:50:06 PM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
I have found that most gap up or gap downs are filled at the 50% level , so here is what I have developed years ago

Code:

rng:=Abs(H-L);
GS:=If(GapUp(),L-Ref(H,-1),If(GapDown(),Ref(L,-1)-H,PREV));
A:=If(GapUp()=true AND GS>rng*.7,(L-Ref(H,-1))*.5+Ref(H,-1),If(
GapDown()=true AND GS>rng*.7,(Ref(L,-1)-H)*.5+H,PREV));
A;

Users browsing this topic
Guest (Hidden)
Similar Topics
Gap Scanner (Formula Assistance)
by Rookie11 4/7/2010 7:15:04 AM(UTC)
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.