Exclude Price Range from eBay

From MediaSell

Jump to: navigation, search

This script will exclude items outside min $50 and max $200 price range from eBay. For example, if the price of an item is $10, it will not be listed on eBay.

  • You can change 50 and 200 in the script below to the prices you wish to use.
if( marketplace == 'EBay' )
{
  min = 50;  
  max = 200; 

  if( item.basePrice < min || item.basePrice > max ) return 0;
}


This script will exclude items inside min $50 and max $200 price range from eBay. For example, if the price of an item is $10, it will be listed on eBay.

  • You can change 50 and 200 in the script below to the prices you wish to use.
if( marketplace == 'EBay' )
{
  min = 50;  
  max = 200; 

  if( item.basePrice > min && item.basePrice < max ) return 0;
}

Personal tools