发表于:2006-03-02 00:53只看该作者
2楼
ROC? 没有找到.....帮顶
遇到矛盾 先站在对方的立场上想想问题,先试着去理解别人
● 如何使用WinMTR查询平台连接流畅度
3楼
哈哈。谢谢老正。
发表于:2006-03-02 05:56只看该作者
4楼
只有mt3的
韬客社区www.talkfx.co
5楼
能不能请哪位热心的高手编一个呢.
ING行情分析中心
6楼
帮忙呀.
发表于:2006-06-02 00:48只看该作者
7楼
Roc就是Momentum
韬客社区www.talkfx.co
发表于:2006-10-14 14:06只看该作者
8楼
//+------------------------------------------------------------------+
//| ROC.mq4 |
//| |
//| |
//+------------------------------------------------------------------+
#property copyright ""
#property link ""
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 ForestGreen
//---- input parameters
extern int ROCPeriod=13;
//---- buffers
double ROCBuffer;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
string short_name;
//---- indicator line
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ROCBuffer);
//---- name for DataWindow and indicator subwindow label
short_name="ROC("+ROCPeriod+")";
IndicatorShortName(short_name);
SetIndexLabel(0,short_name);
//----
SetIndexDrawBegin(0,ROCPeriod);
//----
return(0);
}
//+------------------------------------------------------------------+
//| ROC |
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
//----
if(Bars<=ROCPeriod) return(0);
//---- initial zero
if(counted_bars<1)
for(i=1;i<=ROCPeriod;i++) ROCBuffer[Bars-i]=0.0;
//----
i=Bars-ROCPeriod-1;
if(counted_bars>=ROCPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
ROCBuffer=(Close*100/Close[i+ROCPeriod])-100;
i--;
}
return(0);
}
//+------------------------------------------------------------------+
[ 本帖最后由 老正 于 2006-10-16 13:06 编辑 ]
韬客社区www.talkfx.co
发表于:2006-10-29 08:05只看该作者
9楼
谢谢
韬客社区www.talkfx.co
发表于:2006-11-28 12:33只看该作者
10楼
谢谢!
价值吸引价格;规律随机;筹码收集;