SelectiveMovAvg???

Rengoku

Newbie
Messages
8
Likes
0
I’m reading about indicator setups and came across this one… SelectiveMovAvg! It is written for NEUROSHELL in traders.com TradersTips! I have been searching trying to find out how this is made or where it is located… could someone please enlighten me?!?
An example of this is below:

The Vortex Indicator described by Etienne Botes and Douglas Siepman in their article in this issue can be easily implemented in NeuroShell Trader by combining a few of NeuroShell Trader’s 800+ indicators. First, select “New Indicator” from the Insert menu and use the Indicator Wizard to create the following indicators:
+VM: Abs( Subtract( High, Lag( Low, 1 ) ) )

-VM: Abs( Subtract( Low, Lag( High, 1 ) ) )

TR: Max3( Subtract( High, Low ),
Abs( Subtract( High, Lag( Close, 1) ) ),
Abs( Subtract( Low, Lag( Close, 1 ) ) ) )

VI+: Divide( Sum( +VM, 14 ), Sum( TR, 14 ) )

VI-: Divide( Sum( -VM, 14 ), Sum( TR, 14 ) )
Then, to create a trading system based on the Vortex Indicator, select “New Trading Strategy” from the Insert menu and enter the following in the appropriate locations of the Trading Strategy Wizard:
Generate a buy long STOP when all of the following conditions are true:

A>B ( VI+, VI- )

Stop price:

SelectiveMovAvg ( High, CrossAbove( VI+, VI-), 1 )

Generate a short sell STOP when all of the following conditions are true:

A<B ( VI+, VI- )

Stop price:

SelectiveMovAvg ( Low, CrossBelow( VI+, VI-), 1 )
 
Top