Re: [amibroker] Digest Number 4928

2006-05-03 Thread Raman Kumar
Dear YukiI still don't get it.How to add a column to the analysis output was the first hurdle, because i want to sort the output of percentage change.when i run this formulapchng = ((C - Ref(C,-1)) / Ref(C,-1)) * 100; in the scan it says that " missing buy and sell variables"Would you please hel

Re: [amibroker] Digest Number 4928

2006-05-03 Thread Graham
to scan you need the buy, sell, short or cover to be defined If you are wanting to find values of items then you use explore and you then need to define the Filter and use addcolumn to produce results -- Cheers Graham AB-Write >< Professional AFL Writing Service Yes, I write AFL code to your r

Re: Re: [amibroker] Digest Number 4928

2006-05-03 Thread Prashanth K
Hello Doc, I havent checked the whole thread, but reading your query, I think what you require is a Addcolumn syntax. Add the following to the formula and you should be able to Explore the Same Filter = 1; AddColumn(pchng,"Percent Change"); Cheers Prashanth On Wed, 03 May 2006 Raman Ku

Re: Re: [amibroker] Digest Number 4928

2006-05-03 Thread mohany1
In order run the scan , you need to add buy & sell conditions   Buy = pchng > 10; Sell = pchng < -10;   or you can hit explore button with filter varaible add to the above statements   Filter = Buy or Sell;   -- Original message -- From: "Prashanth K" <[EMAIL PROTECTED]>