Download software Tutorial videos
Subscription & data-feed pricing Class schedule


New account application Trading resources
Margin rates Stock & option commissions

Attention: Discussion forums are read-only for extended maintenance until further notice.
Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

how to scan gap ups or downs during the day Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
dipanpatel1984
Posted : Thursday, April 19, 2018 3:40:35 PM
Gold Customer Gold Customer

Joined: 3/8/2018
Posts: 30

I am trying to scan for stocks which gapped up or down today morning.

For example.. If something closed at $10 yesterday at market close and it opened at $10.50 this morning.

And i would like to get the same result at anyttime during the day. as i know GAPS can fill up or down.

Thanks

Dipan

Bruce_L
Posted : Thursday, April 19, 2018 3:58:28 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

If you just need the close to be different than the open, than you could use the following condition formula in a daily time frame.

C1 <> O

If you needed the open to be say at least $0.10 different than the previous close.

ABS(C1 - O) >= .1

If you need the open to be at least 1% away from the previous close.

ABS(O / C1 - 1) >= .01

If you need the open to be at least $.05 above the previous close.

O >= C1 + .05

If you need the open to be at least 2% below the previous close.

O <= .98 * C1

The exact formula is going to depend on the specific definition of the gap.



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
dipanpatel1984
Posted : Thursday, April 19, 2018 4:12:46 PM
Gold Customer Gold Customer

Joined: 3/8/2018
Posts: 30

Thanks for the quick response..

This leads me to another questions.. 

I would think 

C1 <> O means... close of previos day is not equal todays open..

and 

O <> C1 means .. today's open is not equal to previous days close..

 

When i do both of these , i get differnt number of results on the same watch list?

Not sure why..

 

 

Bruce_L
Posted : Thursday, April 19, 2018 4:17:02 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

You should not get a different number of results when scanning the same WatchList in a daily time frame once the market has opened. Are the time frames both set to daily? If so, please contact technical support.



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
rbedge
Posted : Monday, April 8, 2019 10:42:02 PM
Registered User
Joined: 11/26/2012
Posts: 1

How would I write a scan for a GAP where the Open is Greater than the previous close. In addition, Open is Less than the previous close.  

 

Bruce_L
Posted : Tuesday, April 9, 2019 9:47:01 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

The open just being greater than the previous close is the following.

O > C1

While the open being below the previous close would be the following.

O < C1



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

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.