"ダミー "からの質問 - ページ 260

 
zfs:
バーゼロの時刻を知るには?

これを追加します。

Print(time[0]);
 
DC2008:

これを追加します。

日付 1970年このデザインも。

datetime Time[1];
CopyTime(_Symbol,_PERIOD_,0,1,Time);
 
zfs:

1970を与えています。このデザインも。

そうは問屋が卸さない

int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
//---
   ArraySetAsSeries(time,true);
   Print(time[0]);
//--- return value of prev_calculated for next call
   return(rates_total);
  }
 
DC2008:

は、1970をこのままでは終わらせない

rates_totalは末尾に記載
 
zfs:

この工事も。

という感じです。

   datetime Time[1];
   CopyTime(NULL,0,0,1,Time);
   Print(Time[0]);
 
DC2008:

斯くやあらん

同じでも、やっぱり1970年なんですね。嘘じゃない、2回持ち出し、混乱しただけ)。
 
zfs:
同じでも、やっぱり1970年なんですね。嘘ではありません、2回出力しています、混乱しただけです)。

をコピーしてください。

#property indicator_chart_window
int OnInit()
  {
   return(INIT_SUCCEEDED);
  }
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const datetime &time[],
                const double &open[],
                const double &high[],
                const double &low[],
                const double &close[],
                const long &tick_volume[],
                const long &volume[],
                const int &spread[])
  {
   ArraySetAsSeries(time,true);
   Print(time[0]);
   datetime Time[1];
   CopyTime(NULL,0,0,1,Time);
   Print(Time[0]);
   return(rates_total);
  }

というのは、私の場合です。

 
DC2008:

をコピーしてください。

私には効果あり!

はい、はい、すみません、ありがとうございます、いくつかの変数の出力があり、1行が空白になっているので、混乱してしまいました)
 
profit1=profit1+"\n";
0が表示されるのですが、回線を転送することは可能ですか?
 
zfs:
0を与えるように、新しい行に転送することは可能ですか?

を入れ替える。

   profit1="\n"+profit1;