Registered User Joined: 3/31/2011 Posts: 68
|
I placed the Bollinger Bands on the MACD.
Bollinger Bands: 10 period. 1.00 Std Dev.
MACD: 12-26-9
How can I create PCF % True indicators for the following?
1. MACD line is above the top Bollinger Bands.
2. MACD line is below the bottom Bollinger Bands.
I would like to get help. Thank you.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following if it is an exponential MACD 12,26.
Above:
MACD12.26 > AVG(MACD12.26, 10) + SQR(ABS(SUM((MACD12.26) ^ 2, 10) - 10 * AVG(MACD12.26, 10) ^ 2) / 10)
Below:
MACD12.26 < AVG(MACD12.26, 10) - SQR(ABS(SUM((MACD12.26) ^ 2, 10) - 10 * AVG(MACD12.26, 10) ^ 2) / 10)
Or the following if it is an exponential MACD Histogram 12,26,9.
Above:
MACD12.26 - XAVG(MACD12.26, 9) > AVG(MACD12.26 - XAVG(MACD12.26, 9), 10) + SQR(ABS(SUM((MACD12.26 - XAVG(MACD12.26, 9)) ^ 2, 10) - 10 * AVG(MACD12.26 - XAVG(MACD12.26, 9), 10) ^ 2) / 10)
Below:
MACD12.26 - XAVG(MACD12.26, 9) < AVG(MACD12.26 - XAVG(MACD12.26, 9), 10) - SQR(ABS(SUM((MACD12.26 - XAVG(MACD12.26, 9)) ^ 2, 10) - 10 * AVG(MACD12.26 - XAVG(MACD12.26, 9), 10) ^ 2) / 10)
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 3/31/2011 Posts: 68
|
Bruce:
Thank you very much. It works perfect !
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|