[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: EL Code



PureBytes Links

Trading Reference Links

In a message dated 00-08-04 23:58:18 EDT, you write:

<< Could anyone help with a paintbar study in S.C.?  It seems it should be 
 simple, but I cant get the following to come out right:   if  today's high 
is 
  0.2 percent higher than yesterday's high
 
 High + .20 > High[1]   verifies, but there are some bars painted that dont 
 meet the criteria.
 
 Thanks,
 
 Dickey >>

Try:

If  High  >=  High[1] ( 1 +  (.2/100))  


Jim