PureBytes Links
Trading Reference Links
|
Here is some text labelled 'Head & shoulders' I found in one of the Expert
files in c:\Equis\MSwin\Eperts directory. It does not seem to be accessible
from the program, so I suppose it is left over from a previous version or a
development. There is also a 'support and resistance' formula in the same
file. The text for which appears in the MS 6.5 Users manual page 211.
=================================================
ValueWhen(3,PeakBars(1,C,5)=0,HHV(TSF(V,10),3))>
ValueWhen(2,PeakBars(1,C,5)=0,HHV(TSF(V,10),3))
AND
ValueWhen(2,PeakBars(1,C,5)=0,HHV(TSF(V,10),3))>
ValueWhen(1,PeakBars(1,C,5)=0,HHV(TSF(V,10),3))
AND
ValueWhen(2,TroughBars(1,C,5)=0,HHV(TSF(V,10),3))<
ValueWhen(3,PeakBars(1,C,5)=0))<
ValueWhen(3,PeakBars(1,C,5)=0,HHV(TSF(V,10),3))
AND
ValueWhen(1,TroughBars(1,C,5)=0,HHV(TSF(V,10),3))<
ValueWhen(2,PeakBars(1,C,5)=0,HHV(TSF(V,10),3))
Close
Confirm
Peak(4,C,5)<Peak(3,C,5)
AND
Peak(3,C,5)<Peak(2,C,5)
AND
Peak(2,C,5)>Peak(1,C,5)
AND
Trough(1,C,5)<Peak(3,C,5)
AND
TroughBars(1,C,5)<>0
AND
Trough(2,C,5)>ValueWhen(2,TroughBars(1,C,5)=0,Mov(C,200,S))
=================================================
|