Guest
Joined: 9/18/2004 Posts: 247
|
HOW CAN I HAVE THIS COPPOCK INDICATOR ACCEPTED BY TC2000 PROGRAm??
COPPOCK INDICATOR = Mov(ROC(C,14,%)+ROC(C,11,%),10,W);0
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I'm guessing to some extent at what the formula represents, but you might wish to try the following Custom Indicator:
Select Chart Template | Add Indicator | Indicator.
- Visible: Checked
- Center Zero Line: Checked
- Plot using price scale: Unchecked
- Smoothing Average: 1
- Average Type: Doesn't matter (because the Smoothing Average is 1)
- Indicator Formula: 100 * (10 * (C / C14 + C / C11) + 9 * (C1 / C15 + C1 / C12) + 8 * (C2 / C16 + C2 / C13) + 7 * (C3 / C17 + C3 / C14) + 6 * (C4 / C18 + C4 / C15) + 5 * (C5 / C19 + C5 / C16) + 4 * (C6 / C20 + C6 / C17) + 3 * (C7 / C21 + C7 / C18) + 2 * (C8 / C22 + C8 / C19) + C9 / C23 + C9 / C20) / 55 - 200
You may wish to review the following:
Plotting Custom Indicators with Examples
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|