Compiled with error(s):

Questions about MultiCharts and user contributed studies.
Carrera
Posts: 9
Joined: 09 Apr 2007

Compiled with error(s):

Postby Carrera » 09 Apr 2007

Please help me. Attache source code has "Compiled with error(s)", Why?
Here is a sample code for TS.
----------

Inputs:EntryDay(40),ExitDay(20);

Buy("Breakout Buy") Next Bar at Highest(High,EntryDay)Stop;
Sell("Breakout Sell") Next Bar at Lowest(Low,EntryDay)Stop;

ExitLong("Breakout Exit-Ln") at Lowest(Low,ExitDay)Stop;
ExitShort("Breakout Exit-Sn") at Highest(High,ExitDay)Stop;

----------

User avatar
Stanley Miller
Posts: 556
Joined: 26 Jul 2005
Has thanked: 3 times

Postby Stanley Miller » 10 Apr 2007

Here is the correct code:

Code: Select all

Inputs:EntryDay(40),ExitDay(20);

Buy ("Breakout Buy") Next Bar at Highest(High,EntryDay)Stop;
Sell Short ("Breakout Sell") Next Bar at Lowest(Low,EntryDay)Stop;

Sell ("Breakout Exit-Ln") next bar at Lowest(Low,ExitDay) Stop;
Buy to Cover ("Breakout Exit-Sn") next bar at Highest(High,ExitDay) Stop;

Carrera
Posts: 9
Joined: 09 Apr 2007

Postby Carrera » 10 Apr 2007

Thank you for your help.
I understood that Muticharts have no compatibility with TS-2000i.

Do you have the documents which specified the difference?


Return to “MultiCharts”