mirror of
https://github.com/raa251/Liquidity_Predator.git
synced 2026-07-06 13:42:02 +00:00
11 lines
No EOL
134 B
MQL5
11 lines
No EOL
134 B
MQL5
bool M_BullishCandle(MqlRates &CDL)
|
|
{
|
|
if(CDL.close > CDL.open)
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
return false;
|
|
}
|
|
} |