Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 9/30/2011 Posts: 788
|
I would like to have a PCF Formula with the following parameter: Before the opening of the Markets, select the Securities with the maximum of yesterday over the Pivot R1 and the closing under the Pivot R1.
I thank and greet Raider45
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following condition formula before the market opens (so the formula you actually requested).
3 * H > 2 * H1 - L1 + 2 * C1 AND 2 * H1 - L1 + 2 * C1 > 3 * C
Or the following condition formula once the market opens (provided only because the results will change once the market opens).
3 * H1 > 2 * H2 - L2 + 2 * C2 AND 2 * H2 - L2 + 2 * C2 > 3 * C1
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 9/30/2011 Posts: 788
|
Great congratulations !
Thank you !
Sincerely !
|
|
Registered User Joined: 9/30/2011 Posts: 788
|
I would have a PCF Formula with the following parameter:
1) 30 minutes before the closing of the markets, the distance in percenual expressed in numbers between Close and Pivot R3
2) Before the opening of the Markets, the same percentage distance between Close and Pivot R3 on yesterday's securities.
Thank you and goodbye.
Raider45
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
There isn't a way to check if it is 30 minute before the close of the market, but you can write a formula for the directional distance between the close and Pivot R3 as follows (positive is above and negative is below).
100 * (3 * C / (5 * H1 - 4 * L1 + 2 * C1) - 1)
If you don't care about directionality, you could use the absolute value function.
100 * ABS(3 * C / (5 * H1 - 4 * L1 + 2 * C1) - 1)
This should work both in the 30 minutes before the market closes to check current values and before the market opens to check yesterday (since that would still be the current trading day as far as the indicator is concerned).
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 9/30/2011 Posts: 788
|
Big congratulations, thank you! Sincerely !
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |