PureBytes Links
Trading Reference Links
|
Did you look at the ExRem command:
buy = ExRem( buy, sell );
sell = ExRem( sell, buy );
which helps ignore multiple signals.
You might also look at the Flip command.
--- In amibroker@xxxxxxxxxxxxxxx, "ics4mer" <ics4mer@xxx> wrote:
>
> Hi,
>
> Looking for some help with following situation.
>
> Say we have 3 moving averages:
>
> MA_Short = MA(C,20)
> MA_Med = MA(C,100)
> MA_long = MA(C,200);
>
> My signals are the following
>
> Buy = MA_Med > MA_Long AND Cross(MA_Short, MA_Med);
> Sell = Cross(MA_Med, MA_Short);
>
> However, I only want to trade the first occurence of cross(MA_short,MA_Med).
>
> I don't want to take another long trade until MA_Med has dipped below MA_Long and risen above MA_Long again and the Cross(short, med) situation occurs again.
>
> I suspect it has something to do with the flip() function but I can't quite sus it out!
>
> I've nearly worked it out with a loop, but I'm sure that it's not the correct way to use AFL.
>
> Any help greatly appreciated!
>
> TIA
>
> Robert
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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:
amibroker-digest@xxxxxxxxxxxxxxx
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/
|