| PureBytes Links Trading Reference Links | You could choose the foreign data by examining the market a stock
belongs to. In this case, you do not need the IIF function, a simple
IF statement will work, since the market does not change on different
bars.
marketName = MarketID(1);
if (marketName == "Nasdaq")
  indexTicker = "!NDX";  // adjust for your database
else
  indexTicker = "!SPX";  // adjust for your database
index = Foreign(indexTicker, "C");
Hope that helps,
Steve
--- In amibroker@xxxxxxxxxxxxxxx, "Robert" <disqplay0@xxx> wrote:
>
> Here is a question I would like to querry the group with:
> 
> Is there a way using and IIF statement that would allow for the 
> choosing of the proper foreign data for the stock in question?
> 
> an example
> 
> BEAS is a Nasdaq component stock but during the exploration if the 
> foreign data is not known, Dow Nas or Amex can a statement be written 
> that would allow for the proper selection of the foreign data 
> component automatically when looking to compare the stock against?
> 
> Disq
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
 |