Display results of the ProScreener (ProScreener command only).
Syntax:
1 |
SCREENER[conditions](sorting criteria) |
where :
- “conditions” can be be a single one or multiple ones and unified by any operators (AND, OR, ..)
- “sorting criteria” can be any values previously calculated within a variable (optional in SCREENER instruction)
Example :
Excerpt of the ProScreener documentation.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
REM Condition 1 and 2: MACD weekly < 0 and increasing TIMEFRAME(weekly) MyMACD = MACD[12,26,9](Close) c1 = MyMACD<0 AND MyMACD> MyMACD[1] REM Condition 2: Daily Stochastic < 30 TIMEFRAME(daily) MySTO = Stochastic[14,3](Close) c2 = MySTO <30 REM Set Stop Level MyStop =High[1] REM Criteria: Proximity to the high of the previous day Criteria = (Close / MyStop-1) *100 REM Condition 3: Price is less than previous day's high or no more than 5% above it. c3 = Criteria <5 SCREENER[c1 AND c2 AND c3](Criteria) |
Hi there,
1. I it possible to search the forum with more than a single word ( –> can boolean operators be used to search this database) ? I failed, but this would help me a lot 🙂
2. Is it possible to define within the screener which list / market to search ? The way of clicking + choosing in different windows seems clumsy and time consuming.
Merci/Thank you for your reply
Hi + happy new year —- is anybody out there to answer my question ?
Cheers, Tom