- Katılım
- 23 Eki 2020
- Mesajlar
- 1,826
Question: As you know, MACD is always bottoming or topping before crossing its trigger line. However, the MACD signal comes always a bit late compared to price movement. Is there any way to calculate the MACD first derivative function to identify MACD tops/bottoms, that could be use by the Explorer or the System Tester? -- Augustin Bataille,Belgium Answer: One way to do what you want would be using the 'Rate of Change' function. For example: RocPeriods:=1; ROC(MACD(),RocPeriods,$) or for the MACD histogram you would have RocPeriods:=1; ROC(MACD() - Mov(MACD(),9,E),RocPeriods,$) If that is to noisy, you could smooth it a bit with: |
|
MACD - Tops and Bottoms + Histogram RocPeriods := 1; MovAvePeriod :=1; Mov(3 * ROC(MACD(),RocPeriods,$) , MovAvePeriod,E); {the 3 just 'magnifies' the line on the plot but doesn't affect the calculation} Mov(3 * ROC(MACD() - Mov(MACD(),9,E),RocPeriods,$) , MovAvePeriod,E) |
Another way to do what you want would be to look for peaks and troughs using the 'Peak' and 'Trough' functions. I'm working on code to identify divergences using this method. -- Dr. Robert Jackson robert.jackson@utoronto.ca | |
| |
Source / From: |