0
Follow
0
Followers
আমি উদাহরণস্বরূপ দেখছি যে, এক্সচেঞ্জ.GetRecords ((Period) এর মাধ্যমে Record এর অ্যারে পাওয়া যায়। কিন্তু আমি যে অ্যারেটি পেতে চাই, যেমন open এর শেষ ২০টি K লাইন, close এর শেষ ২০টি 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
