Thank you for replying.
Another concern:
StartDate = 20070501;
EndDate = 20071001;
BarPeriod = 240;
vars Price = series(price());
var cup[10] = { 1,0,1,0,-1 };
plot("Cup Similarity",detect(Price,0,40*PIP,cup),NEW,RED);
When I run this, it looks like the following picture:
http://sv.tinypic.com/view.php?pic=rrs8hw&s=8#.UvzBDPl5NVUThough a strange thing happens when i close Zorro and open it again. Because then, the same operation looks like this:
http://sv.tinypic.com/view.php?pic=2ql93s1&s=8#.UvzBpPl5NVUIf anyone could tell me what the problem seems to be.
Second:
Let's say I code a pattern i.e like this
var cup[10] = { 1,0,1,0,-1 };
is that different comparing to this:
var cup[10] = { 10,0,10,0,-1 };
(by looking at the chart, it seems to be a difference, but I dont know what)
What I think I'm asking is, what difference does the number value make? (as above, 10 comparing to 1).
Thanks in advance!
Ibra