0
Follow
0
Followers
Я вижу пример, где можно получить массив Record через exchange.GetRecords ((Period)). Но я хочу получить ценовой массив, например, открыть массив с прошлыми 20 линиями K, закрыть массив с прошлыми 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
