| 
 PureBytes Links 
Trading Reference Links 
 | 
At 7:29 AM -0800 1/31/01, Kimball Morgan wrote:
>Does anyone on the list know if one must use a strategy to draw the
>up/down arrows used to denote buy and sell signals? Is there a way to
>code them in an indicator?
>
>I've checked documentation, but perhaps am not looking in the right
>place, and Omega online support is down.
>
>Any help much appreciated,
Try:
  if Date = XXXXXX and Time = YYYY then Buy;  
  if Date = XXXXXX and Time = YYYY then Sell;
These are very handy for making charts for proving how good your
system is. <g>
 
 |