Liquidity_Predator/Utilities/M_BullishCandle.mqh

11 lines
134 B
MQL5
Raw Permalink Normal View History

bool M_BullishCandle(MqlRates &CDL)
{
if(CDL.close > CDL.open)
{
return true;
}
else
{
return false;
}
}