If you know the sampling rate of your DAQ equipment, you can create an estimate of the sample times. You do not know the start time of the 433 sample group (although you may know the time your trigger the DAQ). What you know is the time you receive it from the DAQ. The time between samples = 1/sample rate = Ts.
The time you receive data array from DAQ = Tlast.
Number of samples = N.
Then the time of sample i, ti, is
ti = Tlast - (N-1-i)*Ts
If you know the trigger time and the latency between triggering and the first sample is small, use
ti = Ttrigger + i*Ts
Lynn