Simple Signal  [SOLVED]

Questions about MultiCharts and user contributed studies.
paul.robillard
Posts: 30
Joined: 22 Mar 2012
Location: Western Europe
Has thanked: 6 times

Simple Signal

Postby paul.robillard » 06 Feb 2018

Hello,

I am looking for some Tutorial / example of a simple signal to automate trades based on Data2 inputs.

I am no expert but i do get around in coding indicators. I would like to get started on signals.

More explicitly i would like to trade a Future as Open of data1 if it is greater than the Close of Data2 (index) and open the position when index Market Opens.

i wrote this :

Code: Select all

variables:
closeCash(0);

closeCash = Close[1] of data2;

IF time > 0900 AND Open of data1 > closeCash then
print(open of data1,"",closecash);
The code compiles with success, but nothing is printed :/

Can anyone please point out some links to comprehensive resource / Tutorials ?

REgards

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Simple Signal  [SOLVED]

Postby TJ » 06 Feb 2018

EasyLanguage Reference Guide
Multi-data strategy..... pg. 43


You can google for a free download of this ebook

User avatar
TJ
Posts: 7742
Joined: 29 Aug 2006
Location: Global Citizen
Has thanked: 1033 times
Been thanked: 2222 times

Re: Simple Signal

Postby TJ » 06 Feb 2018

See post #4 & #5
viewtopic.php?t=6929

paul.robillard
Posts: 30
Joined: 22 Mar 2012
Location: Western Europe
Has thanked: 6 times

Re: Simple Signal

Postby paul.robillard » 06 Feb 2018

Thanks for this :)
I have a PDF book called Easy language for TS. At the bottom of page 43 there is the title MultiData Strategies ... I guess i'll need to go the trial and error route all over again !:/


Return to “MultiCharts”