PureBytes Links
Trading Reference Links
|
Dan, Thanks - just what I wanted. I will save your information for
reference and hopefully this will help with the programming "puzzle".
Rick
--- In amibroker@xxxxxxxxxxxxxxx, "Dan Clark" <dan_public@xxxx> wrote:
> Rick,
>
>
>
> The InWatchList function returns 1 or 0. You can use that value
to convert
> to something else or as criteria in other functions. This code
displays the
> displays the direct result of InWatchList and shows how it's used in
> functions:
>
>
>
> InWatchlistThree = InWatchList(3);
> if(InWatchlistThree == 1)
> WatchlistThreeTrue= "Y";
> else
> WatchlistThreeTrue= "F";
>
>
>
> AddColumn(InWatchlistThree ,"InWatchlistThree" , format =
1.0 );
> AddTextColumn
(WatchlistThreeTrue ,"WatchlistThreeTrue" );
>
>
>
> Note that "InWatchlistThree" and "WatchlistThreeTrue" are just local
> variables.
>
>
>
> Regards,
>
>
>
> Dan.
>
> _____
>
> From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx]
On Behalf
> Of Rick
> Sent: Wednesday, August 03, 2005 6:25 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] help with automatic analysis
>
>
>
> I would like to use AddColumn in an exploration to indicate if the
> symbols passing the filter belong to my Watch List 3. I have tried
to
> use the InWatchList function but am lost when it comes to
structuring
> the statement.
>
> Thanks in advance for any help,
> Rick
>
>
>
>
> 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
>
>
>
> * Visit your group "amibroker
> <http://groups.yahoo.com/group/amibroker> " on the web.
>
> * To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
> <mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo!
> <http://docs.yahoo.com/info/terms/> Terms of Service.
>
>
>
> _____
------------------------ Yahoo! Groups Sponsor --------------------~-->
<font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12ha0icmi/M=362343.6886682.7839641.1493532/D=groups/S=1705632198:TM/Y=YAHOO/EXP=1123087107/A=2894352/R=0/SIG=11fdoufgv/*http://www.globalgiving.com/cb/cidi/tsun.html">Help tsunami villages rebuild at GlobalGiving. The real work starts now</a>.</font>
--------------------------------------------------------------------~->
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/
|