PureBytes Links
Trading Reference Links
|
>From the help file:
+ OLE properties can be retrieved (DISPATCH_PROPERTYGET) directly from AFL
now using parameterless function syntax. This allows reading values exposed
by OLE automation directly from AFL code. Example:
AB = CreateObject("Broker.Application");
Stocks = AB.Stocks(); // get collection
Stock = Stocks.Item( Name() ); // currently selected
"FullName : " + Stock.FullName();
"Alias : " + Stock.Alias();
"Address : " + Stock.Address();
"Shares: " + Stock.Issue();
"Book value: " + Stock.BookValue();
"Market : " + Stock.MarketID();
"WebID : " + Stock.WebID();
You can check if OLE object is valid by calling IsNull() function, example:
AB = CreateObject("Broker.Application");
Stocks = AB.Stocks(); // get collection
Stock = Stocks.Item( "INTC" );
if( IsNull( Stock ) )
{
printf("COM object invalid (Null) - symbol does not exist\n");
}
else
{
printf("COM object valid - you can access its methods\n");
}
----- Original Message -----
From: "mrmurty" <mrmurty@xxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, February 22, 2006 7:56 PM
Subject: [amibroker] How to display "ALIAS" in ewxploration
> Hi
>
> I want to display alias in my exploration, columns.
> I tried as follows:
>
> AddTextColumn(name(),"alias",1);
>
> but it is showing ticker only.
>
> Can any one tellme ?
>
> rgds
> murty
>
>
>
>
>
>
>
> 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 --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/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/
|