Put an "If" statement around it (be sure to get the beginning of the <a href... tag in it...
Code:
<if condition="is_member_of($vbulletin->userinfo, 2)">
<a href="http://www.mysite.com/traders.php">Trader?</a>
</if>
If you need it to display to more than one usergroup then just add numbers separated by commas, such as:
<if condition="is_member_of($vbulletin->userinfo, 2,5,6,7)">
The numbers are of course the usergroup id's of the usergroups you want to show this to.