I want to code my condition to the bottom wick is 2x greater or more than the top wick
can someone point me in the right direction
Cheers.
if((Close[0] > Open[0]) // CURRENT CANDLE IS GREEN
&&(Open[0] - Low[0] > High[0] - Close[0]) //BOTTOM WICK IS LONGER THAN TOP WICK

Comment