Questions:
1) Why is it randomly skipping bars?
2) Why does it always skip the first few bars of the day?
protected override void OnBarUpdate() { if (CurrentBar < BarsRequiredToTrade) return; if (Close[1] < Open[1]) // RED BAR Draw.Text(this, "R"+Bars.GetAsk(CurrentBar), "R", 0, High[0]+.01);
Comment