PureBytes Links
Trading Reference Links
|
Geoff
mov(c,13,e) becomes ema(c,13) in Ami's AFL. and
roc( xx, 21 ,% ) becomes roc( xx, 21) . Note that Amibroker's default ROC
is % and the $ is simply the change is price between one day and the next
etc. ROC(C,13,$) become C - ref(C,-13).
Now the whole thing becomes: in the above exampe xx is EMA(C,13)
and it follows that
ROC( EMA(C,13) , 21 )
is the conversion in AFL as I understand it.
Steve
At 11:31 PM 6/10/01 +0000, you wrote:
Steve,
Can you assist with a conversion of SIROC from guppytraders pls
?
SIROC indicator from Elder
ROC(Mov(C,13,E),21,%)
Thanks,
Geoff
|