Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
10 % return by 15 day uptrend exploration for Amibroker (AFL)
This is very simple formula for finding up trending stocks.
Here one can take entry in a stock when It crosses 15 day sma and trades above it for at least 13 days. After taking entry on 13 days hold it for 1 to 1.5 week and will get 10% return here use upper bollinger band as exit and 15 day sma as stoploss.
If stocks continue to trade above 15 day sma ones you get 10% return then second entry possible on 21 day.
Similar Indicators / Formulas
Indicator / Formula
/* Create date: 12 Apr 2011 The Close Price of 15 bars ago is greater than the Simple MA (Short) of 15 bars ago */ Filter = Ref( Close, -12 ) > Ref( MA( Close, 15 ), -12 ) AND Ref( Close, -11 ) > Ref( MA( Close, 15 ), -11 ) AND Ref( Close, -10 ) > Ref( MA( Close, 15 ), -10 ) AND Ref( Close, -9 ) > Ref( MA( Close, 15 ), -9 ) AND Ref( Close, -8 ) > Ref( MA( Close, 15 ), -8 ) AND Ref( Close, -7 ) > Ref( MA( Close, 15 ), -7 ) AND Ref( Close, -6 ) > Ref( MA( Close, 15 ), -6 ) AND Ref( Close, -5 ) > Ref( MA( Close, 15 ), -5 ) AND Ref( Close, -4 ) > Ref( MA( Close, 15 ), -4 ) AND Ref( Close, -3 ) > Ref( MA( Close, 15 ), -3 ) AND Ref( Close, -2 ) > Ref( MA( Close, 15 ), -2 ) AND Ref( Close, -1 ) > Ref( MA( Close, 15 ), -1 ) AND Close > MA( Close, 15 ); AddColumn( Close, "Close " ); AddColumn( Open, "Open " ); AddColumn( High, "High " ); AddColumn( Low, "Low " ); AddColumn( Volume, "Volume " );
0 comments
Leave Comment
Please login here to leave a comment.
Back