Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
TTM Trend Clone for Amibroker (AFL)
This is a clone of the TTM trend indicator by Trade The Markets that sells for alot of money.
Similar Indicators / Formulas
2 comments
Leave Comment
Please login here to leave a comment.
Back
This is never the TTM Trend Clone
This is a plain and simple colored heiken ashi
_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();