Skip to content

Commit

Permalink
0.8.28 更新信号案例 (waditu#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
zengbin93 committed Jul 3, 2022
1 parent 4ae10c8 commit 1f8f73d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion czsc/signals/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"""

import numpy as np
import talib as ta
try:
import talib as ta
except:
from czsc.utils import ta
from collections import OrderedDict
from typing import List, Union, Tuple, Dict
from czsc.objects import Freq, Signal, RawBar, NewBar
Expand Down

0 comments on commit 1f8f73d

Please sign in to comment.