PureBytes Links
Trading Reference Links
|
I'm using V 5.11. I assume that the "writeval( )" is unique to V 6.0. Is
there an equivalent formulation for V 5.11?
Lionel Issen
At 06:20 PM 5/8/97 EDT, MICHAEL J ARNOLDI wrote:
>i spotted a small error in my previous posting & i don't remember if it
>was corrected by me before sending it: (i ommitted to place 2* in front
>of the "h"
>in the formula for (o<c)
>
>here it is (the corrected version):
>closing price: writeval(c,5.2)
>
>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)", " ")
>
>mike.
>
>
>
|