| 
 PureBytes Links 
Trading Reference Links 
 | 
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.
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to 
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
    Individual Email | Traditional
<*> To change settings online go to:
    http://groups.yahoo.com/group/amibroker/join
    (Yahoo! ID required)
<*> To change settings via email:
    amibroker-digest@xxxxxxxxxxxxxxx 
    amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
    amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 |