|
|||||||||||||||||||
| Special offer: buy AmiBroker and EOD+Real-Time Data |
|
The idea: Take the difference between Gerald Appel's MACD's histogram and the histogram's value DSP bars ago and smooth it with an Smth bar exponential (or simple) moving average. When this differrence crosses below zero, the tradable is predisposed to go down. When the histogram actually turns negative, go short. When the difference crosses above zero, cover the short trade. And when the histogram actually turns positive, go long. Cover when the difference crosses below zero. Type : Function, Name : McdMo Inputs: R(Numeric), S(Numeric), Q(NUmeric), Dsp(Numeric), Smth(Numeric); Vars: Mo(0), Avg(0), Diff(0); Mo=MACD(C,R,S); Avg=XAverage(MACD(C,R,S),Q); Diff=Mo-Avg; McdMo=Average(Diff-Diff[Dsp],Smth); Notes: This calculates the difference between theMACD histogram and its value DSP bars ago, smooth by an SMTH bars simple moving average. Type : Function, Name : MacdDiff Inputs: R(Numeric), S(NUmeric), Q(Numeric); Vars: Mac(0), Avg(0); Mac=MACD(C,R,S); Avg=Xaverage(MACD(C,R,S),Q); MACDDiff=Mac-Avg; Notes: This is the Macd Histogram. Type : Indicator, Name : Macd Momentum Inputs: R(12), S(26), Q(9), Dsp(10), Smth(3); Vars: Mo(0), Diff(0); Diff=MacdDiff(R,S,Q); Mo=McdMo(R,S,Q,Dsp,Smth); Plot1(Diff,"Diff"); Plot2(Mo,"Macd Mo"); "The mark of a successful commander is the ability to adapt rapidly to the constantly changing conditions on the field of battle." -Carlo D'Este on Field Marshall Walter Model Code:
all formulas for TradeStation all formulas
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| However we try to maintain hiqhest possible level of service - most formulas, oscillators, indicators and systems are submitted by anonymous users. Therefore S4T™ does not take any responsibility for it's quality. If you use any of this information, use it at your own risk. You are responsible for your own trading decisions. Be sure to verify that any information you see on these pages is correct, and is applicable to your particular trade. In no case will S4T™ be responsible for your trading gains or losses. |
|
|