TEMA for early signals for Amibroker (AFL)
moneylan over 13 years ago Amibroker (AFL)
Based on Triple Exponential Moving Average crossover , this gives crossover signal earlier than most of the moving average systems
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("KANNAN-TEMA");
Plot ( TEMA ( C, 21 ), "TEMA 21", colorGreen );
Plot ( TEMA ( C, 55 ), "TEMA 55", colorRed );
Buy = TEMA( Close , 21 ) > TEMA( Close , 55 );
Sell = 0;
Short = TEMA( Close , 21 ) < TEMA( Close , 55 );
Cover = 0;
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.