Hi,
I am trying to write an EFS for the following I found on the net:
1. Elliot Wave oscillator (EWO)
Parameters: hasn't parameter.
Calculation:
EWO (i) = MVA((high + low) / 2, 5) - MVA((high + low) / 2, 35).
2. Elliot Wave trend (EWTREND)
Parameters: N - number of periods, TR - trigger.
Calculation:
EWTREND (i) = f (last(i), high(i), low(i), TR),
where f is logical expression,
high(i) = max (last(j)), low(i) = min (last(j)), j = [i - N, i],
last(j ) = MVA((high + low) / 2, 5) - MVA((high + low) / 2, 35).
3. Elliot Wave number (EWN)
Parame ters: N - number of periods, TR - trigger.
Calculation: EWN (i) = f (last(i), high(i), low(i), TR),
where f is logical expression,
high(i) = max (last(j)), low(i) = min (last(j)), j = [i - N, i],
last(j) = MVA((high + low) / 2, 5) - MVA((high + low) / 2, 35).
I can understand what number 1 is trying to do but not 2 or 3. I think the EWN is suppose to be 1 to 5 measuring where in the Elliot cycle we are. Can anyone please help?
Walid
I am trying to write an EFS for the following I found on the net:
1. Elliot Wave oscillator (EWO)
Parameters: hasn't parameter.
Calculation:
EWO (i) = MVA((high + low) / 2, 5) - MVA((high + low) / 2, 35).
2. Elliot Wave trend (EWTREND)
Parameters: N - number of periods, TR - trigger.
Calculation:
EWTREND (i) = f (last(i), high(i), low(i), TR),
where f is logical expression,
high(i) = max (last(j)), low(i) = min (last(j)), j = [i - N, i],
last(j ) = MVA((high + low) / 2, 5) - MVA((high + low) / 2, 35).
3. Elliot Wave number (EWN)
Parame ters: N - number of periods, TR - trigger.
Calculation: EWN (i) = f (last(i), high(i), low(i), TR),
where f is logical expression,
high(i) = max (last(j)), low(i) = min (last(j)), j = [i - N, i],
last(j) = MVA((high + low) / 2, 5) - MVA((high + low) / 2, 35).
I can understand what number 1 is trying to do but not 2 or 3. I think the EWN is suppose to be 1 to 5 measuring where in the Elliot cycle we are. Can anyone please help?
Walid
Comment