Why can't insert datetime64 value into table

Hi, Masters:
  I’m programming python code with qpython, numpy to insert the following data into quote table whith TickerPlant.

    data package:

        [QList([‘2018-06-01T11:43:40.449050’], dtype=‘datetime64[us]’), QList([b’abc’], dtype=‘|S9’), QList([18.03], dtype=float32), QList([3600]), QList([18.05], dtype=float32), QList([200])]

    quote table:

        quote:(QuoteTime:timestamp$();RIC:symbol$();BidPrice:real$();BidSize:int$();AskPrice:real$();AskSize:int$())

   I’m sure it was caused by the QuoteTime column doesn’t match the data each other, but I can’t tell why there’s error. And I used to simulate timestamp data with .z.p as the data for QuoteTime column in feedsim.q data, also failed with 'type error message at rdb side.

  

   Could anyone give any advice? Thanks so much!

Regards

Zheng

I had fixed the problem from Python to Kdb+, even there’s a format question.
But still can’t pass data from feedsim.q to Kdb+.