Liquidity_Predator_raaa251/Utilities/M_BullishCandle.mqh

11 行
无行尾
134 B
MQL5

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