- Katılım
- 23 Eki 2020
- Mesajlar
- 1,826
DBS System * To: "Metastock" <metastock@xxxxxxxxxxxxx> * Subject: DBS System * From: "Von Hef" <VonHef@xxxxxxxxxx> * Date: Tue, 3 Nov 1998 20:26:17 -0600 * Reply-To: metastock@xxxxxxxxxxxxx * Sender: owner-metastock@xxxxxxxxxxxxx I just received my copy of "Futures Magazine" and they had the MetaStock code for the Dynamic Break-out System. I added the "DBS-" to the names of their formulas (so they would group together in my list) otherwise they should be written exactly as published. The formula named "DBS-BreakWhere" is a mystery to me......I dont see where it is used in the system, but I posted it because it was in the article. |
|
DBS-LookBack X:=Stdev(C,30); Y:=Ref(X,-1); Z:=1+((X-Y)/X); If(Cum(1)=1,20,Min(Max(PREV*Z,20),60)); |
|
DBS-BuyBreak HHV(H,LastValue( Fml( "DBS-LookBack" ) + PREV - PREV)) |
|
DBS-BuyExit LLV(L,LastValue( Fml( "DBS-LookBack" ) / 2 + PREV - PREV)) |
|
DBS-SellBreak LLV(L,LastValue( Fml( "DBS-LookBack" ) + PREV - PREV)) |
|
DBS-SellExit HHV(H,LastValue( Fml( "DBS-LookBack" ) / 2 + PREV - PREV)) |
|
DBS-BreakWhere TopB:=Ref( Fml( "DBS-BuyBreak" ),-1); LowB:=Ref( Fml( "DBS-SellBreak" ),-1); ((O+H+L+C)/4-LowB)*100/(TopB-LowB); |
|
Dynamic BreakOut System I Enter Long: H>Ref( Fml( "DBS-BuyBreak" ),-1) Close Long: L<Ref( Fml( "DBS-BuyExit" ),-1) Enter Short: L<Ref( Fml( "DBS-SellBreak" ),-1) Close Short: H>Ref( Fml( "DBS-SellExit" ),-1) |
Best wishes, Adam Hefner. e-mail: VonHef@xxxxxxxxxx [10184] | |
| |
Source / From: |