Exclude Price Range from eBay
From FillZ
|
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.
var item = FILLZ.ITEM.v1;
if (FILLZ.venue == 'ebay'){
var min = 50;
var max = 200;
if (item.base_price < min || item.base_price > 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.
var item = FILLZ.ITEM.v1;
if (FILLZ.venue == 'ebay') {
var min = 50;
var max = 200;
if (item.base_price > min && item.base_price < max ) return 0;
}
|

