0
Follow
0
Followers
Могу ли я таким образом судить о золотом кресте и мертвом кресте?
Created 2018-09-13 14:49:12
2
2175
var macd = TA.MACD(records, 12, 26, 9);
var M1 = macd[2][macd[2].length-2];
var M2 = macd[2][macd[2].length-3];
// 金叉
if(M2<0 && M1>0){
return 1;
}
// 死叉
if (M2>0 && M1<0) {
return 2;
}
Related Recommendations
Great news! Check out our platforms’ NEW features, the “Demands & Offers” page on our website.Our platform’s New design PC/MacOS local software client is released now!Flash collapse robot (teaching)Index equilibrium strategy (teaching)can anyone please explain how to start with this platformC++ API call exampleHow to break through the Tick receiving limit of commodity futuresMulti-platform Hedging Stabilization Arbitrage V2.1 (Annotation Edition)Pure english vesion of e-books about some basic systematic trading skillsThe grid trading strategy
Comment
All comments (2)
- 1
