NexusFi: Find Your Edge


Home Menu

 





TEMA indicator plots horizontal line only


Discussion in EasyLanguage Programming

Updated
    1. trending_up 1,808 views
    2. thumb_up 2 thanks given
    3. group 2 followers
    1. forum 2 posts
    2. attach_file 1 attachments




 
Search this Thread

TEMA indicator plots horizontal line only

  #1 (permalink)
tomas262
Ostrava, Czech Republic
 
Posts: 98 since May 2013
Thanks Given: 19
Thanks Received: 38

Hello,

I am trying to build the TEMA indicator for Multicharts.
1) created a function called TEMA
 
Code
inputs:
	Length(numericsimple),
	Price(numericseries);

variables: 
	XMA(0),
	XMA2(0),
	XMA3(0);

XMA = XAverage( Price, Length ) ;
XMA2 = XAverage( XMA, Length ) ;
XMA3 = XAverage( XMA2, Length ) ;
 
TEMA = 3 * XMA - 3 * XMA2 + XMA3 ;
2) created an indicator called TEMA

 
Code
inputs:
	Price( Close ),
	Length( 14 );

variables:  var0( 0 ) ;

var0 = TEMA( Price, Length ) ;
 
Plot1( var0, "TEMA" ) ;
Now I attach the indicator onto a chart but only horizontal line appears instead of a moving average type line. What do I do wrong?
This suppose to be an "easy language"

Thanks for help

Attached Thumbnails
Click image for larger version

Name:	TEMAplot.png
Views:	213
Size:	107.5 KB
ID:	244208  
Reply With Quote

Can you help answer these questions
from other members on NexusFi?
ZombieSqueeze
Platforms and Indicators
Trade idea based off three indicators.
Traders Hideout
REcommedations for programming help
Sierra Chart
Trend Direction Force Index (TDFI)
Platforms and Indicators
About a successful futures trader who didnt know anythin …
Psychology and Money Management
 
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,436 since Apr 2013
Thanks Given: 482
Thanks Received: 1,629


tomas262,

the first input in your function is the length, but when you call the function in the indicator you are using Price as the first parameter. Change the order in either the function or the indicator should give you the desired result.

Regards,

ABCTG

Follow me on Twitter Reply With Quote
Thanked by:




Last Updated on December 3, 2017


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts