if(CrossAbove(entryprice,Close,0)){
Print("entryPrice,Close,0 is true");
}
if(CrossAbove(Close,entryprice,0)){
Print("(Close,entryPrice,0 is true");
}
even though i can see the price go above the entryprice, this piece of code never gets triggered. wonder what error i am making.

Comment