Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Detrended Price Oscillator System for Amibroker (AFL)
Analysis with help ADX,PDI,MDI,CCI,DetrendedPriceOsc,CCI and…
this clishe and bases formula…
this just for analysis…
Indicator / Formula
function DetrendedPriceOsc( Periods )
{
return C - Ref( MA( C, Periods ), -( 1 + Periods/2 ) );
}
Plot( DetrendedPriceOsc( Param("Periods", 20, 1, 100 ) ),
_DEFAULT_NAME(),
ParamColor("Color", ColorCycle ) );
Buy= ADX(14)<40 AND PDI(14) > MDI(14) AND CCI(14)>(DetrendedPriceOsc( 20 )) AND CCI(14)> MACD(12,26) AND StochK(15,3) > StochD(15,3,3) AND RSI(14)<RSI (25) ;
Sell=ADX(14)<40 AND PDI(14) < MDI(14) AND CCI(14)<(DetrendedPriceOsc( 20 )) AND CCI(14)< MACD(12,26) AND StochK(15,3) < StochD(15,3,3)AND RSI(14)>RSI (25) ;0 comments
Leave Comment
Please login here to leave a comment.
Back