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

Chart problems fixed ???



PureBytes Links

Trading Reference Links

Philip,
	For Close in upper 40% of trading range, it should be

	C > L + (H-L)*0.6,

i.e. C > 0.6*H + 0.4*L . Add Ref(  ,-1) as needed.

			Cheers, Vitaly



Philip Schmitz wrote:
> 
> I am trying to write a formula for:  "Yesterday's
> close fell within the upper 40% of yesterday's
> trading range"  as well as the opposite (for
> entering short) i.e. "fell in the lower 40% of
> yesterday's trading range.
> 
> The following doesn't seem to work.
> 
> Ref(C, -1) > .6  * Ref(H, -1) - Ref(L, -1)
> 
> Any suggestions?
> 
> Philip