Registered User Joined: 10/7/2004 Posts: 26
|
Can you please direct me to an example that would allow me to set up a watch list of symbols, that can be sorted real time, as to how far (percent or points would be ok) the current price is from its 1 minute 200 bar simple moving average. Thank you
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
A Personal Criteria Formula for the Percent Difference between Price and its 200-Period Simple Moving Average can be written as:
100 * (C / AVGC200 - 1)
A PCF for the Absolute Percent Difference between Price and its 200-Period Simple Moving Average can be written as:
100 * ABS(C / AVGC200 - 1)
A PCF for the Difference between Price and its 200-Period Simple Moving Average can be written as:
C - AVGC200
A PCF for the Absolute Difference between Price and its 200-Period Simple Moving Average can be written as:
ABS(C - AVGC200)
When you create or edit a PCF in the TC2000.com version 11 beta, you can use a drop-down menu to change the Time Frame. You will want to adjust the Time Frame to 1-Minute.
It should be noted that while it will be using the streaming realtime data, the actual calculations will take time and will not be instantaneous.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|