Trade different watchlist for different buy signals

Hello Fellow Amibroker coders,
I was wondering, is there a way where by we can trade different watchlist based on different buy signals

IIF(MONTH() == 1, find stocks from watchlist 1, find stocks from watchlist 2); 

This is just an example what I want to achieve

For SMS style question, SMS style answer:

Buy1 = ... 
Buy2 = ....

Buy = IIF( Month() == 1, Buy1, Buy2 );

Remember, if you want to receive quality answer, you have to pay attention to the quality of your initial post and show your own effort.

3 Likes

This topic was automatically closed 100 days after the last reply. New replies are no longer allowed.