If the wave is red (trend == -1) it will print the text at the specified candle position on the chart. The problem happens when I try to use the Draw.Text for both conditions. If I uncomment the first Draw.Text line (I can leave the Draw.TextFixed line active or comment it out) the indicator no longer works and prints nothing on the chart. I cannot find why this is happening. I have tried using a different Tag, different locations etc but as soon as I have both Draw.Text statements active nothing prints. It compiles fine.
Any insight on what I am missing?
Thanks,
Mark
if (trend == 1) {
Draw.TextFixed(this,"drawtag1","Weis Wave is Green", TextPosition.TopRight,Brushes.White, ChartControl.Properties.LabelFont,Brushes.Black,Br ushes.Green,100);
// Draw.Text(this,"drawtag1",false,"Weis Wave - Green",6,Close[0],-80,Brushes.Green,myFont,TextAlignment.Center,Brush es.Green,Brushes.LightGray,80);}
else
if (trend == -1)
Draw.Text(this,"drawtag1",false,"Weis Wave - Red",5,Close[0],-120,Brushes.Red,myFont,TextAlignment.Center,Brushe s.Red,Brushes.LightGray,80);

Comment