Hello! I am just curious, why Funyoo uses the NewBarBuy and NewBarSell functions, is it because of Hedge function?
bool NewBarBuy()
{
if(PreviousBarTime1<Time[0])
{
PreviousBarTime1=Time[0];
return(true);
}
return(false);
}
bool NewBarSell()
{
if(PreviousBarTime2<Time[0])
{
PreviousBarTime2=Time[0];
return(true);
}
return(false);
}



Reply With Quote


