You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Is there a Metatrader 4 version? If not, do you plan to make one? If so, how do I get the mq4 file?
grayghost
Of what?
grayghost Of what?
Of the indicator shown in the picture, a moving-average-type line that changes colors. How can I put that line on my price chart? I would llike to see if it is useful as a confirmation indicator for my method, which utilizes a trending wave, a S/R breakout, a momentum indication, and a new cycle. I would check the indicator for agreement. I want an mq4 file that puts that line, showing enrties and exits, on my MT4 chart.
Of the indicator shown in the picture, a moving-average-type line that changes colors. How can I put that line on my price chart? I would llike to see if it is useful as a confirmation indicator for my method, which utilizes a trending wave, a S/R breakout, a momentum indication, and a new cycle. I would check the indicator for agreement. I want an mq4 file that puts that line, showing enrties and exits, on my MT4 chart.
As far as I see that is this one : ehlersfilters.pdf
If I remember correctly it does exist for metatrader but right now I can not find it
As far as I see that is this one : ehlersfilters.pdf If I remember correctly it does exist for metatrader but right now I can not find it
Mladen, reading the article, I saw that a Kaufman filter, adapting itself to lag more in a noisy market, might satisfy my purpose of riding over inconsequential fluctuations to avoid whipsawing but still responding to big moves. I tried your Kaufman AMA pre filtered 2, and it works much better than, say, a SMA. I'll just use that. Thank you.
Mladen, reading the article, I saw that a Kaufman filter, adapting itself to lag more in a noisy market, might satisfy my purpose of riding over inconsequential fluctuations to avoid whipsawing but still responding to big moves. I tried your Kaufman AMA pre filtered 2, and it works much better than, say, a SMA. I'll just use that. Thank you.
grayghost
Good. Happy trading
Mladen, reading the article, I saw that a Kaufman filter, adapting itself to lag more in a noisy market, might satisfy my purpose of riding over inconsequential fluctuations to avoid whipsawing but still responding to big moves. I tried your Kaufman AMA pre filtered 2, and it works much better than, say, a SMA. I'll just use that. Thank you.
Perry Kaufman sure made some good stuff
Re: All John Ehlers Indicators...
I have finally decided create a membership.
I have done a re-write of the Adaptive CyberCycle indicator with a twist, "Close Location Value".
Everything is in one file, does not require the separate CyclePeriod indicator.
adpvcybercycle.mq4Could anybody tell me how to get the values out of the indi, please?
I have, of course using iCustom, as below
{
greenAdpvCC = iCustom(Symbol(), PeriodIndi, AdpvCC, 0, 0);
redAdpvCC = iCustom(Symbol(), PeriodIndi, AdpvCC, 1, 0);
}but i get 2 very large doubles, always the same number, which indicates that the iCustom call is not properly working.
Could anybody tell me how to get the values out of the indi, please?
I have, of course using iCustom, as below
{
greenAdpvCC = iCustom(Symbol(), PeriodIndi, AdpvCC, 0, 0);
redAdpvCC = iCustom(Symbol(), PeriodIndi, AdpvCC, 1, 0);
}fabio.geraci
You are calling the iCustom() with wrong parameter
Parameters for iCustom() must be the following :
As soon as the parameters are OK the return values should be OK too
fabio.geraci
You are calling the iCustom() with wrong parameter
Parameters for iCustom() must be the following :
As soon as the parameters are OK the return values should be OK too
Thanks for replying, i have defined I believe all the correct params, as follow
string AdpvCC = "AdpvCyberCycle";
extern int PeriodIndi = 60;
what is wrong with that definition?
Thanks for replying, i have defined I believe all the correct params, as follow
string AdpvCC = "AdpvCyberCycle";
extern int PeriodIndi = 60;
what is wrong with that definition?Which exact indicator (the "AdpvCyberCycle") are you trying to use?
Can you attach it here for testing of iCustom() call?