try this, you need to define the indicators iwthin the daily timeframe, then expand out to the 1 minute base period

timeframeset(indaily);
MAd = EMA(C,20);
Cd = C;
timeframerestore();
MAd1 = timeframeexpand(MAd,indaily);
Cd1 = timeframeexpand(Cd,indaily);

short = Cd1>MAd1 and ref(C,-1)<MAd1;


--
Cheers
Graham
AB-Write >< Professional AFL Writing Service
Yes, I write AFL code to your requirements
http://e-wire.net.au/~eb_kavan/ab_write.htm

On 18/09/06, Jerry Laster <[EMAIL PROTECTED]> wrote:
Hi,
For backtesting I am trying to enter trades intraday generated by data
in the daily time frame (for instance, when the 1 minute bar crosses
the 20 EMA).
I've tried using TimeFrameCompress and call the modified 20 EMA in the
1 minute timeframe for instance:
dC = TimeFrameCompress(C, inDaily );
TimeFrameSet(in1Minute);
Short = Ref( dC, -1 )> MA(dC, 20) and Ref(C, -1) < MA(dC, 20);

Should go short when yesterday's close was higher than the daily 20
MA, and the close of 1 minute ago was lower than the daily 20 MA, but
it does not seem to work.

Is there any other way?
Thanks,
Jerry







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 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:[EMAIL PROTECTED]
    mailto: [EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/






__._,_.___

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 other support material please check also:
http://www.amibroker.com/support.html






SPONSORED LINKS
Software support Small business finance Business finance online
Business finance training Business finance course

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

Reply via email to