Hello,

I would like to create an indicator for use within market analyzer.

The indicator would alert me visually (such as in the picture below, by changing the cell color) when 2 conditions are both met:

1. ADX with 14 period is above 25
2. DI+ & DI- crossover




So I believe I will have to make a custom indicator using something like this:

if (CrossAbove(DM(14).DiPlus, DM(14).DiMinus,1))

But I really don't know how to do any of that. Please point me in the right direction. Thank you.