Screener Pro Real Time

« Older   Newer »
  Share  
gain+
view post Posted on 16/4/2007, 15:54




Posto uno screener che mi hanno consigliato gli amici del forum di Teocollector

Indicatori/Backtest:

Indicatore NormalizedVolume
Citazione:

ma = Average[21](Volume)

vn = volume / ma[0] *100.0
if (close < close[1]) then
vn = -vn
endif

return vn as "NormalizedVolume"




ProScreeners:
ProScreener Breakout
Citazione:

timeframe(daily)
hh=0
cnt = 1
while cnt<3 do
hh = max(hh,High[cnt])
cnt=cnt+1
wend

c1 = Close>=hh

myNormalizedVolume = CALL NormalizedVolume
c2 = myNormalizedVolume > 100 and myNormalizedVolume > myNormalizedVolume[1]


if c1 and c2 then
SCREENER (Close/hh*100.0 AS "Spin" , myNormalizedVolume / myNormalizedVolume[1] *100.0 AS "SpinVol")
endif



Di seguito potreste riepilogare i vostri
 
Top
arylaryl
view post Posted on 16/4/2007, 18:46




ottimo.. dopo lo provo
 
Top
gruff
view post Posted on 17/4/2007, 11:26




proverņ anch'io stasera. Ne potete scrivere o avere uno in PROREALTIME dove RSI(5) č minore di 10?
 
Top
2 replies since 16/4/2007, 15:54   1626 views
  Share