 |
QuantShare
2010-05-26 06:24:21
0
|
|
- Stocks trading in a high and low range that is less than 20% for the last 100 bars:
a = ((hhv(high, 100) / llv(low, 100)) - 1) < 0.2;
- Descending triangle pattern (using the advanced rules syntax)
Occurs in a period between 30 and 40 bars
a = searchfor _belowline(close, close) and _perf(close) < -5 and ((close / _min(close)) - 1) < 0.1 after 30 within 40;
|
|