[ARCHIVE] フォーラムを散らかさないように、どんなルーキーでも質問してください。プロフェッショナルは、通り過ぎないでください。Nowhere without you - 3. - ページ 651

 
TarasBY:

注文の開始時刻と5分足のローソク足の開始時刻を比較します。

いただいたご意見は、しっかりと受け止めたいと思います。OrderOpenPriceではなく、OrderOpenTimeにすべきだと思います。
 
paladin80: いただいたご意見は、しっかりと受け止めたいと思います。OrderOpenPriceではなく、OrderOpenTimeにすべきだと思います。
正解!!!- もちろんです。
 

DRAW_HISTOGRAMと格闘するのに疲れた、サブウィンドウにバーを描きたい、DRAW_HISTOGRAMの操作方法を思い出せない、バーの下の塗りつぶしが できない

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Blue
#property indicator_width1 2
#property indicator_width2 2
//--- buffers
double bufup[],bufdn[];
//+------------------------------------------------------------------+
int init(){
   SetIndexStyle(0,DRAW_HISTOGRAM);
   SetIndexBuffer(0,bufup);
   SetIndexStyle(1,DRAW_HISTOGRAM);
   SetIndexBuffer(1,bufdn);
   IndicatorDigits(2);
return(0);
}
//+------------------------------------------------------------------+
int deinit(){
return(0);
}
//+------------------------------------------------------------------+
int start(){
   int    i,limit,counted_bars;
   counted_bars=IndicatorCounted();
   if(counted_bars>0) counted_bars--;
   limit=Bars-counted_bars;
   for(i=limit; i>=0; i--){
      bufup[i] = High[i];
      bufdn[i] = Low[i];
   }
return(0);
}
//+------------------------------------------------------------------+
 
EMPTY_VALUEとして バッファを明示的にゼロに設定し、底面を下支えする3番目の描画しないバッファを必要とします。
 
FAQ: で、下を支えるために3つ目の描画しないバッファが必要です。

そうだ!あとは思い出すだけだ、一度やったんだから。

ZS: そろそろ新しいトピックを立てませんか?新しいポストを追加すると、フォーラムの動作が遅くなるんです

なのかもしれませんね。

#property indicator_separate_window
#property indicator_buffers 3
#property indicator_color1 Red
#property indicator_color2 Blue
#property indicator_width1 2
#property indicator_width2 2
#property indicator_width3 2
//--- buffers
double bufup[],bufdn[],bufnone[];
//+------------------------------------------------------------------+
int init(){
   SetIndexStyle(0,DRAW_HISTOGRAM);
   SetIndexBuffer(0,bufup);
   SetIndexStyle(1,DRAW_HISTOGRAM);
   SetIndexBuffer(1,bufdn);
   SetIndexBuffer(2,bufnone);
   SetIndexStyle(2,DRAW_HISTOGRAM);
return(0);
}
//+------------------------------------------------------------------+
int deinit(){
return(0);
}
//+------------------------------------------------------------------+
int start(){
   int    i,limit,counted_bars;
   counted_bars=IndicatorCounted();
   if(counted_bars>0) counted_bars--;
   limit=Bars-counted_bars;
   for(i=limit; i>=0; i--){
      bufup[i] = High[i];
      bufdn[i] = Low[i];
      bufnone[i] =Low[i];
   }
return(0);
}
//+------------------------------------------------------------------+
 
IgorM:

ZS: そろそろ新しいトピックを作らないか、新しい記事を入れると掲示板が遅くなる


そうですね、新しい スレッドが立ちましたね。

ユーザー : それ以降の投稿は警告なしに削除されます。

皆さん!トピックのタイトルに「[アーカイブ]」という言葉がある場合は、このスレッドに書き込まないでください!

 
ユーザーlogan78は 、未読とスパムのため、バナーに送られました。
 
sannin:


24時間禁止
 
serjlarkinは 逆コンパイルと読み込み失敗で24時間禁止されました。
 
Good afternoon
need a hint


if(Send_Notification&&TimeCurrent()>=time+10)とする。{time=TimeCurrent();SendNotification('BUY');} これは私が書いたものです
私は通知が10秒以上行かないようにする必要があります
そして次のシグナルまでちょうど停止します
通知が停止しないのは何が問題ですか
あなたは提案できますか
それは単にサインについてより少ないですか?