Registered User Joined: 11/23/2015 Posts: 13
|
Can you give me a formula for when a stock price dropped significantly? The kind of fall you would see after a terrible earnings report. Seriously gapping down.
Thanks in advance
|
Registered User Joined: 11/23/2015 Posts: 13
|
Maybe the type of situation where the stock price dropped by 20% yesterday. Maybe that could be adjusted to 10% or 40%.
Thnaks again.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I'm going to start with the more traditional versions of a gapping down formula where open is at least 20% below the previous close.
O <= .8 * C1
Where the open is at least 20% below the previous low.
O <= .8 * L1
Where the high is at least 20% below the previous close.
H <= .8 * C1
And where the high is at least 20% below the previous low.
H <= .8 * L1
In all of the above cases there is some sort of gap between the previous bar and the current bar. be it just from the previous close and current open or the entire candle.
You also mentioned dropping by 20% yesterday? That would generally be either a percent change from the close before that.
C1 <= .8 * C2
Or from the open of that same bar.
C1 <= .8 * O1
Note that the .8 in all of these formulas is what represents the 20% drop. It is calculated by subtracted the desired percentage divided by 100 from 1. So the 20% is 1 - (20 / 100) = .8. This would mean you would use .9 for 10% or .6 for 40%.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 11/23/2015 Posts: 13
|
Thanks so much Bruce.
Very helpful.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|