Jurik - 页 16

 

双线JurikMACD

双线JurikMACD指标也在某处列出吗? 谢谢。

 

这是所有的MACD,我从其中一套中得到的。可能是。还有其他的一套有更多的MACD ...

附加的文件:
macd_1.gif  29 kb
 

两行JurikMACD

谢谢你的及时回复。我很惊讶你必须努力工作,阅读,回复,管理,创意.......,是灵感的来源。

 

JStochastic线程

JStochastic Threads with JStochastic (6,3,3) to JStochastic (24,3,3)

将模板放在模板文件夹中,而不是放在指标文件夹中。

你需要将JStochastic.mq4放在指标文件夹下,而

JJMASeries.mqh, PriceSeries.mqh在include文件夹中。

编辑。

附上关于如何交易斯托克线程的文件。

附加的文件:
 

newdigital 来说,我计划在JfatlSpeed 指标中加入 一个警报,但我不懂俄语。当我使用Babel翻译器时,我得到了一些相同的翻译,如Heiken Ashi Close和TRENDFOLLOW。参数#7与#14相同:Heiken Ashi Close。而#9和#10是相同的:TRENDFOLLOW。你能不能再重新翻译一下?先谢谢了。

External int Input_Price_Customs = 0;//Input of prices, on which is produced the calculation of the indicator:

//(0-CLOSE, 1-OPEN, 2-HIGH, 3-LOW, 4-MEDIAN, 5-TYPICAL, 6-WEIGHTED, 7-HYKEN ASHI Close, 8-SIMPL, 9-TRENDFOLLOW, 10-0.5*TRENDFOLLOW,

/11-海肯阿西低点,12-海肯阿西高点,13-海肯阿西开盘,14-海肯阿西收盘。)

附上JFatlSpeed的混乱的英文版本

附加的文件:
 
banzai:
对于newdigital,我计划在JfatlSpeed 指标中加入 一个警报,但我不懂俄语。当我使用Babel翻译器时,我得到了一些相同的翻译,如Heiken Ashi Close和TRENDFOLLOW。参数#7与#14相同:Heiken Ashi Close。而#9和#10是相同的:TRENDFOLLOW。你能不能再重新翻译一下?先谢谢你。

Extern int Input_Price_Customs = 0;//Input of prices, on which is produced the calculation of the indicator:

//(0-CLOSE, 1-OPEN, 2-HIGH, 3-LOW, 4-MEDIAN, 5-TYPICAL, 6-WEIGHTED, 7-Heiken Ashi Close, 8-SIMPL, 9-TRENDFOLLOW, 10-0.5*TRENDFOLLOW,

/11-海肯阿西低点,12-海肯阿西高点,13-海肯阿西开盘,14-海肯阿西收盘。)

附上混乱的JFatlSpeed英文版本

这个JFatlSpeed指标是使用JFatl指标作为自定义的。这就是为什么你感到困惑。

这是JFatlSpeed中对JFatl的设置。

Length = 3; // depth of smoothing for JFatl;

Phase = 100; // parameter which is changed withing -100 ... +100, it's affecting on the transient process quality for JFatl indicator;[/CODE]

It is the setting for JFatlSpeed itself:

LengthS = 1; // depth of smoothing for resultant JFatlSpeed indicator;

PhaseS = 100; // parameter which is changed withing -100 ... +100, it's affecting on the transient process quality for JFatlSpeed indicator;[/CODE]

extern int Input_Price_Customs.

This Input_Price_Customs came from PriceSeries.mqh file.

As to #7 is the same as #14 so I don't know. I am not the coder so you may see about those numbers from here (all numbers):

case 0: dPriceSeries = Close[nPriceSeries.Bar];break;

case 1: dPriceSeries = Open [nPriceSeries.Bar];break;

case 2: dPriceSeries =(High [nPriceSeries.Bar]+Low [nPriceSeries.Bar])/2;break;

case 3: dPriceSeries = High [nPriceSeries.Bar];break;

case 4: dPriceSeries = Low [nPriceSeries.Bar];break;

case 5: dPriceSeries =(Open [nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;

case 6: dPriceSeries =(Open [nPriceSeries.Bar]+Close[nPriceSeries.Bar])/2;break;

case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;

case 8: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;

case 9: dPriceSeries = TrendFollow00(nPriceSeries.Bar);break;

case 10: dPriceSeries = TrendFollow01(nPriceSeries.Bar);break;

case 11: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",0,nPriceSeries.Bar);break;

case 12: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",1,nPriceSeries.Bar);break;

case 13: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",2,nPriceSeries.Bar);break;

case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;

So if

[CODE]case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;

is the same with

[CODE]case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;

所以它可能是相同的。我无法估计,抱歉。

这里的3是什么? iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar)。

我翻译了一些JFatlSpeed指标(可能与你的不同,但可以理解)。

附加的文件:
 
newdigital:

.....

extern int Input_Price_Customs.

这个Input_Price_Customs来自PriceSeries.mqh文件。

至于#7和#14是一样的,所以我不知道。我不是编码员,所以你可以从这里看到这些数字(所有数字)。

case 0: dPriceSeries = Close[nPriceSeries.Bar];break;

case 1: dPriceSeries = Open [nPriceSeries.Bar];break;

case 2: dPriceSeries =(High [nPriceSeries.Bar]+Low [nPriceSeries.Bar])/2;break;

case 3: dPriceSeries = High [nPriceSeries.Bar];break;

case 4: dPriceSeries = Low [nPriceSeries.Bar];break;

case 5: dPriceSeries =(Open [nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;

case 6: dPriceSeries =(Open [nPriceSeries.Bar]+Close[nPriceSeries.Bar])/2;break;

case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;

case 8: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar]+Close[nPriceSeries.Bar])/4;break;

case 9: dPriceSeries = TrendFollow00(nPriceSeries.Bar);break;

case 10: dPriceSeries = TrendFollow01(nPriceSeries.Bar);break;

case 11: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",0,nPriceSeries.Bar);break;

case 12: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",1,nPriceSeries.Bar);break;

case 13: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",2,nPriceSeries.Bar);break;

case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;[/CODE]

So if

case 7: dPriceSeries =(Close[nPriceSeries.Bar]+High [nPriceSeries.Bar]+Low[nPriceSeries.Bar])/3;break;[/CODE]

is the same with

case 14: dPriceSeries = iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);break;

so it may be the same. I can not estimate, sorry.

What is 3 in here? iCustom(NULL,0,"Heiken Ashi#",3,nPriceSeries.Bar);

And this PriceSeries.mqh file is using Heiken Ashi#.mq4 indicator (attached). And 3 in this indicator is price close calculated as the following:

[CODE]haClose=(Open+High+Low+Close)/4;

它是Input_Price_Customs=14。

Input_Price_Customs=7。

[CODE]dPriceSeries =(Close[nPriceSeries.Bar]+High[nPriceSeries.Bar]+Low[nPriceSeries.Bar]) /3;break;

所以,7号和14号的计算是不同的。

附加的文件:
 

JFatl_Trendsignal设置

现在我知道如何设置JFatl_Trendsignal 了。如果你设置3c_JFatl的长度4,那么在JFatl_Trendsignal中,你把Smooth 也设置为4。现在你可以看到箭头指向了相应的转折点。对于箭头符号,使用WingDings字体 即可。

附加的文件:
 

这里的电子书将告诉你如何使用这些Jurik指标中的一些。也有一些策略。

附加的文件:
jurik.pdf  540 kb
 
banzai:
这里有一本电子书,将告诉你如何使用这些Jurik指标。也有一些策略。

那辆RSX看起来很不错。不知道它与R2战略的关系如何。我猜想JRSX应该和RSX一样。

知道如何改变RSX以使用 "改善性能 "的参数 吗?