PureBytes Links
Trading Reference Links
|
Hi,
I'm trying to build two indicators which calculate the 30 period MA
of the (1)ATR of the first 2 hours of the trading day and the (2)ATR
of the rest of the day.
I would like to have a 30 period moving average of the atr od the
first two hours of the trading day, and then a 30 period moving
average of the rest of the day.
Can I do this without loops?
I was thinking in using something like :
Firsttwo=IIF(hour()<10, atr(1),null);
Restofday=IIF(hour()>=10,atr(1),null);
atrmovaverageF=ma(firsttwoh,30);
atrmovaveragerR=ma(restofday,30);
But I assume the null values will influence the MA calculation.. so
I won't have the correct moiving average.
Any help on how I can get the correct figures?
thanks.
------------------------------------
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/
|