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

Swing Trading Modell for Amibroker (AFL)
Baetz
almost 13 years ago
Amibroker (AFL)

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

This is a Swing Trading Modell with the buyprice under the last close!
This Modell works good in stocks, to buy/collect stocks for a cheap price after a sell off!

I found it on the web

Similar Indicators / Formulas

OPTIMIZED ICHIMOKU
Submitted by ritesh.bafna88 over 11 years ago
Reaction Trend System
Submitted by ajayjain90 almost 14 years ago
Behgozin Strength Finder
Submitted by hotaro3 over 11 years ago
KPL with RSI
Submitted by pdkg_gal almost 14 years ago
Intraday Trend Break System
Submitted by nishantndk almost 14 years ago
ema crossovers
Submitted by rushee.g1100 almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
L_Condi1 = ROC( Close, 200 ) > 0 ;
lRSI=20;
L_RSI=3;
L_Condi2 = RSI( L_RSI ) > 0 AND RSI(L_RSI ) < lRSI ;
AddColumn( RSI( L_RSI), "RSI" );
S_Condi1 = ROC( Close, 200 ) < 0 ;
HRSI=95;
S_Condi2 = RSI( 3 ) > HRSI;
TStop = 0;
Lp=0.07;
B_LP_C = Ref( C, -1 ) - ( Ref( C, -1 ) * Lp ); //buyprice x% under the last close
AddColumn( Ref( C, -1 ), "V_Close" );
AddColumn( B_LP_C, "BuyPrice" );
LONG_C = ( Ref( L_Condi1, -1 ) AND Ref( L_Condi2, -1 )AND L < B_LP_C AND Close > 2 AND Ref( Volume, -1 ) > 1 ) ;
AddColumn( LONG_C, "LONG", 1 );
Buy = LONG_C;
BuyPrice = B_LP_C;
sp=0.05;
B_SP_C = Ref( C, -1 ) + ( Ref( C, -1 ) * sp ); //buyprice x% under the last close
Short_C = ( Ref( S_Condi1, -1 ) AND Ref( S_Condi2, -1 ) AND H > B_SP_C AND Close > 2 AND Ref( Volume, -1 ) > 1 );
Short = Short_C;
AddColumn( Short_C, "Short", 1 );
Filter = Long_C OR Short_C; 
IIf( L > B_SP_C,ShortPrice = Open,ShortPrice = B_SP_C);
AddColumn(ShortPrice, "Short_Price" );
MaxLost = 15;
ApplyStop( stopTypeLoss, stopModePercent, MaxLost );//Max - stop LOSS
Sell = Close > Ref( Close, -1 );
Cover = Close < Ref( Close, -1 );
Size = 33;//% of capital
SetPositionSize( Size, spsPercentOfEquity ); // buy Shares max. 50 %
SetBacktestMode( backtestRegularRawMulti ); 
SetTradeDelays(1,1,1,1); 
//PositionSize = 50000;

0 comments

Leave Comment

Please login here to leave a comment.

Back