Amibroker AFL首场15分钟蜡烛高

时间:2019-09-12 15:54:31

标签: amibroker

我想找到前15分钟蜡烛的高点。

我正在使用以下代码。

bi = BarIndex();
arrayitem = SelectedValue(bi) -bi[0];
firstbarHigh = High[arrayitem ];

此代码为我提供了第一支蜡烛的收盘价。我想要第一个15分钟蜡烛的高价。

请帮助我。

1 个答案:

答案 0 :(得分:0)

检查一下

 newday = Day() != Ref(Day(),-1);  //check if new day or not
 starttime = ValueWhen(newday,TimeNum());
 IBendtime = starttime+1500;
 minh = ValueWhen(newday,TimeFrameGetPrice("H",in5Minute*3));
 minl = ValueWhen(newday,TimeFrameGetPrice("L",in5Minute*3));