NexusFi: Find Your Edge


Home Menu

 





TS Strategy custom indic - invalid data type


Discussion in EasyLanguage Programming

Updated
    1. trending_up 6,163 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: 52 since Aug 2020
Thanks Given: 13
Thanks Received: 22

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?
New Section 301 Probes Target 16 Trading Partners -- Tra …
Traders Hideout
Irans Answer Due Today: Peace Surges to 33.5%, Invasion …
Prediction Markets & Event Contracts
CME Launches Bitcoin Volatility Futures June 1 -- First …
Cryptocurrency
Orban at 29pct as Hungary Votes Tomorrow -- McIlroy Surg …
Prediction Markets & Event Contracts
Q1 2026 Shatters All Derivatives Volume Records -- CME H …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
24 thanks
2026 Jlab journal
10 thanks
Trying to learn Volume and price action correlation
7 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Lady Vols Primer: Trading Volatility Journal
6 thanks
  #2 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,447 since Apr 2013
Thanks Given: 493
Thanks Received: 1,639

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 X Reply With Quote
  #3 (permalink)
FutureTrader112
Amsterdam Netherlands
 
Posts: 52 since Aug 2020
Thanks Given: 13
Thanks Received: 22



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,447 since Apr 2013
Thanks Given: 493
Thanks Received: 1,639

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 X Reply With Quote
Thanked by:
  #5 (permalink)
FutureTrader112
Amsterdam Netherlands
 
Posts: 52 since Aug 2020
Thanks Given: 13
Thanks Received: 22


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


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