I was wondering if somebody could tell me which is the equivalent of the function selectifr
from Ox
in Matlab ?
for(i = 1; i <= sizeof(vdates); i = i+1)
daily_file = selectifr([bid,ask], dates .== vdates[i]);
if empty continue
save daily_file contract_name + "_" + sprint(vdates[i]) ;
How do I translate this program into Matlab
?