Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

DhaN System for Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
trading system, amibroker

This is a Basic Positional/short term trading system but it’s gives good result if you trade with Multiple Quantity. (MAX 2-3)

​ Regards

Screenshots

Indicator / Formula

Copy & Paste Friendly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//------------------------------------------------------------------------------
//  Formula Name:   DhaN System
//      Author/Uploader:Dharmin Naik
//      E-mail:     Dham4naik@yahoo.com
//------------------------------------------------------------------------------
 
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
 
 
MAp =   Param( "MAp", 9, 1, 100 );
MAp2    =   Param( "MAp2", 60, 1, 100 );
 
DMIp    =   Param( "DMIp", 19, 1, 100 );
RSIp    =   Param( "RSIp", 9, 1, 100 );
CCIp    =   Param( "CCIp", 43, 1, 100 );
 
 
Buy1    =   C> MA(C,MAp)
        AND C> EMA(C,MAp2)
        AND PDI(DMIp) > MDI(DMIp)
        AND RSI(RSIp) > 50
        AND CCI(CCIp) > 0;
 
Sell1   =   C< MA(C,MAp)
        AND C< EMA(C,MAp2)
        AND PDI(DMIp) < MDI(DMIp)
        AND  RSI(RSIp) < 50
        AND  CCI(CCIp) < 0;
 
 
Buy Cross( Buy1, Sell1 );
Sell    Cross( Sell1, Buy1 ) ;
 
 
 
 
PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorBlue, 0,L, Offset=-20);
PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorBrown, 0,H, Offset=-20);

0 comments

Leave Comment

Please login here to leave a comment.

Back