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

Elder Triple Screen Trading System for Amibroker (AFL)

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

Formula Name : Elder Triple Screen Trading System
Author : Dennis Skoblar (email id : DennisAndLisa@sbcglobal.net)
The Credit goes to the Author : Dennis Skoblar, who created this formula/system.

The formula contains some instructions, do read it and then proceed!
For Charts : cut and paste the chart/indicator to it’s own window with it’s own file name and remove the Remark Slashes “//”, except for the first line, this line describes the chart function. Example…leave “//Weekly Bar Chart” from the following first line as as.

Similar Indicators / Formulas

Reaction Trend System
Submitted by ajayjain90 almost 14 years ago
OPTIMIZED ICHIMOKU
Submitted by ritesh.bafna88 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
mutlitime frame with trendline
Submitted by nsetraderonline over 13 years ago
You cannot view the code for the following reasons:
  • You must be a member.

7 comments

1. konidena

Following error reported

)/LookBkPd ;

 OP = LastValue(OuterPct) ;

 X=X+sign( OP - ExternalBarPct )*deltaX ;

 deltaX = deltaX/2
-----------------^

Error 14.
Endless loop detected in DO-WHILE loop

Subrahmanyam

2. administrator

Yeah that happens on some stocks. I don’t have enough time to debug this and fix it so if someone knows how to fix it please say so.

3. rmike

Here’s the corrected snippet of code -

//////////////////////////////////////
do
 {
 Over = H > Middle + X ;
 Under = L < Middle - X ;
 OuterPct = 100*( Sum( Over, LookBkPd ) + Sum( Under, LookBkPd )
 )/LookBkPd ;
 OP = LastValue(OuterPct) ;
 Y= X + sign( OP - ExternalBarPct )*deltaX;
 
 }while ( sign( OP - ExternalBarPct ) > ConvergePct ) ;
 Plot( Middle, "MA", colorYellow, styleLine|styleNoTitle ) ;
 Plot( Middle+Y, "MA", colorSkyblue, styleDashed|styleNoTitle ) ;
 Plot( Middle-Y, "MA", colorSkyblue, styleDashed|styleNoTitle ) ;

////////////////////////////////////

The problem was occurring because of usage of ‘abs’ function in the ‘while’ loop which gave rise to the fact that the ‘abs’ value of algorithm for some stocks was always above the reference value.

However, be aware that this formula looks into the future!

Regards, rmike

4. administrator

Excellent work mike works a treat now :).

5. rmike

Glad to be able to help :)

6. RAVI2011

hello any one tray to put email alert i have formula but work in this AlertIf( Buy, “Email”, "BUY triggered for " + Name() + " at price Rs."+WriteVal(C,5.2), 1,1+2 );
this formula work other indicator so tray to set in formula

7. ylerih

When i press compilator program find 132 errors, can somebody send working version of “triple screen” here or on my email – tranguk09@rambler.ru.
Thanks in advance

Leave Comment

Please login here to leave a comment.

Back