2221568663 发表于 2021-3-29 10:46:54

谢谢

踢出个未来 发表于 2021-3-31 11:43:08

{:1_179:}

wcthczpt 发表于 2021-7-30 18:16:52

支持下

淘淘 发表于 2024-3-8 22:05:36

{:1_180:}

夜无伤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=iMA(NULL,0,Periods,0,MODE_EMA,PRICE_HIGH,i);
Line1=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

支持下

心安理得 发表于 2024-11-28 23:52:47

{:1_189:}
页: 1 2 3 4 [5]
查看完整版本: 火车轨指标,趋势正确率90%