Skip to main content

TAZ Trading Method Exploration for Amibroker(For Long Setup) for Amibroker (AFL)

123rajraj about 13 years ago Amibroker (AFL)

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

This was originally developed by Joeoil and Tommy beard for scanning stock to identify pullback in uptrend . This indicator can be used to adopt TAZ Swing Trading Method which is explained at http://www.swing-trade-stocks.com
Raj

Indicator / Formula

Copy & Paste Friendly
TimeFrameSet(inWeekly);
WeeklyTrend = MA(Close,10)>EMA(Close,30);
TimeFrameRestore();

DailyFilter = L < Ref(L,-1) AND Ref(L,-1) < Ref(L,-2) AND (MA(Close,10)) > (EMA(Close,30)) AND Close > (EMA(Close,30)) AND Close < (MA(Close,10)) AND ADX(10) > 20 AND Close > (MA(Close,200)) AND Close > 10 AND (MA(Volume,60)) > 150000;

Filter = DailyFilter AND TimeFrameExpand(WeeklyTrend,inWeekly);

4 comments

2. joeoil
about 13 years ago

The afl works fine.

This is an exploration and it will find stocks that meets the criteria in the code. The stocks will be listed in a column when pushing the “Explore” button.

Regards

4. joeoil
about 13 years ago

john_d

Do you get any error when you try “Verify syntax”?

Or what happen when you push Explore button?

Leave Comment

Please login here to leave a comment.