Anyone else experiencing this?
if(Low[1]==Support[1] && Close[1]>Low[1])
{
longcount++;
DrawDot(longcount.ToString(),0,Support[1],Color.Purple);
BackColorAll = Color.PaleGreen;
}
if(High[1]==Resistance[1] && Close[1]<High[1])
{
shortcount++;
DrawDot(shortcount.ToString(),0,Resistance[1],Color.Crimson);
BackColorAll = Color.Pink;
}


Comment