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

RE: Telescan's Investment Platform



PureBytes Links

Trading Reference Links

On Fri, 13 Jun 1997 11:12:22 -0700, you wrote:

Hi Michael,

I'm not that familiar with the "Expert" module of MS.

Without imposing on you, can you briefly give me an idea of how that
get inputed into the "Expert".

Maybe a simple "Print to File" of the Gronfeldt formula would help.

Thanks.

-= Chris =-


>MICHAEL J ARNOLDI wrote:
>> 
> this is what i wrote for my "expert" analysis  and i use it fairly often:
> 
> NEXT DAY'S HIGH PRICE TARGET:
>  WriteIf( o>c, "WriteVal(( h+2*l+c)/2-l)", " ")
>  WriteIf( o<c, "WriteVal((2* h+l+c)/2-l)", " ")
> WriteIf( o=c, "WriteVal(( h+l+2*c)/2-l)", " ")
> NEXT DAY'S LOW PRICE TARGET:
>  WriteIf( o>c, "WriteVal(( h+2*l+c)/2-H)", " ")
>  WriteIf( o<c, "WriteVal(( 2*h+l+c)/2-H)", " ")
> WriteIf( o=c, "WriteVal(( h+l+2*c)/2-H)", " ")
> 
> when next day's open is above the range, prices should continue higher,
> the opposite if it opens below the low target.