Contribute data to Reuters data feed
contrib(c,s,fid,fval)
contrib(c,s,fid,fval)
contributes data to a Reuters® data feed. c
is the Reuters session object, and s
is the RIC. Supply the field IDs
or names, fid
, and field values, fval
.
Contribute data to the Reuters datafeed for the Reuters session object c
and the RIC
'myric'
. Provide a last trade price of 33.5.
contrib(c,'myric','trdprc_1',33.5)
Contribute an additional bid price of 33.8:
contrib(c,'myric',{'trdprc_1','bid'},{33.5,33.8})
Submit value 33.5 for field 6 ('trdprc_1'
):
contrib(c,'myric',6,33.5)
Add the value 33.8 to field 22 ('bid'
):
contrib(c,'myric',{6,22},{33.5,33.8})