Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 11/2/2018 Posts: 10
|
I would like to write a scan to find quick rejection or stuffing candles.. Basically the scan would be looking for a 1min candle that is 2 or 3 times the average length of the past 20 candles.. but the has imediatly retraced to near or close to begining of the move (perhaps within seconds)
So for the extented candle the fomula is: H >L AND (H = C) AND H - L >= 3*AVG(H1 - L1, 20)
But for the retracement of lets say 80% of the body of the candle? What would you suggest?
Luc
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
At least 2 times the average of the past 20 candles would be:
H > L AND H - L >= 2 * AVG(H1 - L1, 20)
But I am not sure what you want otherwise. Are you lookng for say opening at the low and then retreating back to the bottom 20% of the candle after its "big move"?
O = L AND STOC1 <= 20 AND H - L >= 2 * AVG(H1 - L1, 20)
Or maybe the opposite with the open at the high?
O = H AND STOC1 >= 80 AND H - L >= 2 * AVG(H1 - L1, 20)
Or are you looking for something else entirely?
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 11/2/2018 Posts: 10
|
Bruce,
Thank you, that looks great.. I will try it tomorrow..
Luc
|
|
Registered User Joined: 11/2/2018 Posts: 10
|
Bruce,
I am liking this new scan you helped me with.. Now can you please help me figure out how to put an alert on this scanner so that I dont have to stare at it all day long... I just want a bell or something as soon as I have a result in the scan...
Luc
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Using at as scan condition would bring up a list of stocks, but if you want a bell or something, you will need an alert. The following webpages have illustrated step-by-step instructions on how to set up conidtion alerts (and you can go up a level in the help site to get more information on alerts in general).
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |