PureBytes Links
Trading Reference Links
|
an expert pricing target for the next day's trading:
note: if the opening price is above the target high, then you can expect
prices to move higher that day, and conversley
if the opening price is below the target low, then you can expect prices
to move lower that day.
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)", " ")
enjoy,
mike
|