Hi everyone,
Please could someone tell me how to use TimeNum() in a for-if loop.
Please note, I DO NOT WANT TO USE IIF.
See code snippet below;
if(LongExit= =0 AND High[i]>=Sell1[ i]) //TopPip HIT
{
LongExit = 1;
Sell[i] = 1;
SellPrice[i] = Sell1[i];
}
if(LongExit= =0 AND TimeNum()==160000) //Timed out
{
LongExit = 1;
Sell[i] = 1;
SellPrice[i] = C;
}
if(LongExit= =0 AND Low[i]<=PriceAtBuy - Sl) //Sl HIT
{
LongExit = 1;
Sell[i] = 1;
SellPrice[i] = PriceAtBuy - Sl;
}
if(LongExit> 0)
{
Buy[i] = 0;
LongExit = 0;
PriceAtBuy = 0;
}
TimeNum() throws an error when I click "verify syntax".
How can I use TimeNum() to do the above?
I also need to use DayOfWeek() in a similar way.
Many thanks for any feedback, Chris.