hey jon.... using the expert editor you can set trends, highlights and alerts among other things....
for the buy alert the code could be something like;
//---------------------------
a:=Mov(OBV(),20,S);
OBV() > a AND Ref(OBV(),-1) < Ref(a,-1)
//--------------------------
for the sell alert the code could be something like;
//-------------------------
a:=Mov(OBV(),20,S);
OBV() < a AND Ref(OBV(),-1) > Ref(a,-1)
//-------------------------
highlights are sometimes convienent,the long might be;
//-----------------------
a:=Mov(OBV(),20,S);
OBV() > a
//----------------------
the short code might be;
//-----------------------
a:=Mov(OBV(),20,S);
OBV() < a
//----------------------
there are other methods such as the 'cross' function..... in the alert section it helps to have a text message associated with that particular expert.....h