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 |

a scan for stocks approaching or recently dropped below their strong support Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
mjbarton
Posted : Monday, November 17, 2014 2:28:44 PM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19

I want to scan for optional stocks that are approaching or recently dropped below their strong support.

Bruce_L
Posted : Monday, November 17, 2014 2:32:46 PM


Worden Trainer

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

You need to be able to calculate strong support in order to do this. So the first step in the process would be to come up with an unambiguous objective definition of what constitutes strong support.

Only then can we determine if it is possible or not to implement that specific definition in TC2000.



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
mjbarton
Posted : Tuesday, November 18, 2014 10:50:58 AM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19
I understand your question. I want stocks that repeatedly (approx. 5 times or more a year) hit strong support. That means they must always come back after a run. I don't care if the stock doesn't have strong resistance. So, the upper end is not important. I'm just not sure how to clearly delineate the criteria of "strong support". So maybe I just want rolling stocks.
busterram
Posted : Tuesday, November 18, 2014 3:19:56 PM
Registered User
Joined: 10/9/2011
Posts: 485

If  you consider monthly low or weekly low as a strong support, you can scan for stocks which are retesting the monthly or weekly lows or slightly below the lows. You can do a bracket like stocks within 1% of the price above or below the weekly low.

You can do a search for it using

c < l1 * 1.01 and c > l1 * 0.99.

Do that on monthly or weekly timeframe to get you stocks that are within 1 % of the weekly lows. And you can visually scan if  you like any of the stocks. 

Additionally you can add a price above a moving average to add to the filtering condition. 

Hope this helps.

B

 

mjbarton
Posted : Friday, November 21, 2014 4:50:44 PM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19
how does c l1 * 0.99 change if I want to find stocks that are within 1% of the low over 6 months?
mjbarton
Posted : Friday, November 21, 2014 4:53:48 PM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19

I meant how does this change: c < l1 * 1.01 and c > l1 * 0.99
 for a six month period?

stochastics
Posted : Saturday, November 22, 2014 11:52:26 PM
Gold Customer Gold Customer

Joined: 3/3/2013
Posts: 57

On one of TC2000 Video Tutorials ("Easy Scan section" I believe), Julia provided this Resistance PCF:

C=MAXC120
AND 
C>(MAXC120.60)*.99 
AND 
C<(MAXC120.60)*1.01
 
A Support version of this PCF might give good Support lines when price is at a low.  
Bruce_L
Posted : Monday, November 24, 2014 3:24:08 PM


Worden Trainer

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

mjbarton,
If I am understanding your request correctly,  six month version of the formula suggested by busterram might be written as follows.

ABS(C / MINL126.1 - 1) < .01

stochastics,
Please try the folowing Condition Formula.

C = MINL120 AND ABS(C / MINC120.60 - 1) < .01



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
mjbarton
Posted : Tuesday, November 25, 2014 6:25:04 AM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19

Thanks, I'm getting closer now. If I want to find a stock that is near their low within the last six months and also near it in the previous six months (i.e. got near the low at least twice, once in the last six months and once in the previous six months. ABS(C / MINL252.126 - 1) < .03 and ABS(C / MINL126.1 - 1) < .03 doesn't seem like I have the correct use of the 252.126 and 126.1 correct.

Bruce_L
Posted : Tuesday, November 25, 2014 9:28:09 AM


Worden Trainer

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

Maybe something like the following?

MINL126 <= 1.03 * MINL252 AND MINL126.126 <= 1.03 * MINL252



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
mjbarton
Posted : Wednesday, November 26, 2014 4:32:24 AM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19

Thank you very much for this help.

1. Does this read the low over the last 126 days is within 3% of the low over the last 252 days and the low going back between 252 and 126 days ago is within 3% of the low over the last 252 days?
 This seems redundant?

2. I want the close tody to be within 3% of this support (as we define by the two lows detected within the last six monhs and the previous six monhs.

mjbarton
Posted : Wednesday, November 26, 2014 5:47:03 AM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19
I have C
mjbarton
Posted : Wednesday, November 26, 2014 5:47:54 AM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19

I have C <= 1.03 * MINL252 for #2 above. I think this is correct. If so, I just need some clarification on #1 above.

Bruce_L
Posted : Wednesday, November 26, 2014 12:25:10 PM


Worden Trainer

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

Yes, it is checking for the low over the most recent 126 bars to be within 3% of the low of the most recent 252 bars and for the low of the 126 bars before that to also by within 3% of the low of the most recent 252 bars. So price had to have dropped within 3% of the 252 bar support in both the first an second 126 bars of those 252 bars.

These requirements are not redundant with each other. Either the first or second 126 bars will have set the low over 252 bars and should be equal. The other 126 bar increment needs to be within 3% of that low.

Your C <= 1.03 * MINL252 would be correct for the current price also being within 3% of that low.

MINL126 <= 1.03 * MINL252 AND MINL126.126 <= 1.03 * MINL252 AND C <= 1.03 * MINL252



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
mjbarton
Posted : Wednesday, November 26, 2014 2:29:33 PM
Platinum Customer Platinum Customer

Joined: 2/13/2005
Posts: 19

perfect. I get it now. You are amazing. I have a BS in math and a Masters in statistics and I really had to study this to get it! Thanks again.

Bruce_L
Posted : Wednesday, November 26, 2014 2:42:55 PM


Worden Trainer

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

You're welcome.



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