PureBytes Links
Trading Reference Links
|
Ever since I upgraded to 4.93 my GetExtraData calls are acting
strangely. I have attached code below to show what I am doing.
Since upgrade when I start the Exploration it starts alright, but
partway into the run I get the following error message
QRSRank=GetExtraData("qrs");
ROE=GetExtraData("ROE");
EPS=GetFnData("EPS");
Y1EPSG=GetExtraData("
--------------------^
Error 23.
GetExtraData() call failed-
For the portion of the Explore that completed the information is
there, so I assume that I am collecting the date from Quotes Plus OK.
Can someone give me an idea of what has changed in 4.93 that might
cause this problem? And how can I fix it?
Don Lindberg
-------------------------------------------------------------------
Code Follows:
--------------------------------------------------------------------
EPSRank=GetExtraData("epsrank");
QRSRank=GetExtraData("qrs");
ROE=GetExtraData("ROE");
EPS=GetFnData("EPS");
Y1EPSG=GetExtraData("Yr1EPSGrowth");
Y5EPSG=GetExtraData("Yr5EPSGrowth");
Sales=GetExtraData("Sales");
InstHold=GetExtraData("InstHolds");
Tgt=GetFnData("OneYearTargetPrice");
PM=GetFnData("ProfitMargin");
AddColumn(Close,"Close",1.2,IIf( Close>=15, (colorGreen ),
(colorOrange )));
AddTextColumn( FullName(), "Company
Name",1.0,colorBlack,colorYellow,170 );
AddColumn( ROC( Close, 10 ), "ROC(10)" );
AddColumn (EPSRank,"EPS Rank",1.2,IIf( EPSRank >= 85, (colorGreen ),
(colorOrange )));
AddColumn (QRSRank,"QRS Rank",1.2,IIf( QRSRank >= 85, (colorGreen ),
(colorOrange )));
AddColumn (RSI(10) ," RSI",1.2,IIf( RSI(10) >= 75, (colorGreen ),
(colorOrange )));
AddColumn (EPS," EPS",1.2,IIf( EPS >= 1, (colorGreen ),
(colorOrange )));
AddColumn (ROE," ROE",1.2,IIf( ROE >= 10, (colorGreen ),
(colorOrange )));
AddColumn (PM,"Profit Margin",1.2,IIf( PM >= 15, (colorGreen ),
(colorOrange )));
Buy=1;
Sell=1;
Filter=C>0;
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 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/
|