Replies: 1 comment
-
enableSearch = false means no index. Just remove or make it true, then check. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to add a primary key with multiple columns to store options trade data so only unique 5 minute bars are added. The only way I've found to do it is to define the primary key with a keypath like below. I need to search using a query as shown below, where I want to get bars after a certain time. This all works fine except I'm wondering if this is the best way to do it as the data for the symbol, barTime, strike, expDate, and side seems to be duplicated in the primary key as shown in the image. Is there any way to do what I need to do and avoid the data duplication?
Beta Was this translation helpful? Give feedback.
All reactions