PDA

View Full Version : Bressert DSS


Ceurami
04-05-2012, 09:18 AM
Hi All,

Can someone program the Bressert DSS?
I've got a AmiBroker code:

_SECTION_BEGIN("DSS10");
SetChartOptions(0,0,ChartGrid30|ChartGrid70 );
SetChartBkColor(ParamColor("Panel Color",colorLightGrey));
SetChartBkGradientFill(ParamColor("Upper Chart",colorLightGrey),ParamColor("Lower Chart",colorLightGrey));
Slw=Param("Slowing DSS",3,1,5,1);
Pds=Param("Periods DSS",10,3,21,1);
A=EMA((C-LLV(L,Pds))/ (HHV(H,pds)-LLV(L,Pds)),Slw)*100;
DSS=EMA((A-LLV(A,pds))/(HHV(A,Pds)-LLV(A,Pds)),Slw)*100;
Plot(DSS,"DSS",ParamColor("DSS 10 Color",colorRed ),ParamStyle("Style",styleThick));
Upper=Param("Upper",85,50,100,1);
Middle=Param("Middle",50,50,100,1);
Lower=Param("Lower",25,0,50,1);
Plot(Upper,"Upper",ParamColor("Color Upper Line",colorRed),styleLine);
Plot(Middle,"Middle",ParamColor("Color Middle Line",colorGrey50),styleDashed);
Plot(Lower,"Lower",ParamColor("Color Lower Line",colorRed),styleLine);
_SECTION_END();

Same formula for dss5. Pds becomes 5. Plotted together!
21550

NinjaTrader_RyanM
04-05-2012, 09:26 AM
Hello Ceurami,

If no one offers to create this indicator for you, you can always consider a NinjaScript consultant who can be hired to make code to your specifications.
http://www.ninjatrader.com/partners#NinjaScript-Consultants

Ceurami
04-08-2012, 07:55 AM
Thanks Ryan,
Should be not to difficult.... :-)

NinjaTrader_Bertrand
04-09-2012, 02:29 AM
Have you checked into the DoubleStochastics already shipped with NT per default? Those would be in the style of calculation you seek in your initial post...

bob5e
04-27-2012, 07:57 AM
Ceurami,

Did you ever figure out how to code Bressert to Ninja yet? I've been thinking about that as well since I use Quotetracker and have found it to be superior to the default Double Stochastics. Thanks, Bob