Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

Scan for 15 min volume Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
MCPP
Posted : Friday, November 23, 2018 10:45:46 AM
Registered User
Joined: 8/20/2012
Posts: 27

I have this formula set to look for a volume bar that is 1.95 times larger than the previous 21 bars on a 15 minute timeframe. 

V *1.95 > AVGV21

What I generally see is a bar with that vol criteria printed 3 - 4  bars ago, but what I would like the scan to identify is a bar when the 13th min closes. Hope that makes sense.

What do I need to modify?  

Thanks

 

Bruce_L
Posted : Friday, November 23, 2018 11:05:14 AM


Worden Trainer

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

Your current formula checks for the volume of the current bar times 1.95 to be greater than the average volume of the most recent 21 bars including itself. If you wanted to change that so it was the previous 21 bars instead, it would become the following.

V > 1.95 * AVGV21.1

If you want to wait until the next bar opens for this to return true, you would add 1 to the bars ago parameters.

V1 > 1.95 * AVGV21.2

If you want to check either of the two most recent bars to get the earliest possible warning but still catch things once the next bar has opened.

CountTrue(V > 1.95 * AVGV21.1, 2) > 0



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
MCPP
Posted : Friday, November 23, 2018 11:19:20 AM
Registered User
Joined: 8/20/2012
Posts: 27

Thank you Bruce

MCPP
Posted : Friday, November 23, 2018 11:38:28 AM
Registered User
Joined: 8/20/2012
Posts: 27

Bruce,

A follow up question; so if I wanted to apply this to price, would this be the correct formula?

CountTrue(o-c) > 1.95 * AVGV21.1, 2) > 0

 

Thanks

Bruce_L
Posted : Friday, November 23, 2018 11:42:07 AM


Worden Trainer

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

I am not quite sure what you are trying to do. Are you looking for the range of the body to be greater than the average range?

CountTrue(ABS(O - C) > 1.95 * AVG(ABS(O1 - C1), 21), 2) > 0



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
MCPP
Posted : Friday, November 23, 2018 11:44:47 AM
Registered User
Joined: 8/20/2012
Posts: 27

Yes, thanks

Quiktdr
Posted : Saturday, November 24, 2018 2:36:59 PM
Registered User
Joined: 10/7/2004
Posts: 794

If I wanted a specific scan date do I just add '12/31/2017' to EZ Scan if that was individual date I wanted

 

and this checks momentum from 12/31/2017    100 * (C / C'12/31/2017'- 1)

Bruce_L
Posted : Monday, November 26, 2018 9:50:15 AM


Worden Trainer

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

If you are using a daily or longer time frame, yes. Dates and times really don't work in intraday time frames (well dates can kind of work for some things, but behave differently in say version 12 and version 18 and usually don't do what you might expect).



-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.