The task was to implement the display of the line from the previous day, if the price did not touch it, hide _ delete the line if touched
I ask for help with the logics and correct syntax.
The code
// example condition doji bar & day is not today
If (Close [0] == Open [0] && Time [0] .Day! = DateTime.Now.Day)
{
// Draw.Ray.
}

Comment