I am using Kinetick End of Day (Free) data.
I get the following error:
Unable to start market data for instrument 'CSC'. Provider does not support market data.
The bars do not show, even though the condition is met.
Here is my code. Any help is appreciated.
protectedoverridevoid OnBarUpdate()
{
// Condition set 1
if (CrossBelow(MA, Close, 1))
{
BackColorAll = Color.Green;
PrintWithTimeStamp("Below");
}
// Condition set 2
if (CrossAbove(MA, Close, 1))
{
BackColorAll = Color.Red;
}
}
Thank you.

Comment