インディケータ: DarvasBoxes_System_HTF

 

DarvasBoxes_System_HTF:

入力パラメータでの時間枠選択オプションを持つDarvasBoxes_System指標

図1 DarvasBoxes_System_HTF指標

作者: Nikolay Kositsin

 

こんにちは!

なぜ1日入力、1時間チャートでテストできないかわかりますか?

 

こんにちは!

このエラーについてどなたか教えてください。

if(CopyTime(Symbol_,TimeFrame,iTime[bar],1,IndTime)<=0) return(RESET);

      //---

      if(iTime[bar]>=IndTime[0] && iTime[bar+1]<IndTime[0])

        {

         LastCountBar[Numb]=bar;

         double Arr[1];

         //--- このような状況下において、このようなことを行うのは非常に困難である。

         if(CopyBuffer(IndHandle,BuffNumb,iTime[bar],1,Arr)<=0) return(RESET);

式が真偽値でない DarvasBoxes_System_HTF.mq5 211 70

式が boolean ではない DarvasBoxes_System_HTF.mq5 218 72

式が真偽値でない DarvasBoxes_System_HTF.mq5 262 70

式 not boolean DarvasBoxes_System_HTF.mq5 269 74

式が boolean ではない DarvasBoxes_System_HTF.mq5 270 74

 
Mario Hugo Achucarro Pillat: expression not boolean DarvasBoxes_System_HTF.mq5 211 70
#define  RESET 0       // このような状況下において、私たちはどのような行動をとるべきでしょうか。bool CountIndicator(… // CountLineの導入(導入率 - 0)
   ⋮
      if(…) return(RESET);

この関数は ブールを 返します。ブーリアンではなくint、式を返しています。

 
William Roeder:

あなたの関数は ブールを 返します。この関数はブール値ではなくint を返します。

ありがとうございました!