With some of the newcomers asking questions about charting, etc., thought it may be worthwhile having a bit of a discussion on system development.
As an example I have put together a small test system that anyone is free to play around with.
Part of the system below is derived from a trend following system that was developed in 1999 for the futures market using 30 minute intra-day charts.
With the tools available today it is relatively easy to set up a simple system and test it. It is quite a simple matter to play around with ideas and modify parameters, so feel free to modify, add or change anything that you see below.
The Metastock code is included below:
Filter
ADX(14) < 25
AND C > Ref(HHV(C,15),-1)
AND Fml("Liquidity") > 400000
AND C < 5.00 AND C > O
AND (Mov(C,10,E) > Mov(C,20,E) > Mov(C,50,E)> Mov(C,200,E))
Indicator
Liquidity
Mov(V * C,21,S)
WARNING: the code above is untested and is only provided as an example.
I have only run it as an exploration in Metastock to see what it would produce. If I was testing it I would convert and run it under AmiBroker.
NB: The above doesn't represent any system that I currently use live.
Anyway have fun.
As an example I have put together a small test system that anyone is free to play around with.
Part of the system below is derived from a trend following system that was developed in 1999 for the futures market using 30 minute intra-day charts.
With the tools available today it is relatively easy to set up a simple system and test it. It is quite a simple matter to play around with ideas and modify parameters, so feel free to modify, add or change anything that you see below.
The Metastock code is included below:
Filter
ADX(14) < 25
AND C > Ref(HHV(C,15),-1)
AND Fml("Liquidity") > 400000
AND C < 5.00 AND C > O
AND (Mov(C,10,E) > Mov(C,20,E) > Mov(C,50,E)> Mov(C,200,E))
Indicator
Liquidity
Mov(V * C,21,S)
WARNING: the code above is untested and is only provided as an example.
I have only run it as an exploration in Metastock to see what it would produce. If I was testing it I would convert and run it under AmiBroker.
NB: The above doesn't represent any system that I currently use live.
Anyway have fun.