g,
On those errors. Wierd because this scan runs fine:
//Cooper, Lizard Buy, translated by Brooke Elise Nagler input="Weekly.lst"; output="Lizrdbuy.lst";
If Open(0) >= Low(0) + (range(0)*.75) and //O >= L + ((H-L) * .75) AND Close(0) >= Low(0) + (range(0)*.75) and //C >= L + ((H-L) * .75) AND low(0)<Min(-1,-9,lo) then //L < Ref(LLV(L,9),-1)
println symbol,",", close(0):8:3,",", close(-1):8:3; endif;
This scan generates the "unexpected letter" and "unexpected "e" errors
//Cooper, Lizard Sell, translated by Brooke Elise Nagler input="Weekly.lst"; output="Lizrdsel.lst";
If Open(0) <= Low(0) + (range(0)*.25) and //O <= L + ((H-L) * .25) AND Close(0) <= Low(0) + (range(0)*.25) and //C <= L + ((H-L) * .25) AND high(0)>Max(-1,-9,hi) then //H > Ref(HHV(H,9),-1)
println symbol,",", close(0):8:3,",", close(-1):8:3; endif;
The scans are identical except they are opposites. Confused.
Rashid |