0
Follow
0
Followers
예를 들어서, 저는 Exchange.GetRecords (기한) 를 통해 Record의 배열을 얻을 수 있는 것을 보았습니다. 하지만, 저는 값의 배열을 얻고 싶습니다. 예를 들어,open은 지난 20개의 K선들의 배열,close는 지난 20개의 K선들의 배열, 그리고는 이 배열에 대해 numpy로 몇 가지 계산을 합니다. 어떻게 해야 할까요?
Related Recommendations
Get Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?5.5 Trading strategy optimization5.4 Why do we need an off-sample test5.3 How to read the strategy backtest performance report
Comment
All comments (1)
在API 文档中 https://www.fmz.com/api#talib库里面的函数指标
import talib
def main():
records = exchange.GetRecords()
cci = talib.CCI(records.High, records.Low, records.Close, 14) # 14 这个参数 可以 缺省。
Log(cci)
7 years ago
- 1
