47评论

10收藏

火车轨指标,趋势正确率90%

 

评论|共 47 个

2221568663

发表于 2021-3-29 10:46:54 | 显示全部楼层

谢谢

踢出个未来

发表于 2021-3-31 11:43:08 | 显示全部楼层

wcthczpt

发表于 2021-7-30 18:16:52 | 显示全部楼层

支持下

淘淘

发表于 2024-3-8 22:05:36 | 显示全部楼层

夜无伤98782

发表于 2024-3-26 11:20:46 | 显示全部楼层

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 DeepSkyBlue
#property indicator_color2 DeepSkyBlue
int Periods=80;
double Line[],Line1[];
int init()//初始化函数
{
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID, 2);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID, 2);
SetIndexBuffer(0,Line);
SetIndexBuffer(1,Line1);
return(0);
}
int deinit()//反初始化函数
{
ObjectsDeleteAll();
return(0);
}
int start()
{
int i;   
int limit;
int counted_bars=IndicatorCounted();  
if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;     
for (i=limit-1;i>=0;i--)
{
  Line[i]=iMA(NULL,0,Periods,0,MODE_EMA,PRICE_HIGH,i);
  Line1[i]=iMA(NULL,0,Periods,0,MODE_EMA,PRICE_LOW,i);
}
return(0);
}

夜无伤98782

发表于 2024-3-26 11:21:22 | 显示全部楼层

一个均线指标也敢卖两个币,坑爹

鬼方重

发表于 2024-4-20 13:00:36 | 显示全部楼层

支持下

心安理得

发表于 昨天 23:52 | 显示全部楼层

12345
您需要登录后才可以回帖 登录 | 注册 微信登录

EA之家评论守则