Nachdem es uns der große Meister nicht so einfach machen will, habe ich meine Demoversion von Metastock installiert und in der Hilfe nachgelesen, was er mit seinem Hammersystem ausgekocht hat.
Im Prinzip wird mit dem ZigZag-Indikator nach dem letzen High oder Low gesucht. Die Änderung wird dabei auf 3% eingestellt. Long geht man dann einen Bar nach dem Low und Short natürlich einen Bar nach dem High.
Hier die Info aus der MetaStock Hilfe:
SYNTAX troughbars( Nth, DATA ARRAY, % MINIMUM CHANGE)
FUNCTION Plots the number of bars that have passed from the Nth trough. This uses the Zig Zag function (see Zig Zag) to determine the troughs. If Nth is 1, then this will return the number of bars that have passed since the most recent trough. If Nth is 2, this will return the number of bars that have passed since the 2nd most recent trough. Etc.
EXAMPLE troughbars(1,close,5)
SYNTAX peakbars( Nth, DATA ARRAY, % MINIMUM CHANGE)
FUNCTION Plots the number of bars that have passed from the Nth peak. This uses the Zig Zag function (see Zig Zag) to determine the peaks. N=1 would return the number of bars that have passed since the most recent peak. N=2 would return the number of bars that have passed since the 2nd most recent peak. Etc.
EXAMPLE peakbars(1,close,5)
SYNTAX zig( DATA ARRAY, MINIMUM CHANGE, DIFF_METHOD )
FUNCTION Calculates the MINIMUM CHANGE predefined Zig Zag indicator of DATA ARRAY using the DIFF_METHOD method of calculation.
Valid DIFF_METHODs are PERCENT and POINTS (these can be abbreviated as % and $).
EXAMPLE§zig( CLOSE, 5, PERCENT )
In TradeSignal sieht es dann ungefähr so aus:
|
Angehängte Grafik:
DAX.png (verkleinert auf 63%)