Originally posted by lippi4free
kymar,
im so sorry
i find that i cound reference to a datastream by using 'data(1)).
i cant find explanation of (1) or (2)...
i also do not find anything how to use data-commands in a strategy or whereever.
i was sure, i understood EL right well.
now im not
so one more tip?
maybe some code-examples how to use ?
i will get the meaning fast by testing and handling debug-protocols.
thx lippi
I'm not sure I understand exactly what you're trying to say...
But the previous signal (mostly) works (some odd probem with first instance that I don't have time to check right now) written for multiple data streams like this:
{BUT AT PREVIOUS DAY HIGH}
VARS: PDHIGH(0);
IF TIME = SESS1ENDTIME THEN PDHIGH = H Data(2);
BUY NEXT BAR AT PDHIGH STOP;
Though it's short, I wouldn't recommend this particular version of the signal, just because I find using multiple data streams cumbersome, and better avoided except where strictly necessary.
