マルチタイムフレーム・インディケーター - ページ 922

 

これらのスクリプトを見つけることができません。売買スクリプトには、毎回の取引0.1ロットとトレーリングストップ10ピップのみが含まれています。

 
beco616161:
これらのスクリプトを見つけることができません。売買スクリプトには、毎回の取引0.1ロットとトレーリングストップ10ピップのみが含まれています.私を助けてください?

同じ質問の投稿はこちらに移動しました :https://www.mql5.com/en/forum/173386

そのスクリプトを確認することができます。

 

HEİKENASHİ3 the indicatör.but I can't code arrow on this indikatör.please help me.私は HEIKENASHI3を設立しました。

ファイル:
gbpusdm4.png  39 kb
 
beco616161:
heikenashi3.ex4Mladen nobody answer me.please help me. HEİKENASHİ3 the indicatör.but I can't code arrow on this indikatör.please help me.を設立したのですが、このインディケータで矢印をコーディングすることができません。

Beco616161, インジケータを変更できるようにするには、オリジナルのソースコードmt4(逆コンパイルされていない)が必要です。

 

どなたかこのインジケータをMTF化していただけませんか?

よろしくお願いします。

ファイル:
weiswave3_1.mq4  10 kb
 

MRTOOLSは、ヘルプのために非常に感謝します。私はコードを設立しました。

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

//|Heiken Ashi.mq4||MetaQuotes Software Corp.

|| Copyright 2004, MetaQuotes Software Corp.|

||MetaTrader 5 Trading Platform / MetaQuotes Software Corp.|

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

//| ハイケン・アシには次のチャート設定をお勧めします。

//| メニューの'Charts'->'Properties...'を選択してください。) |

//| カラー'タブで'折れ線グラフ'に'黒'を選択します。

//| 共通'タブで'前景にグラフ'チェックボックスを無効にして、'線グラフ'を選択します。

//| 線グラフ'ラジオボタンを選択します。

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

#property copyright "著作権 2004, MetaQuotes Software Corp."

#property リンク "http://www.metaquotes.net"

#property indicator_chart_window(インジケーターチャートウィンドウ

#property indicator_buffers 4

#property indicator_color1 レッド

#property indicator_color2 ブルー

#property indicator_color3 レッド

#property indicator_color4 青

//---- バッファ

double ExtMapBuffer1[];

double ExtMapBuffer2[];

double ExtMapBuffer3[];

double ExtMapBuffer4[];

//----

int ExtCountedBars=0;

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

//| カスタムインジケータ初期化関数

//|------------------------------------------------------------------|

int init()

{

//---- インジケータ

SetIndexStyle(0,DRAW_HISTOGRAM, 0, 1, 赤) を設定します。

SetIndexBuffer(0, ExtMapBuffer1).SetIndexStyle(0,DRAW_HISTOGRAM)を設定します.

SetIndexStyle(1,DRAW_HISTOGRAM, 0, 1, Blue).を設定します。

SetIndexBuffer(1, ExtMapBuffer2); SetIndexStyle(1, DRAW_HISTOGRAM, 0, 1, 青);

SetIndexStyle(2,DRAW_HISTOGRAM, 0, 3, 赤);

SetIndexBuffer(2, ExtMapBuffer3);

SetIndexStyle(3,DRAW_HISTOGRAM, 0, 3, 青);

SetIndexBuffer(3, ExtMapBuffer4);

//----

SetIndexDrawBegin(0,10);

SetIndexDrawBegin(1,10)を設定します。

SetIndexDrawBegin(2,10)を設定します。

SetIndexDrawBegin(3,10);

//---- インジケータ・バッファのマッピング

SetIndexBuffer(0,ExtMapBuffer1)を設定します。

SetIndexBuffer(1,ExtMapBuffer2)を設定します。

SetIndexBuffer(2,ExtMapBuffer3)を設定します。

SetIndexBuffer(3,ExtMapBuffer4)を設定します。

//---- 初期化完了

return(0);

}

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

//| カストマーインディケーター初期化関数

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

int deinit()

{

//---- TODO: ここにあなたのコードを追加してください。

//----

return(0);

}

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

//| カスタムインジケーターイテレーション関数

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

int start()

{

double haOpen, haHigh, haLow, haClose;

if(Bars<=10) return(0);

ExtCountedBars=IndicatorCounted();

//---- エラーの可能性をチェック

if (ExtCountedBars<0)戻り値(-1);

//---- 最後にカウントされたバーが再カウントされる

if (ExtCountedBars>0) ExtCountedBars--;

int pos=Bars-ExtCountedBars-1;

while(pos>=0)

{

haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;

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

haHigh=MathMax(High[pos], MathMax(haOpen, haClose)).High[pos]は、High[pos]を意味する。

haLow=MathMin(Low[pos], MathMin(haOpen, haClose));

if (haOpen<haClose)

{

ExtMapBuffer1[pos]=haLow;

ExtMapBuffer2[pos]=haHigh。

}

さもなくば

{

ExtMapBuffer1[pos]=haHigh;

ExtMapBuffer2[pos]=haLow。

}

ExtMapBuffer3[pos]=haOpen;

ExtMapBuffer4[pos]=haClose。

pos--。

}

//----

return(0);

}

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

 

このインジケーターをmtfに作ってください。ありがとうございました。

ファイル:
 
beco616161:
MRTOOLSは非常にhelp.iのおかげでコードを設立しました。

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

//|Heiken Ashi.mq4||Copyright 2004 MetaQuotes Software Corp.

|| Copyright 2004, MetaQuotes Software Corp.|

||MetaTrader 5 Trading Platform / MetaQuotes Software Corp.|

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

//| ハイケン・アシには次のチャート設定をお勧めします。

//| メニューの'Charts'->'Properties...'を選択してください。) |

//| カラー'タブで'折れ線グラフ'に'黒'を選択します。

//| 共通'タブで'前景にグラフ'チェックボックスを無効にして、'線グラフ'を選択します。

//| 線グラフ'ラジオボタンを選択します。

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

#property copyright "著作権 2004, MetaQuotes Software Corp."

#property リンク "http://www.metaquotes.net"

#property indicator_chart_window(インジケーターチャートウィンドウ

#property indicator_buffers 4

#property indicator_color1 レッド

#property indicator_color2 ブルー

#property indicator_color3 レッド

#property indicator_color4 青

//---- バッファ

double ExtMapBuffer1[];

double ExtMapBuffer2[];

double ExtMapBuffer3[];

double ExtMapBuffer4[];

//----

int ExtCountedBars=0;

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

//| カスタムインジケータ初期化関数

//|------------------------------------------------------------------|

int init()

{

//---- インジケータ

SetIndexStyle(0,DRAW_HISTOGRAM, 0, 1, 赤) を設定します。

SetIndexBuffer(0, ExtMapBuffer1).SetIndexStyle(0,DRAW_HISTOGRAM)を設定します.

SetIndexStyle(1,DRAW_HISTOGRAM, 0, 1, Blue).を設定します。

SetIndexBuffer(1, ExtMapBuffer2); SetIndexStyle(1, DRAW_HISTOGRAM, 0, 1, 青);

SetIndexStyle(2,DRAW_HISTOGRAM, 0, 3, 赤);

SetIndexBuffer(2, ExtMapBuffer3);

SetIndexStyle(3,DRAW_HISTOGRAM, 0, 3, 青);

SetIndexBuffer(3, ExtMapBuffer4);

//----

SetIndexDrawBegin(0,10);

SetIndexDrawBegin(1,10)を設定します。

SetIndexDrawBegin(2,10)を設定します。

SetIndexDrawBegin(3,10);

//---- インジケータ・バッファのマッピング

SetIndexBuffer(0,ExtMapBuffer1)を設定します。

SetIndexBuffer(1,ExtMapBuffer2)を設定します。

SetIndexBuffer(2,ExtMapBuffer3)を設定します。

SetIndexBuffer(3,ExtMapBuffer4)を設定します。

//---- 初期化完了

return(0);

}

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

//| カストマーインディケーター初期化関数

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

int deinit()

{

//---- TODO: ここにあなたのコードを追加してください。

//----

return(0);

}

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

//| カスタムインジケーターイテレーション関数

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

int start()

{

double haOpen, haHigh, haLow, haClose;

if(Bars<=10) return(0);

ExtCountedBars=IndicatorCounted();

//---- エラーの可能性をチェック

if (ExtCountedBars<0)戻り値(-1);

//---- 最後にカウントされたバーが再カウントされる

if (ExtCountedBars>0) ExtCountedBars--;

int pos=Bars-ExtCountedBars-1;

while(pos>=0)

{

haOpen=(ExtMapBuffer3[pos+1]+ExtMapBuffer4[pos+1])/2;

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

haHigh=MathMax(High[pos], MathMax(haOpen, haClose)).High[pos]は、High[pos]を意味する。

haLow=MathMin(Low[pos], MathMin(haOpen, haClose));

if (haOpen<haClose)

{

ExtMapBuffer1[pos]=haLow;

ExtMapBuffer2[pos]=haHigh。

}

さもなくば

{

ExtMapBuffer1[pos]=haHigh;

ExtMapBuffer2[pos]=haLow。

}

ExtMapBuffer3[pos]=haOpen;

ExtMapBuffer4[pos]=haClose。

pos--。

}

//----

return(0);

}

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

Beco616161、アラートと矢印を追加しました。

 
mrtools:
Beco616161、アラートと矢印を追加しました。

MRTOOLSにとても感謝していますが、これらのheiken ashi シグナルは私が望むようなものではありません。

絵を見てください。助けてください。

ファイル:
gbpusdm4_1.png  40 kb
 
split15:
誰かこのインジケータをMTFにしてくれないかな。

使い物にならない。リペイントが酷く、MTFでもリペイントしてしまう。