SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Peter H. Mack who wrote (9260)4/7/1999 3:20:00 PM
From: Jonathan Sibley  Respond to of 11149
 
Has there ever been any discussion of QP2 supporting min and max of Range? It seems like so many studies look for minimum or maximum ranges, and the resulting code could be greatly simplified?

Jonathan Sibley



To: Peter H. Mack who wrote (9260)4/7/1999 5:37:00 PM
From: Bob Jagow  Respond to of 11149
 
If you modigy it to
----
if close(0) > 20 then
output = "higher20.lst";
println symbol,",",close(0):4:3,",",description;
else
output = "less20.lst";
endif;
--------
The interpreter gets confused and all get printed to less20!
Input and output assignments get special handling -- can't use string assignments, etc.