Skip to main content

ALT for Amibroker (AFL)

Miraz over 15 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 3)
  • Tags:
    trendline, amibroker

Its useful to understand price pattern..

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("ATL");
x = Cum(1);

perchg = 0.3*LastValue( Highest( ROC( Low, 50 ) ));

startvalue = LastValue( Trough( Low, perchg, 1 ) );
endvalue1 = LastValue( Trough( Low, perchg, 2 ) );

startbar = LastValue( ValueWhen( Low == startvalue, x, 1 ) );
endbar = LastValue( ValueWhen( Low == endvalue1, x, 1 ) );

Aa = (endvalue1-startvalue)/(endbar-startbar);
b = startvalue;

trendline = Aa * ( x  - startbar ) + b; 

Plot( Close, "Price", colorBlue, styleCandle );
Plot( IIf( x >= endbar, trendline, Null ), "Trendline", colorRed );
_SECTION_END();

1 comments

over 15 years ago

This AFL is similar to Automatic Trend Line (ATL) submited by the Administrator some time ago. Good formula, but nothing new.

Leave Comment

Please login here to leave a comment.