// Condition set 1
if (CrossBelow(Close, KeltnerChannel(1.5, 10).Lower, 1))
{
DrawTriangleUp("My triangle up" + CurrentBar, false, 0, 0, Color.Lime);
}
// Condition set 2
if (CrossAbove(Close, KeltnerChannel(1.5, 10).Upper, 1))
{
DrawArrowUp("My up arrow" + CurrentBar, false, 0, 0, Color.Red);

). I did some additional analysis. None of the common drawing shapes show-up such as: Arrows; squares; etc. I did get vertical lines to appear when using the bollinger band excursions based on Close. So unless there's a simple environmental variable controlling the appearance of these Shapes...I'm dead in the water. I want to get reliable signals using the program free strategy wizard...
Comment