0
Follow
0
Followers
पायथन में रिकॉर्ड की सरणी के बजाय कीमतों की सरणी कैसे प्राप्त करें
Created 2019-07-10 15:23:46
1
1685
मैं उदाहरण देख रहा हूँ कि आप Exchange.GetRecords ((Period) के माध्यम से Record का एक array प्राप्त कर सकते हैं। लेकिन मैं उस array को प्राप्त करना चाहता हूँ जिसकी कीमत है, जैसे कि open पिछले 20 K लाइनों का array, close पिछले 20 K लाइनों का array, और फिर उस array पर 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
