ジュリック - ページ 16

 

2本線のJurikMACD

2本線のJurikMACDもどこかに載っているのでしょうか? ありがとうございます。

 

それは私がセットの1つから持っているすべてのMACD です。

ファイル:
macd_1.gif  29 kb
 

二行目 JurikMACD

読書、返信、管理、創作......インスピレーションの源であるあなたがどれほど大変な作業をしているか、私は驚いているのです。

 

JStochasticスレッド

JStochastic (6,3,3) から JStochastic (24,3,3) を使用したスレッドです。

テンプレートはインジケータフォルダではなく、テンプレートフォルダに配置してください。

インジケータフォルダにあるJStochastic.mq4と

JJMASeries.mqh、PriceSeries.mqhをインクルードフォルダに入れてください。

編集してください。

Stoch Threadsのトレード方法に関するドキュメントを添付します。

ファイル:
 

newdigital さんへ、JfatlSpeedの インジケーターにアラートを 入れる 予定ですが、ロシア語がわかりません。Babel translatorを使うと、Heiken Ashi CloseやTRENDFOLLOWなど、同じ訳がいくつか出てきました。パラメータ#7は#14と同じHeiken Ashi Close。そして、#9と10は同じです:TRENDFOLLOW。とにかくもう一度再翻訳してください。よろしくお願いします。

extern int Input_Price_Customs = 0;// インジケーターの計算を行うための価格を入力します。

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

/11-Heiken Ashi Low, 12-Heiken Ashi High, 13-Heiken Ashi Open, 14-HeikenAshi Close.)

アタシはJFatlSpeedのメチャクチャな英語版

ファイル:
 
banzai:
newdigitalに、私はJfatlSpeedの インジケータにアラートを 追加 する予定ですが、私はロシア語を知りません。Babel translatorを使うと、Heiken Ashi CloseやTRENDFOLLOWなど、同じ訳がいくつか出てきました。パラメータ#7は#14: Heiken Ashi Closeと同じです。そして、#9と10は同じです:TRENDFOLLOW。とにかくもう一度再翻訳してください。ありがとうございました。

extern int Input_Price_Customs = 0;//インジケーターの計算の元となる価格を入力します。

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

//11-Heiken Ashi Low, 12-Heiken Ashi High, 13-Heiken Ashi Open, 14-HeikenAshi Close.)

添付は、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を "Improved Performance "パラメータを 使うように変更する方法はありますか?