MT4 スローストキャスティクス
fhat6014様
以前、教えていただいたのですが、下記プログラム一つに(1)Alertを鳴らす(2)Soundを1度鳴らす(3)Soundを鳴らし続けるという設定を一まとめにできるのでしょうか。ご教授願います。
#property indicator_separate_window
#property indicator_minimum 0
#property indicator_maximum 100
#property indicator_buffers 3
#property indicator_color1 Lime
#property indicator_color2 Red
//---- input parameters
extern int PK=42;
extern int PD=3;
extern int PS=3;
//---- buffers
double k[];
double d[];
//| Custom indicator initialization function |
int init()
{
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,k);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1,d);
return(0);
}
//| Custom indicator iteration function |
int start()
{
int counted_bars=IndicatorCounted();
int shift,limit;
if (counted_bars<0) return(-1);
if (counted_bars>0) counted_bars--;
limit=Bars-PK-1;
if(counted_bars>=PK) limit=Bars-counted_bars-1;
for (shift=limit;shift>=0;shift--) {
d[shift]=(iStochastic(NULL,0,PK,PD,PS,MODE_SMA,1,MODE_SIGNAL,shift)+iStochastic(NULL,0,PK,PD,PS,MODE_SMA,1,MODE_SIGNAL,shift+1)+iStochastic(NULL,0,PK,PD,PS,MODE_SMA,1,MODE_SIGNAL,shift+2))/3.0;
k[shift]=(iStochastic(NULL,0,PK,PD,PS,MODE_SMA,1,MODE_MAIN,shift)+iStochastic(NULL,0,PK,PD,PS,MODE_SMA,1,MODE_MAIN,shift+1)+iStochastic(NULL,0,PK,PD,PS,MODE_SMA,1,MODE_MAIN,shift+2))/3.0;
}
return(0);
}
お礼
回答ありがとうございます。 すっきりしました。 これで落ち着いてインジゲーターを作れます。 ありがとうございました。