PureBytes Links
Trading Reference Links
|
Just compute your indicators in code. They will be recomputed on the fly
and available each day. For example:
Vol60 = MA(V,60); //creates array of 60 day volume for every day of data.
To use yesterday's value today:
VolYesterday = ref(Vol60,-1);
Hope that's what you wanted.
Terry
mikelaurataylor wrote:
>Hi:
>
>I'd like to run a scan each evening to find which stocks meet
>certain criteria and add them to a watchlist. I've seen the
>categoryaddsymbol can do this for me.
>
>I'd also like to calculate 5 to 10 numbers from historical EOD data
>for each symbol. As a simplified example, 60 day average volume,
>90 day average volume, etc. I'd then like to store these EOD
>calcualtions to use the next day as part of a daily real-time minute
>by minute scan of the watchlist that got created.
>
>What is the best way to store some extra data from an EOD scan for
>use during the next trading day? I was originally thinking of
>writing a small text file for each stock that met the critiera and
>seperating the fields with a delimiter - but then I noticed the
>addtocomposite function and thought I might be able to use this.
>
>Any suggestions?
>
>Thanks -
>
>Mike
>
>
>
>
>
>
>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
>
>
>
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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/
|