Registered User Joined: 11/18/2017 Posts: 14
|
Hello Trainer !
I'm looking for a formula that give me stocks that containt a bar with a body that is bigger then at least all the bar -with the same timefarme- in 5 days ago.
I mean when we see in the chart we don't find a simillaire bar in the 5minute timeframe. like in the picture below.
https://imgur.com/a/9IbvZ
Thank you !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you just wanted it bigger than each of the previous 5 bars.
H - L > MAX(H1 - L1, 5)
If you want it bigger than the entire range of the previous 5 bars.
H - L > MAXH5 - MINL5
If you want it to be at least twice as big as each of the previous 5 bars.
H - L > 2 * MAX(H1 - L1, 5)
If you want it to be at least twice as big as the entire range of the prveious 5 bars.
H - L > 2 * (MAXH5 - MINL5)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 11/18/2017 Posts: 14
|
Oh thank you so much Bruce L ! you are just amazing ! you are the treasure of Worden !
Have a nice day
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|