Attachment 1.1.3  Read File 3 (company) of IBES data

* read company file (File 3) of IBES data ;

libname ibes '$HOME/IBES' ;
options ls=72 ps=57 obs = 1000 ;

data ibes.company ;
	infile '/u82/IBES/IBESSUM/3CID9608' ;
	input 	ticker   $ 1-6
		cusip    $ 7-14 
		ots_hmc  $ 15-20
		coname   $ 21-36
		dilution   5.3 
		pridilin $ 42
		can_pcf  $ 43
		capitnlf $ 44
		uniactin $ 45
		sigcode    46-51
		startyy    52-53
		startmm    54-55
	;
proc print ;
	title  'IBES Data' ;
	title3 'Company Identification' ;
	title5 'First 1000 Observations' ;
	var 	ticker 
		cusip   
		ots_hmc  
		coname   
		dilution   
		pridilin 
		can_pcf  
		capitnlf	 
		uniactin 
		sigcode   
		startyy    
		startmm    
	;
run ;

This page hosted by Get your own Free Home Page