質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
MQL4

MQL4とは、MT4(MetaTrader4)で用いられるプログラム言語です。MT4は無料で使えるチャートソフトあり、MQL4を使うことで分析ツールのオリジナルスクリプトの作成ができます。

Q&A

解決済

2回答

3477閲覧

MT4のサインインジケーターのアラートの音と共にメッセージ付きのポップアップウィンドウを表示したい

marupon

総合スコア12

MQL4

MQL4とは、MT4(MetaTrader4)で用いられるプログラム言語です。MT4は無料で使えるチャートソフトあり、MQL4を使うことで分析ツールのオリジナルスクリプトの作成ができます。

0グッド

0クリップ

投稿2020/03/28 22:15

編集2020/03/30 16:06

下のコードのどの部分をどのように修正すればサインが出たときにアラートが
音と共にメッセージ付きのポップアップウィンドウを表示できますか
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Blue
#property indicator_color2 Red
#property indicator_color3 Blue
#property indicator_color4 DodgerBlue

#include <WinUser32.mqh>
//---- input parameters
extern int FastEMA=14;
extern int SlowEMA=21;
extern int RSIPeriod=17;
extern bool Alerts=false;

//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
//double rsi_sig[];
//---- variables
int sigCurrent=0;
int sigPrevious=0;
double pipdiffCurrent=0;
double pipdiffPrevious=0;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE,1,3);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(2,DRAW_ARROW,1,2);
SetIndexArrow(2,233);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexEmptyValue(2,0.0);
SetIndexStyle(3,DRAW_ARROW,1,2);
SetIndexArrow(3,234);
SetIndexBuffer(3,ExtMapBuffer4);
SetIndexEmptyValue(3,0.0);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
double rsi_sig=0;
bool entry=false;
double entry_point=0;

//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;

//---- main loop
for(int i=0; i<limit; i++)
{
//---- ma_shift set to 0 because SetIndexShift called abowe
ExtMapBuffer1[i]=iMA(NULL,0,FastEMA,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer2[i]=iMA(NULL,0,SlowEMA,0,MODE_EMA,PRICE_CLOSE,i);
rsi_sig = iRSI(NULL, 0, RSIPeriod, PRICE_CLOSE, i);

pipdiffCurrent=(ExtMapBuffer1[i]-ExtMapBuffer2[i]); Comment("pipdiffCurrent = "+pipdiffCurrent+" "); if (pipdiffCurrent>0 && rsi_sig>50) { sigCurrent = 1; //Up } else if (pipdiffCurrent<0 && rsi_sig<50) { sigCurrent = 2; //Down }

/*
if (pipdiffCurrent>0)
{
sigCurrent = 1; //Up
}
else if (pipdiffCurrent<0)
{
sigCurrent = 2; //Down
}
*/

if (sigCurrent==1 && sigPrevious==2) { ExtMapBuffer4[i-1] = High[i-1]+10*Point; //ExtMapBuffer3[i] = Ask; entry=true; entry_point=Ask; } else if (sigCurrent==2 && sigPrevious==1) { ExtMapBuffer3[i-1] = Low[i-1]-10*Point; //ExtMapBuffer4[i] = Bid; entry=true; entry_point=Bid; } sigPrevious=sigCurrent; pipdiffPrevious=pipdiffCurrent;

}

//----
if(Alerts && entry)
{

if (sigPrevious==1) { MessageBox("Entry point: buy at "+entry_point+"!!", "Entry Point", MB_OK); } else if (sigPrevious==2) { MessageBox("Entry point: sell at "+entry_point+"!!", "Entry Point", MB_OK); } entry=false;

}
RefreshRates();

//----
return(0);
}
//+------------------------------------------------------------------+

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答2

0

ベストアンサー

アラートがなるということはAlert関数が呼ばれる条件になっているということです。
start関数は初回は全バーに対して計算を行い、その後はティック毎に呼ばれます。
ソースを見た感じでは、初回の全バーに対して計算を行ったときにアラートの条件になってしまうように見えます。

投稿2020/04/18 03:40

mah

総合スコア591

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

marupon

2020/04/18 03:47

回答ありがとうございます。サインが出たときだけアラートが鳴るようにするには、ソースコードのどの部分をどのようにすれば良いでしょうか? 具体的にソースコードのを教えていただけないでしょうか?
mah

2020/04/18 04:35

このインジケータは最新のバーから過去にむかって計算をしていますよね? なので、sigPrevious変数は前回値=本来のトレード中は知り得ない未来のバーの条件なので、 ちょっと変更して同様に動かすというのは難しそうな気がします。
marupon

2020/04/26 22:12

回答ありがとうございます。難しいですか。 わかりました。ありがとうございます
guest

0

MessageBox関数のかわりにAlert関数を呼べばアラートが出ます。

投稿2020/04/16 05:17

mah

総合スコア591

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

marupon

2020/04/18 03:13

回答ありがとうございます。MessageBoxのところにAlertに変更してアラートなるのですが、サインが出てないときにもなってしまうのはなぜでしょうか?
mah

2020/04/18 03:41

アラートがなるということはAlert関数が呼ばれる条件になっているということです。 start関数は初回は全バーに対して計算を行い、その後はティック毎に呼ばれます。 ソースを見た感じでは、初回の全バーに対して計算を行ったときにアラートの条件になってしまうように見えます。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問