PureBytes Links
Trading Reference Links
|
Hi,
I'm very interested in having the following indicators from the fxcm
trading platform coded for amibroker. I had a search but I didn't
find them in the library. A search on google reveals
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).
Returns -1, 0, +1
3. Elliot Wave number (EWN)
Parameters: 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).
Returns 1,2,3,4,5 (only 3,4,5 seen)
1. I could probably do myself but with 2 & 3 I don't know what the
function f is unless an elliot wave expert can fill that in!
Many thanks
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|