PureBytes Links
Trading Reference Links
|
Jim,
The instructions are on the attached web page.
-Neal.
At 03:29 PM 12/8/2000 +0000, you wrote:
>Neal, could you please provide the means and directions to install
>these indicators into MetaStock.
-------------------------- eGroups Sponsor -------------------------~-~>
eLerts
It's Easy. It's Fun. Best of All, it's Free!
http://click.egroups.com/1/9699/1/_/_/_/976579110/
---------------------------------------------------------------------_->
To unsubscribe from this group, send an email to:
dlevels-unsubscribe@xxxxxxxxxxx
Title: Coast Investment Software Proprietary Trader Support and Education Area.
Proprietary Trader Support & Education Area.
Metastock trading tools. The indicators below require that you
create custom indicators within Metastock. The documentation and help
files provided with Metastock are excellant, if you have any trouble,
please refer to the documentation. To create a custom indicator, click on
Tools/Indicator Builder/New and then enter the formulae below in the
appropriate boxes.
Preferred Stochastic for Metastock 6.5
The following will not work in earlier versions of Metastock, version
6.5 or later is required.
The code is in three sections below, you need to define each as a
custom indicator, but plot only the two labelled NH_Di_STO_FAST_D and
NH_Di_STO
Formula Name : NH_Di_STO_FAST_K
( (C - LLV(L,8))/ (HHV(H,8) - LLV(L,8) ) )* 100
Formula Name : NH_Di_STO_FAST_D
Day:=Cum(1)+1; Z:=3; MV:=(1/Z);
If(Day<(Z+2),Fml("NH_Di_STO_FAST_K"),If(day=(Z+2),Mov(Fml("NH_Di_STO_FAST_K"),LastValue(Z),S),PREV+(MV*(Fml("NH_Di_STO_FAST_K")-PREV))))
Formula Name : NH_Di_STO
Day:=Cum(1)+1; Z:=3; MV:=(1/Z);
If(Day<(Z+2),Fml("NH_Di_STO_FAST_D"),If(day=(Z+2),Mov(Fml("NH_Di_STO_FAST_D"),LastValue(Z),S),PREV+(MV*(Fml("NH_Di_STO_FAST_D")-PREV))))
Good trading, -Neal.
DiNapoli MACD for Metastock 6.5 and 5.0
Since the Metastock MACD only accepts WHOLE NUMBERS as input, you must
define the DiNapoli MACD as a custom indicator. A moving average of the
MACD custom indicator is also plotted. Two indicators are therefore
required, below is the code to be inserted in the custom indicator
facility.
Formula Name : DiNapoli MACD. Mov( CLOSE, 8.3896, E) - Mov( CLOSE,
17.5185, E)
Formula Name : DiNapoli MACD MOV. mov(fml("DiNapoli MACD"), 9.0503,
E)
DiNapoli Detrend Oscillator for Metastock 6.5 and 5.0
The indicator below requires that you create custom indicators within
Metastock. The documentation and help files provided with Metastock are
excellant, if you have any trouble, please refer to the documentation. To
create a custom indicator, click on Tools/Indicator Builder/New and then
enter the formulae below in the appropriate boxes.
Formula Name : DiNapoli Detrend Osc. (C-Mov(C,7,S))*100
|