PureBytes Links
Trading Reference Links
|
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.
|