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

10 % return by 15 day uptrend exploration for Amibroker (AFL)
mayur_a14
almost 13 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
amibroker, exploration

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

General Market Exploration by XeL
Submitted by xel over 11 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk over 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney over 10 years ago
TEMA_Regression Crossover
Submitted by marcheur over 10 years ago

Indicator / Formula

Copy & Paste Friendly
/* 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