Rank: Advanced Member
Groups: Moderators, Registered, Registered Users, Subscribers Joined: 10/8/2010(UTC) Posts: 1,960
Thanks: 91 times Was thanked: 155 time(s) in 150 post(s)
|
Originally Posted by: borsaholic I Thing the same thing is here too:
{ User input }
pr:=12;
{ Elliot Wave engine }
EWpk:=PeakBars(1,H,pr)=0;
EWtr:=TroughBars(1,L,pr)=0;
zz:=Zig(C,pr,%);
zzHi:=Zig(H,pr,%);
zzLo:=Zig(L,pr,%);
avg:=(zzHi+zzLo)/2;
RetroSuccessSecret:=If(EWpk,zzHi,
If(EWtr,zzLo,If(avg>Ref(avg,-1),H,L)));
EW:=Zig(RetroSuccessSecret,pr,%);
{ Buy/Sell Elliot Wave
stuff }
EWbuy:=TroughBars(1,EW,pr)=0;
EWsell:=PeakBars(1,EW,pr)=0;
{ Plot on own window }
Ewbuy-EWsell;
In the chart it plotted the binary like +1, -1 and 0, but in the explorer it will be not calculated. Is it right? Very pity.
Thanks.
If you put a formula in the Filter tab, then anything that does not meet the criteria as a "True" condition will be rejected. If you put the formula into the other columns (A through L) and leave the Filter tab empty, then all results should be displayed. The Explorer is designed to only display a single value for the date that was scanned, but you can still "Inspect" a given security to review the prior date's values.
|