예제 #1
0
 def _c_fall_wrap_raise(self):
     type_name = 'fall_wrap_raise'
     try:
         mask = self._calculator_instance.fall_wrap_raise()
         symbols = self._data_symbols[mask].to_list()
         self._store_update(type_name, symbols, direction=-1)
     except Exception as e:
         logger.error(e)
예제 #2
0
 def _c_duck_head(self):
     type_name = 'duck_head'
     try:
         mask = self._calculator_instance.duck_head()
         symbols = self._data_symbols[mask].to_list()
         self._store_update(type_name, symbols, direction=1)
     except Exception as e:
         logger.error(e)
예제 #3
0
 def _c_morning_start(self):
     type_name = 'morning_start'
     try:
         mask = self._calculator_instance.morning_start()
         symbols = self._data_symbols[mask].to_list()
         self._store_update(type_name, symbols, direction=1)
     except Exception as e:
         logger.error(e)
예제 #4
0
 def _c_three_crow(self):
     type_name = 'three_crow'
     try:
         mask = self._calculator_instance.three_crow()
         symbols = self._data_symbols[mask].to_list()
         self._store_update(type_name, symbols, direction=-1)
     except Exception as e:
         logger.error(e)
예제 #5
0
 def _c_golden_spider(self):
     type_name = 'golden_spider'
     try:
         mask = self._calculator_instance.golden_spider()
         symbols = self._data_symbols[mask].to_list()
         self._store_update(type_name, symbols, direction=1)
     except Exception as e:
         logger.error(e)
예제 #6
0
 def _c_rise_pregnant(self):
     type_name = 'rise_pregnant'
     try:
         mask = self._calculator_instance.rise_pregnant_line()
         symbols = self._data_symbols[mask].to_list()
         self._store_update(type_name, symbols, direction=1)
     except Exception as e:
         logger.error(e)