Mactheriverrat 3,153 posts msg #89190 - Ignore Mactheriverrat |
3/5/2010 9:03:29 PM
Looking for a filter that I can watch my added stocks that I add showing MACD, slow stochastic, psar. I coud add or delete stocks that I could keep a watch on then save them as a stock watch list.
|
Mactheriverrat 3,153 posts msg #89192 - Ignore Mactheriverrat |
3/5/2010 9:38:13 PM
I used http://forums.stockfetcher.com/sfforums/?q=view&fid=1002&tid=88991&qrid=
Where one can custom change his filter where it says symlist(spy) I just add a coma next to (SPY, TSTC) then fetch stocks. Then save or delete as I see fit
[
/*DEMARKER FILTER*/
set{DEM1, COUNT(DEMARKER(5) ABOVE 0.3,1)}
set{DEM2, count(demarker(5) 1 day ago below 0.3,1)}
set{dembuy, dem1 * dem2}
set{DEM3, COUNT(DEMARKER(5) below 0.7,1)}
set{DEM4, count(demarker(5) 1 day ago above 0.7,1)}
set{demsell, dem3 * dem4}
set{BUY, count(dembuy above 0.5,1)}
set{SELL, count(demsell above 0.5,1)}
set{DeMarker5,0}
draw SELL on plot DeMarker5
draw BUY on plot DeMarker5
draw volume_oscillator line at 1
symlist(spy)
chart-time is 6 months
]
|
dickysofa 63 posts msg #89194 - Ignore dickysofa |
3/5/2010 11:16:33 PM
You can manually build a symlist within a filter like in the example you posted.
symlist(spy, appl, bidu, qqqq, amzn)
Or you could create a Watch List and put what you want to follow in there. That way you won't have to update the filter each time.
watchlist(mywatchlistname)
|
Mactheriverrat 3,153 posts msg #89219 - Ignore Mactheriverrat |
3/6/2010 7:45:54 PM
Thanks!!!!!!!!!!!!
|