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

Weekly SMA System with ATR Stop for Amibroker (AFL)
na1982
about 15 years ago
Amibroker (AFL)

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

Weekly SMA System with ATR stop. Amibroker reports that this formula references future quotes.

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 14 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 10 years ago
Kase CD V2batu
Submitted by batu1453 over 10 years ago
Ichimoku
Submitted by prashantrdx over 10 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 14 years ago
LANDIS Modified
Submitted by isfandi about 14 years ago

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
41
42
43
44
45
46
47
48
49
50
SetBarsRequired(10000,10000);
SetFormulaName("Weekly SMA System with ATR stop");
SetTradeDelays( 1, 1, 1, 1 );
SetOption( "initialequity", 100000 );
SetOption( "PriceBoundChecking", 1 );
SetOption( "CommissionMode", 2 );
SetOption( "CommissionAmount", 32.95 );
SetOption( "UsePrevBarEquityForPosSizing", True );
SetOption("MaxOpenPositions", 20); //
SetOption( "AllowPositionShrinking", False);
SetOption("AllowSameBarExit", False);
 
ATRLevel = 3*ATR(20);
 
Buy = C>MA(C,30);
 
PositionSize=-10;// invest 10% of portfolio equity in single trade
 
Sell = 0;
trailARRAY = Null;
trailstop = 0;
 
for( i = 1; i < BarCount; i++ )
{
 
if( trailstop == 0 AND Buy[ i ] )
{
trailstop = H[ i ]- ATRLevel[ i ];
}
else Buy[ i ] = 0; // remove excess buy signals
 
if( trailstop > 0 AND Low[ i ] < trailstop )
{
Sell[ i ] = 1;
SellPrice[ i ] = trailstop;
trailstop = 0;
}
 
if( trailstop > 0 )
{
trailstop = Max( H[ i ]- ATRLevel[ i ], trailstop );
trailARRAY[ i ] = trailstop;
}
 
}
 
Sell = trailARRAY;
 
Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);

1 comments

1. herlinamanalu

good afl..

Leave Comment

Please login here to leave a comment.

Back