PureBytes Links
Trading Reference Links
|
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 -----
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 <ajf1111@xxxxxnet>
wrote:
From:
Anthony Faragasso <ajf1111@xxxxxnet> Subject:
Re: [amibroker] I REALLY NEED HELP To: amibroker@xxxxxxxxxps.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 -----
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?
|
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|
|