I am getting stream feeds using this query
SELECT
post_id, source_id, actor_id, target_id, message, attachment,
permalink, type , created_time,timeline_visibility,updated_time
FROM
stream
WHERE
filter_key IN (SELECT filter_key FROM stream_filter WHERE uid=me())
and (updated_time < 1363762637 AND updated_time > 1364540237)
This query returns result accurately when updated_time exists within current month, Problem is that when i give the updated_time older than a 30 days no record is returned.