I put this below into a copy of a sample ma strategy, but no value appears at the buys on the chart ?
am I placing this in the wrong event handler?
protected override void OnBarUpdate()
{
if (BarsInProgress != 0)
return;
if (CurrentBar < BarsRequiredToTrade)
return;
if (CrossAbove(smaFast, smaSlow, 1))
{
EnterLong();
Draw.Text(this, "VOLUME", Volume[0].ToString(), 0, Volume[0] , Brushes.Yellow);
}

Comment