求高手将【置换均线】做成MQ4
The DiNapoli 3 x Displaced Moving Averages
Based on "Joe DiNapoli - The Practical Application of Fibonacci Analysis to Investment Markets"
* DMA 3 x 3 - The 3 period simple moving average of close, displaced forward 3 periods
for the short term and is extremely useful in thrusting markets.
* DMA 7 x 5 - The 7 period simple moving average of close, displaced forward 5 periods
longer-based DMA that many have found useful in equity market analysis
- DMA 25 x 5 - The 25 period simple moving average of close, displaced forward 5 periods
longer term DMA
Created By TohMz
*************************************************************************************************/
_SECTION_BEGIN("DMA3x3");
Periods = 3;
Displace = 3;
Plot( MA( C, Periods), _DEFAULT_NAME(), ParamColor( "Color", colorRed ), ParamStyle("Style", styleLine, maskDefault|styleDots), Null, Null, Displace );
_SECTION_END();
_SECTION_BEGIN("DMA7x5");
P = C;
Periods = 7;
Displace = 5;
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorBlue ), ParamStyle("Style", styleDashed, maskDefault|styleDots), Null, Null, Displace );
_SECTION_END();
_SECTION_BEGIN("DMA25x5");
P = C;
Periods = 25;
Displace = 5;
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorGreen ), ParamStyle("Style", styleDashed, maskDefault|styleDots), Null, Null, Displace );
_SECTION_END();
//*** Remove below portion, so that you can attach to any price chart ***
_N(Title = StrFormat("{{NAME}}- {{INTERVAL}} {{DATE}} O= %g, H= %g, L= %g, C= %g (%.1f%%) V= " +WriteVal( V, 1.0 ) +"\n{{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));
PriceStyle = GetPriceStyle();
PriceStyleOpt = ParamStyle("Style") | PriceStyle;
if (PriceStyle==styleCandle)
Plot( C, "", colorBlack, PriceStyleOpt);
else
Plot( C, "", IIf( Close >= Ref(C, -1), colorBlue, colorRed ), PriceStyleOpt);
2楼
我试导入了但不能使用
见好就收!
3楼
帝纳波利黄金率交易法基础
一、黄金率交易法基本概念和术语
你应该明白,本课程并不是关于基础技术分析的,而是教授我发现的一种既谨慎又高效的,一种模块化的综合判断式交易方法。虽然我总是试图从基础的理解水平来开始我的论述,但我设想你们对一些众所周知的技术工具的使用知识都有所了解。如果你不理解移动平均线(Moving Averages)、随机指标(Stochastics)、平滑异同移动平均线(MACD)、相对强弱指数(RSI)或价格-时间图表的一般外观,在往下继续学习之前,你可以先查阅一下有关的技术分析参考书籍。
基本概念和定义:
试图理解我的交易方法之前,我们必须确认我们翻开的是同一页书,也就是说,对我们来说某些词汇和概念具有相同含义。为了强调我解释的每个词汇的具体含义,在全课程中它们始终以黑体字表示,如趋势,方向和运行等等。
■趋势(Trend):
教学的时候,我最喜欢问的一个问题是,“标准普尔指数、债券或者其他什么等等的目前趋势如何?”我得到的答案无非是,“向上,向下,或横向。” 学生们很少会问我,“在什么时间范围内?”如果不定义时间范围,“某某市场……目前的趋势”这个问题就没有意义。
下面是一系列四个图表。让我们把置换移动平均线(Displaced Moving Average,DMA)复加在这些图表之上作为趋势描述指标。该置换移动平均线的长度或类型无关紧要,紧要的是我们对趋势的定义。如果我们把上升趋势定义为置换移动平均线上方的收盘,把下降趋势定义为置换移动平均线下方的收盘,你会看到2月28日同一天收市时的各种走势报告。十五分钟图表中债券处于上升趋势,但在日线图表中为下降趋势。在周线图上是下降趋势,但是在月线图上是上升趋势。如果你的交易方式将趋势作为其定义特征的一部分,而你不清楚你交易的时间范围的话,你就会迷失。