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

TTM Trend Clone for Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
amibroker, heikin, ttm

This is a clone of the TTM trend indicator by Trade The Markets that sells for alot of money.

Similar Indicators / Formulas

Heikin Ashi
Submitted by kaiji over 14 years ago
Heikin-Ashi
Submitted by mlnd1986 almost 14 years ago
TTM Squeeze Clone
Submitted by kaiji about 14 years ago
TTM Brick Clone
Submitted by kaiji about 14 years ago
Heikin Ashi Easy System
Submitted by felippemiranda over 10 years ago
You cannot view the code for the following reasons:
  • You must be a member and have contributed at least 1 indicator

2 comments

1. wildeazoscar

This is never the TTM Trend Clone

This is a plain and simple colored heiken ashi

2. GDVAJA

_SECTION_BEGIN(“ATP”);
DayChange = Day() != Ref(Day(), -1);
AvgTradePrice = Null;
CurDayBars = 0;
CurDayCloseSum = 0;

for (i = 0; i < BarCount; i++)
{
if (DayChange[i])
{
CurDayCloseSum = C[i];
CurDayBars = 1;
}
else
{
CurDayCloseSum = CurDayCloseSum + C[i];
CurDayBars++;
}
AvgTradePrice[i] = CurDayCloseSum / CurDayBars;
}

ColorATP=IIf(AvgTradePrice>Ref(AvgTradePrice,-1),colorBrightGreen,colorRed);
Plot(AvgTradePrice,“ATP”,colorATP,styleThick);

PlotShapes(shapeCircle * DayChange, colorBlue, 0, C, 0);

_SECTION_END();

Leave Comment

Please login here to leave a comment.

Back