Any update, please?
Quote from Rodney King:
http://bit.ly/jlxk2B
Quote from Murray Ruggiero:
.......
The concept is to make a channel , X Average Trueranges from a moving average. There are two different variations of this. The first is to enter on a stop when the channel is broken. The other is to enter on the next day's open if you close outside of the channel. I will give you some results for this system on a basket of commodities in a few days.
Quote from Murray Ruggiero:
Sub KeltnerBBreakOutClassic(SLen,BandMult,EQLB)
Dim MAAve As BarArray
Dim StdVal As BarArray
Dim virprofit As BarArray
MAAve=Average(Close,SLen,0)
StdVal=Average(Range,SLen,0)
If Close>MAAve+BandMult*StdVal Then Buy("LE",1,0,Market,Day)
If Close<MAAve-BandMult*StdVal Then Sell("SE",1,0,Market,Day)
If MarketPosition=1 And Close<MAAve Then ExitLong("LX","LE",1,0,Market,Day)
If MarketPosition=-1 And Close>MAAve Then ExitShort("SX","SE",1,0,Market,Day)
End Sub
Here is the code for a classic Keltner band system. I will be posting more soon.