Sorry, I meant there is no output in
that column – I have the Filter statement, and there is output in
every other column of my exploration. This is just a snippet of a larger AFL
script.
Thanks,
Ed
From:
amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of Ara
Kaloustian
Sent: Sunday, December 09, 2007 12:06 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] AdvIssues + DecIssues not working?
Youneed this statement BEFORE AddColumn:
----- Original Message -----
Sent:
Sunday, December 09, 2007 9:47 AM
Subject:
[amibroker] AdvIssues + DecIssues not working?
Hello all,
I am trying to calculate the STIX indicator in an
exploration using the following code:
Period = 21;
Out_STIX =
EMA(100 * AdvIssues()/( AdvIssues() + DecIssues() ), Period);
AddColumn(Out_STIX,
“STIX”);
AmiBroker says this is okay, but this isn’t
generating any output, at all, regardless of which or how many stock symbols I
run the exploration over. Can anyone tell me what is wrong?
Thanks,
Ed