Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

MoneyStream range on prior days Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
celo
Posted : Monday, September 17, 2012 11:14:29 AM
Registered User
Joined: 10/7/2004
Posts: 131

I am trying to write a PCF for moneystream range for yesterday, 2 days ago, etc. for backtesting.

 

Would this be the correct PCF for 78 day Moneystream range yesterday?

 100 * (MS.1 - MIN(MS,78.1)) / (MAX(MS,78.1) - MIN(MS,78.1))

78 day Moneystream 2 days ago

 100 * (MS.2 - MIN(MS,78.2)) / (MAX(MS,78.2) - MIN(MS,78.2))

I am dong a lot of back testing and want to make sure this is correct. Thanks

Bruce_L
Posted : Monday, September 17, 2012 11:21:11 AM


Worden Trainer

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

As with your previous post in the Backtesting Moneystream Range, this format is not correct.

A version for 1-bar ago would be:

100 * (MS1.1 - MIN(MS1.1,78)) / (MAX(MS1.1,78) - MIN(MS1.1,78))

A version for 2-bars ago would be:

100 * (MS1.2 - MIN(MS1.2,78)) / (MAX(MS1.2,78) - MIN(MS1.2,78))

Dealing with OBV & MS in PCF's - how to interp their "values"
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!



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