NexusFi: Find Your Edge


Home Menu

 





TS Strategy custom indic - invalid data type


Discussion in EasyLanguage Programming

Updated
    1. trending_up 5,538 views
    2. thumb_up 2 thanks given
    3. group 2 followers
    1. forum 4 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
FutureTrader112
Amsterdam Netherlands
 
Posts: 34 since Aug 2020
Thanks Given: 10
Thanks Received: 17

Hi all,

Iam trying to code a basic strategy (atm only Buy Signal) based on a custom indicator. When I try to compile the strategy it shows me an error "invalid data type".

m_coeff = Period / 100; the equal sign creates an error.

Could someone help me here?

Thanks in advance!

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Historical data for Kospi and Nikkei Index
NinjaTrader
Elite Trader Funding, Avoid?
Funded Trading Evaluation Firms
Volumetric charts
The Elite Circle
Brendt Skorupinsky
Trading Reviews and Vendors
Pivot Indicator based on Level2 data
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
ApexTraderFunding.com experience and review
64 thanks
What is Markets Chat (markets.chat) real-time trading ro …
54 thanks
Tao te Trade: way of the WLD
46 thanks
HumbleTraders next chapter
23 thanks
1 Minute Man
21 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,439 since Apr 2013
Thanks Given: 486
Thanks Received: 1,631

FutureTrader112,

it might make sense for you to post the entire code as from the code snippet it is not clear why you would receive the error message.

Regards,

ABCTG


FutureTrader112 View Post
Hi all,

Iam trying to code a basic strategy (atm only Buy Signal) based on a custom indicator. When I try to compile the strategy it shows me an error "invalid data type".

m_coeff = Period / 100; the equal sign creates an error.

Could someone help me here?

Thanks in advance!


Follow me on Twitter Reply With Quote
  #3 (permalink)
FutureTrader112
Amsterdam Netherlands
 
Posts: 34 since Aug 2020
Thanks Given: 10
Thanks Received: 17



ABCTG View Post
FutureTrader112,

it might make sense for you to post the entire code as from the code snippet it is not clear why you would receive the error message.

Regards,

ABCTG

Thanks for your quick reply.



//VARIABLES
//-----------------------------------------------

Input:
Value((C+H+L)/3),
Period(1),
Filter#1_Velocity#2(1);

Vars:
Filter((C+H+L)/3),
Velocity(0),
m_coeff(0),
m_period(0),
_error(0),
_distance(0),


//End VARIABLES----------------------------------



//CALCULATION
//-----------------------------------------------

m_coeff = Period / 100;
m_period = SquareRoot(m_coeff);

_distance = Value - Filter[1];
_error = Filter[1] + _distance * m_period ;
Velocity = Velocity[1] + _distance * m_coeff ;
Filter = _error + Velocity;

//End CALCULATION--------------------------------


Cheers,

Reply With Quote
  #4 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,439 since Apr 2013
Thanks Given: 486
Thanks Received: 1,631

FutureTrader112,

your code misses the semicolon at the end of the variable declaration.

Regards,

ABCTG


FutureTrader112 View Post
Thanks for your quick reply.



//VARIABLES
//-----------------------------------------------

Input:
Value((C+H+L)/3),
Period(1),
Filter#1_Velocity#2(1);

Vars:
Filter((C+H+L)/3),
Velocity(0),
m_coeff(0),
m_period(0),
_error(0),
_distance(0),


//End VARIABLES----------------------------------



//CALCULATION
//-----------------------------------------------

m_coeff = Period / 100;
m_period = SquareRoot(m_coeff);

_distance = Value - Filter[1];
_error = Filter[1] + _distance * m_period ;
Velocity = Velocity[1] + _distance * m_coeff ;
Filter = _error + Velocity;

//End CALCULATION--------------------------------


Cheers,


Follow me on Twitter Reply With Quote
Thanked by:
  #5 (permalink)
FutureTrader112
Amsterdam Netherlands
 
Posts: 34 since Aug 2020
Thanks Given: 10
Thanks Received: 17


ABCTG View Post
FutureTrader112,

your code misses the semicolon at the end of the variable declaration.

Regards,

ABCTG

oh yes you are right

Thanks a lot!!!!

Reply With Quote




Last Updated on September 29, 2020


© 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 - Sitemap - Downloads - Top
no new posts