PureBytes Links
Trading Reference Links
|
Hi,
Try this :
LONG = 0 > CCI(20) > -100 AND 0 > CCI(6) > -300 AND CCI(6) > Ref(CCI
(6),-1) AND CCI(6) < 0.8 * CCI(20) AND C > 20 AND V > 100000;
iShort = 0 < CCI(20) < 100 AND 0 < CCI(6) < 300 AND CCI(6) < Ref(CCI
(6),-1) AND CCI(6) > 1.2 * CCI(20) AND C > 20 AND V > 100000;
Hopefully it is work.
Regards,
--- In amibroker@xxxxxxxxxxxxxxx, "niklravi" <ravinikil@xxx> wrote:
>
> dear frieds
> following is the meta formula , new to ami how can i convert
this
> in to ami afl any one can help me? as i understood scanning thorugh
> ami is much easier than metastock
> CCI(20)
> colA__
> LONG
> 0 > CCI(20) > -100 AND 0 > CCI(6) > -300 AND CCI(6) > Ref(CCI(6),-
> 1) AND CCI(6) < 0.8 * CCI(20) AND C > 20 AND V > 100000
> short
> 0 < CCI(20) < 100 AND 0 < CCI(6) < 300 AND CCI(6) < Ref(CCI(6),-
1)
> AND CCI(6) > 1.2 * CCI(20) AND C > 20 AND V > 100000
>
> Col d
> C / Ref(C,-1)
> V
> V / Mov(V,10,S)
> FILTER
> colA OR colB
>
> WITH REGARDS
> RAVI
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|