Try assigning value to a variable. Then do addcolumn or plot on the
variable.
SS= GetExtraData("SharesShort");
AddColumn(SS,"Shares Short",1.0);
I do this with all the QP extra data, and it works fine.
Donald F Lindberg
_____
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf
Of murthysuresh
Sent: Sunday, August 26, 2007 8:40 AM
To: [email protected]
Subject: [amibroker] not able to get fundamental data
Hello
I am using Qp2 and running explores.
Filter=Close>10 AND V>300000;
AddColumn(GetExtraData("SharesShort"),"Sshares short");
I get 0 for the column sshares short. Not sure what mistake i am making.
I also tried to plot it
Plot( GetExtraData("SharesShort"), "Shares Short" , ParamColor
( "Color", colorCycle ), ParamStyle("Style"));
Still getting no value.
I am using qp2 databsae as my datasource.