2
Follow
0
Followers
একই সময়ে K-লাইনের দুটি পিরিয়ড কল করার জন্য আমি কীভাবে JS ভাষা ব্যবহার করতে পারি?
Created 2019-06-12 23:01:15
1
1738
একই সময়ে K MA5 এবং শেষ 1 মিনিটের রিয়েল-টাইম ডেটা কল করতে চান
কিভাবে কাজ করে
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)
可以给exchange.GetRecords() 函数调用的时候传入参数:
var dayKline = exchange.GetRecords(PERIOD_D1)
var minute1Kline = exchange.GetRecords(PERIOD_M1)
var defaultKline = exchange.GetRecords() // 默认K线周期
7 years ago
- 1

