EasyLanguage Programming

Isahnshade

Newbie
Messages
1
Likes
0
Hi there!

I'm a bit of a newb in these boards. I was wondering if anyone knows where I can ask for help in programming with EasyLanguage?

For those who are wondering, I keep getting a something like this:
------ Compiled with error(s): ------
syntax error, expecting 'bars'
errLine 0, errColumn 0, errLineEnd 0, errColumnEnd 0
causal study: (Function)

I've no clue where I maybe doing something wrong, or if there's an incorrect syntax. Help? =(
 
This with TS 9.0 ?

Can you post up the actualy code - I'll tell you what's wrong with it.
 
Hi there!

I'm a bit of a newb in these boards. I was wondering if anyone knows where I can ask for help in programming with EasyLanguage?

For those who are wondering, I keep getting a something like this:
------ Compiled with error(s): ------
syntax error, expecting 'bars'
errLine 0, errColumn 0, errLineEnd 0, errColumnEnd 0
causal study: (Function)

I've no clue where I maybe doing something wrong, or if there's an incorrect syntax. Help? =(


one of your variable was in the code
before it was declared.

e.g

Code:
myvariable = close;

var:
myvariable(0);
 
Top