https://learninghub.kx.com/forums/topic/fundamentals-capstone-3-3
I'm getting an mismatched type error for the following. I'll share the screenshot of the source code.
show badTrades: select from classifyTrades where exQuality = 0b
https://learninghub.kx.com/forums/topic/fundamentals-capstone-3-3
I'm getting an mismatched type error for the following. I'll share the screenshot of the source code.
show badTrades: select from classifyTrades where exQuality = 0b
Hi @kal8na
I believe the problem is within your badTrades variable you do not provide the classifyTrades function with a parameter.
To fix this, simply pass in the tradeContext table into the function:
badTrades: select from classifyTrades[tradeContext] where exQuality = 0b;
Let me know if this works!
Thanks,
Megan
thank you very much. Just a small error cause a big problem?