Liquidity_Predator/Utilities/M_BullishCandle.mqh

11 lines
No EOL
134 B
MQL5

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