Filter=1; /////DAILY///////////////////
AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Daily%");//% change Daily /////WEEKLY///////////////// TimeFrameSet(inWeekly); AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Weekly%");//% change Weekly TimeFrameRestore(); /////MONTHLY//////////////// TimeFrameSet(inMonthly); AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Monthly%");//% change Monthly TimeFrameRestore(); /////YEARLY///////////////// TimeFrameSet(inYearly); AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Yearly%");//% change Yearly TimeFrameRestore(); ----- Original Message ----- From: Rasheed Momoh To: [email protected] Sent: Monday, January 04, 2010 3:48 AM Subject: Re: [amibroker] I REALLY NEED HELP thanks we are almost there. What about the %change? --- On Sun, 1/3/10, Anthony Faragasso <[email protected]> wrote: From: Anthony Faragasso <[email protected]> Subject: Re: [amibroker] I REALLY NEED HELP To: [email protected] Date: Sunday, January 3, 2010, 6:57 PM Filter=1; /////DAILY// ///////// //////// AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Daily"); /////WEEKLY/ ///////// /////// TimeFrameSet(inWeekly); AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Weekly"); TimeFrameRestore(); /////MONTHLY/ ///////// ////// TimeFrameSet(inMonthly); AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Monthly"); TimeFrameRestore(); /////YEARLY/ ///////// /////// TimeFrameSet(inYearly); AddColumn(Ref(C,-1),"Previous"); AddColumn(C,"Price"); AddColumn(ROC(C,1),"Yearly"); TimeFrameRestore(); ----- Original Message ----- From: Rasheed Momoh To: amibro...@yahoogrou ps.com Sent: Sunday, January 03, 2010 9:46 PM Subject: Re: [amibroker] I REALLY NEED HELP [1 Attachment] Yeah thanks this looks interesting. please find attached what i need (running a scan from Quick market review TAB) --- On Sun, 1/3/10, Anthony Faragasso <ajf1...@epix. net> wrote: From: Anthony Faragasso <ajf1...@epix. net> Subject: Re: [amibroker] I REALLY NEED HELP To: amibro...@yahoogrou ps.com Date: Sunday, January 3, 2010, 6:38 PM HI, Run this in AA window, all symbols n last quotations n=1 Explore you can then export the info //Quick review Filter=1; AddColumn(ROC(C,1),"Daily"); TimeFrameSet(inWeekly); AddColumn(ROC(C,1),"Weekly"); TimeFrameRestore(); TimeFrameSet(inMonthly); AddColumn(ROC(C,1),"Monthly"); TimeFrameRestore(); TimeFrameSet(inYearly); AddColumn(ROC(C,1),"Yearly"); TimeFrameRestore(); ----- Original Message ----- From: Rasheed M To: amibro...@yahoogrou ps.com Sent: Sunday, January 03, 2010 9:04 PM Subject: [amibroker] I REALLY NEED HELP This is the 3rd time within 6 months i have posted this message and no one seem to help me out. PLLLLLEEEASSEEE. Clicking on "quick market review tab" on weekly,monthly, quarterly & yearly review type. I click to view the different % returns. My problem is I cant export the file. PLLLEASEEE is there a code i can use to extract this info to csv/ html format?
