ノン・ラギング・ツール - ページ 39

 

青と赤のローソク足用のインジケーターはありますか?

青と赤のローソク足用のインジケータはありますか?

 
bigsteely101:
そして、私が説明した戦略でEur/USDで作動するロングとショートのトリガーのいくつかのスクリーンショットを追加しようと思いました。 このサイトはFX取引で人気のあるサイトなのでしょうか、それとも私が問い合わせるべき他のサイトがあるのでしょうか? MTF non lag moving average indicatorがイゴラドによってここで開発されたことを考えると、このサイトが一番良いのではないかと思いました。 残念ながら、私はこのサイトの新メンバーで、Igoradに直接コンタクトを取ることができません。 そこで、先ほどの条件を満たした場合に、ロングとショートのトリガーが発生する場所を示したスクリーンショットを添付します。 縦線(赤=ショート、緑=ロング)は、3本(細い線)または4本(太い線)のMTF Non lag MAラインが同じ方向に動き始めたときを表しています。 追加したスクリーンショットで、この設定の可能性が伝われば幸いです!

このインジケータは何ですかplz

ありがとうございます。

 
mrtools:
このアラート付きの非遅延ブルズベアーズマルチタイムフレームは、その有用かどうかを決定できませんでした、多分あなたはすべての決定することができます。

こんにちは、mrtoolsです。

このインジケータはとても便利で、自分でもEAをコーディングしています。ブルズとベアーズのシグナルを抽出していただくことは可能でしょうか?私のEAに実装して試してみたいのです。

もし私のEAをテストしたいのであれば、PMを通してリンクを送ります。

よろしくお願いします。

Banzak

 
banzak:
こんにちは、mrtoolsです。

このインジケーターはとても便利で、自分でもEAをコーディングしています。そこで質問です。ブルズとベアーズのシグナルを抽出していただくことは可能でしょうか?私のEAに実装して試してみたいのです。

もし私のEAをテストしたいのであれば、PMを通してリンクを送ります。

よろしくお願いします。

バンザック

こんにちは、Banzakです。

私が正しく理解していればいいのですが、私はmtfとalertsを削除 しました。

ファイル:
 
mrtools:
こんにちは、Banzak、私が正しく理解していることを願って、私はmtfとalertsを削除しました。

mrtoolsさん、こんにちは。

このインジケータを直接自分のEAに組み込みたいのですが、もしこのインジケータに

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

必要なのはNonlagを使った拡張機能なのですが・・・。

よろしくお願いします。

Banzak

 
banzak:
こんにちはmrtools。

このインジケータを直接自分のEAに組み込みたいので、質問ですが、もし私が取る

nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);

bears = nlm - Low;

bulls = High - nlm;

trend = trend;

if (bulls > bears) trend = 1;

if (bulls < bears) trend =-1;[/CODE]

and adapt it only for the actual value - this only 50%, cause in the

double iNonLagMa(double price, double length, int r, int instanceNo=0)

-function there is a lot of stuff I didn't really unterstand at the moment..

The code above it's a normal calculation for bears & bulls. It's look in my ea like this:

[CODE]//+------------------------------------------------------------------+

// Function Bears_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BearsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bears;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bears = iLow(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bears);

//+-- End of Result

}

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

// Function Bulls_Get() - Indicator |

//+------------------------------------------------------------------+

//+------------------------------------------------------------------+

//| Input parameters: |

//| symbol - Symbol. |

//| timeframe - Timeframe. |

//| BullsPeriod - Period for calculation |

//| Shift - Index of the value taken from the indicator buffer. |

//+------------------------------------------------------------------+

double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)

{

//+-- Definition of Variables

double Temp, Bulls;

//+-- End of Definition

//+-- Function-Body

if (symbol=="" || symbol=="0") symbol=Symbol();

Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);

Bulls = iHigh(symbol,timeframe,Shift)-Temp;

//+-- End of Body

//+-- Function-Result

return(Bulls);

//+-- End of Result

}

//+------------------------------------------------------------------+

必要なのはNonlagを使った拡張機能なのですが・・・。

を参照してください。

Banzak

Banzak、私は知っていると思うが、アドバイスを与えるために十分なそれについて十分に確信していない、それはEaでどのように動作するでしょう、私にはちょうどトレンドバッファ><ゼロを使用して、ちょうど指標を呼び出すために周りのすべての方法がはるかに簡単です。

 
mrtools:
このインジケータは、トレンドバッファ><ゼロを使用して、インジケータを呼び出すだけで、すべての方法がはるかに簡単です。

こんにちは。

plsは、私は青と黄色の線が互いに交差するときに、この指標で矢印が欲しい私を助ける

ファイル:
 

ノン・ラグのヒストで、誰かメソッド/モードを追加してください。

クイックトライしてみましたが、何も変わらないので、どこか欠けているのでしょう。

ありがとうございました

非ラグ_マ_ヒスト_mtfalerts.mq4

ファイル:
 

モードが追加された(と思う)

モードが追加されましたが、あまり違いはありません。

ノンラグ_マ_ヒスト_ムトファラート.1.mq4

ファイル:
 

ツールズさん、ありがとうございます。

ただ、私のシステムのための最後のインジを見つけようとしています。

それからコードを勉強しようと思っています。

理由: