If the current price low (update on price change) drops lower than the lower APZ line of the prior bar (which already completed), then place an Arrow at this bar that is developing. I used place long order but it didn't do anything either.
CL 8 Range Bar Chart
APZ Band 2% Period 7
protected override void OnBarUpdate()
{
if (CurrentBars[0] < 1)
return;
// Set 1
if (Low[0] <= APZ1.Lower[1])
{
Draw.ArrowUp(this, @"ApzChoppy04Arrow up", false, 0, 3, Brushes.Lime);
}
Comment