PureBytes Links
Trading Reference Links
|
Hello,
Can anyone suggest a way to reference this code in an exploration
using the addcolumn function? I'd like to be able
to reference the sector and industry data to see the advances,
declines and unchanged values for export from exploration to excel.
thanks
Anthony
Buy = 0; // required for scan
YestClose = Ref( Close, -1 );
Advanced = Close > YestClose;
Declined = Close < YestClose;
Unchanged = Close == YestClose;
Industry = GetBaseIndex();
Sector = StrLeft( Industry, 4 ) + "0";
Market = MarketID( 1 );
AddToComposite( Advanced, "~I " + Industry + " U" + " Adv", "H" );
AddToComposite( Declined, "~I " + Industry + " U" + " Dec", "L" );
AddToComposite( Unchanged, "~I " + Industry + " U" + " Unc", "O" );
AddToComposite( Advanced, "~S " + Sector + " U" + " Adv", "H" );
AddToComposite( Declined, "~S " + Sector + " U" + " Dec", "L" );
AddToComposite( Unchanged, "~S " + Sector + " U" + " Unc", "O" );
AddToComposite( Advanced, "~M " + Market + " U" + " Adv", "H" );
AddToComposite( Declined, "~M " + Market + " U" + " Dec", "L" );
AddToComposite( Unchanged, "~M " + Market + " U" + " Unc", "O" );
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|