PureBytes Links
Trading Reference Links
|
Hi imresident2001,
Sunday, November 20, 2005, 12:52:32 AM, you wrote:
i> Thanks kris and kavman. the codes works great. I'll push my luck and
i> ask one last question. If i wanted to add volume change for eg: if i
i> want to add volume increase of 500% and add column for volume
i> change% how would u change this. thanks
Here's a basic exploration that I find quite useful to get a quick
look at what is going on. Feel free to modify of course. You can
get the idea for what you want above from what is down below, I
think. For my money (currently up 48 percent YTD) ^_^ (well, yes, the
broad market is suddenly up about 26 percent YTD here, too, so it
isn't like I haven't had a tail wind) daily volume changes, while
they might be significant, are less reliable than volume changes that
stand out against a longer MA.
Yuki
// A simple exploration to get quick essential data.
if (GetDatabaseName() == "eSignal")
x = 157;
else
x = 70;
SetOption("NoDefaultColumns", True);
Filter=Close > 0 AND Name() != "^IXJ" AND Name() != "@NIKO.1" AND
Name() != "^225" AND StrLeft(Name(),1) != "~";
AddTextColumn(Name(), "Symbol" ,format=1.0, -1, -1, width = 70);
AddTextColumn(Date(), "Date" ,format=1.0, -1, -1, width = x);
AddTextColumn(FullName(), "Full Name" ,format=1.0, -1, -1, width = 290);
AddColumn (V, "Volume", format = 1.0, -1, -1, width = 82);
AddColumn((V / MA(V,50)) * 100, "50 day MA %", 1.0);
AddColumn(C,"Last Price ",format = 1.0);
AddColumn((C / Ref(C,-1) -1) * 100,"Pct. Px. Chg.", format = 1.2);
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|