Dashtable data conditionals

I have the follow code for the style_data_condtionals:

style_data_conditional=[{
style_data_conditional=[{
‘if’: {‘column_id’: ‘Theo’},
‘backgroundColor’: ‘#FEF9E7
},
{‘if’: {‘column_id’: ‘Key’},
‘backgroundColor’: ‘#1C2833’,
‘color’: “white”
},
{‘if’: {
‘column_id’: ‘BidPrice’,
‘filter’: ‘BidPrice > num(1.0005) * Theo’
}, ‘backgroundColor’: ‘#FDEDEC
},
{‘if’: {
‘column_id’: ‘AskPrice’,
‘filter’: ‘AskPrice < num(0.9995) * Theo’
}, ‘backgroundColor’: ‘#FDEDEC
},
{‘if’: {
‘column_id’: ‘BidPrice’,
‘filter’: ‘BidPrice > num(1.0015) * Theo’
}, ‘backgroundColor’: ‘#F1948A
},
{‘if’: {
‘column_id’: ‘AskPrice’,
‘filter’: ‘AskPrice < num(0.9985) * Theo’
}, ‘backgroundColor’: ‘#F1948A
},
{‘if’: {
‘column_id’: ‘BidPrice’,
‘filter’: ‘BidPrice > num(1.0025) * Theo’
}, ‘backgroundColor’: ‘#E74C3C
},
{‘if’: {
‘column_id’: ‘AskPrice’,
‘filter’: ‘AskPrice < num(0.9975) * Theo’
}, ‘backgroundColor’: ‘#E74C3C
},
However, I dont get any replies and the data-table doesnt show. Does it not like my filters?