PureBytes Links
Trading Reference Links
|
You need to use timeframeexpand to push the daily indicator to fill
your intraday bars
TimeFrameSet( inDaily );
ADXValueD = ADX(14);
TimeFrameRestore();
ADXValue = timeframeexpand(ADXValueD,indaily);
On 6/23/05, Dean Hodgins <deanhodgins@xxxxxxxxx> wrote:
> Seems to me that this should work ...
>
> I'm running an intraday (10 minute exploration) and wanted to include
> the daily ADX value in order to isolate stocks that are trending from a
> daily perspective.
>
> TimeFrameSet( inDaily );
> ADXValue = ADX(14);
> TimeFrameRestore();
>
> Doesn't seem to work and I end up losing the columns I set up (that
> were working) before I added the above code. I added "ADXValue > 40;"
> in the intraday portion and the exploration ran fine but without my
> columns.
>
> Any pointers regarding my errors would be very much appreciated.
>
>
> BTW - the responses to my post last week re hardware upgrades were very
> helpful and thanks for the replies. I'm putting together an Athlon 64
> 3500 system which should be pretty speedy.
>
>
> Thanks & Regards,
>
>
> Dean Hodgins
>
>
>
>
>
>
>
>
> 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
>
>
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
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/
<*> 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/
|