I have a strategy script running, generating strategy.entry/exits. The entry looks roughly like this:
Code: Select all
strategy.entry(id = 'buy',
long = strategy.long,
when = buy and candleTimeWithinBacktestRange,
alert_message = "{'message_type': 'bot', 'bot_id': <my id>, 'email_token': '<my token>', 'delay_seconds': 0}")
The alerts show in the Alerts log with no message, and nothing is being triggered on 3commas.
I tried the same with a strategy comment and the result was the same.
Any ideas what I've done wrong?