def update_stockbase_SecTips(self,tips):
     col_name='stockbase'
     fields='ticker'
     stkif=StockInterface(self.token)
     db=DatabaseInterface()
     tickers_dic=stkif._getSecTips([fields],tips)
     tickers=self.unpack_dic(fields,tickers_dic)
     updates={"$set":{'tipsTypeCD':tips}}
     for t in tickers:
         print t+'today turn to'+tips
         db.update_db(self.db_name,col_name,{'ticker':t},updates)