PureBytes Links
Trading Reference Links
|
In an exploration you can create one column for barcounts and use
AddSummaryRows() to show you the min and max.
You can also look form the min and max as each ticker passes and save
the result to a staticvar that you can read from anywhere.
herman
levibreidenbach wrote:
> I am trying to determine the # of bars each symbol has. Say I have a watch list with 5 symbols (A,B,C,D, and E) If each symbol has the following number of bars (12, 45, 66, 48, 223), how do I get the number 12 (the least) into a variable. I have tried the following:
>
> Listnum = 64;
> List = GetCategorySymbols( categoryWatchlist, Listnum );
>
> x = 10^6;
>
> for ( i = 0; (sym = StrExtract( List, i ) ) != ""; i++ )
> {
>
> SetForeign( sym);
> y = BarCount;
> x = IIF( y < x, y, x );
> RestorePriceArrays();
>
> }
>
> AddColumn( x, "Min Number Bars", 1.0 );
>
> Whenever I run exploration it gives barcount for current symbol, not the smallest barcount of symbols in watchlist.
>
> Thanks
>
> Levi
>
>
>
>
>
> ------------------------------------
>
> **** 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
>
>
>
>
>
>
------------------------------------
**** 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:
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/
|