PureBytes Links
Trading Reference Links
|
Dear Anthony,
a.Suppose you want to check when close for day 0 is>
close for day -1andclose for day -1 was > close for day
-2. for Dec 2001 cotton.
Open Ind. Builder window, paste the AFL formula
cond1=c>ref(c,-1) and
ref(c,-1)>ref(c,-2);graph2=cond1;
select scaling *Automatic and hit *Apply
You will have a black bar whenever above condition is
true.
b. Suppose you want to count above condition.Paste the AFL
formula
cond1=c>ref(c,-1) and
ref(c,-1)>ref(c,-2);graph0=cum(cond1);
and a red, always increasing line will graph everyday"how
many times the condition occured", from the firstday of your
data.
The last day you can detect the truth of the condition is
today.You have no data for tomorrow.
Of course the graph is not only for Dec 2001 cotton.Once
placed in Ind. builder, works also for corn and soybeansor whatever youhave
in you ticker list.
If it is what you want and if it works properly, pleasedo me
a favor:How do you use this condition?
Best regardsDimitris Tsokakis
|