ehsmama, you dont need to dynamically create watchlists in Wealth-Lab. If you want to base trading decissions on an indicator just add it as a trading rule and simulate the entire market. For eample ...
If SMA(Bar,#Volume,55) > 100000 Then
BuyAtLimit etc.
Some other idea may take a little more programming but most things can be done. For example if you want to chose stocks with the highest relative strength you can code relative strength, but an easier way to begin testing might be to trade a stock if its 250 bar return is better than the S&P500 return (adjusted for volatility).
If you want to test fundamental data dynamically all you need is the data in some readable format. The best way is with the Bloomberg adapter, though its expensive.
If SMA(Bar,#Volume,55) > 100000 Then
BuyAtLimit etc.
Some other idea may take a little more programming but most things can be done. For example if you want to chose stocks with the highest relative strength you can code relative strength, but an easier way to begin testing might be to trade a stock if its 250 bar return is better than the S&P500 return (adjusted for volatility).
If you want to test fundamental data dynamically all you need is the data in some readable format. The best way is with the Bloomberg adapter, though its expensive.