mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-12-02 11:58:21 +08:00
27 lines
635 B
Python
27 lines
635 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf8 -*-
|
|
# cp936
|
|
|
|
from hikyuu import StrategyBase, Query
|
|
from hikyuu import StrategyContext, StockManager
|
|
|
|
|
|
class TestStrategy(StrategyBase):
|
|
def __init__(self):
|
|
super(self.__class__, self).__init__()
|
|
self.stock_list = ['sh600000', 'sz000001']
|
|
self.ktype_list = [Query.MIN, Query.DAY]
|
|
|
|
def init(self):
|
|
print("strategy init")
|
|
|
|
def on_bar(self, ktype):
|
|
print("on bar {}".format(ktype))
|
|
print("{}".format(len(StockManager.instance())))
|
|
for s in self.sm:
|
|
print(s)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
s = TestStrategy()
|
|
s.run() |