我想找到前15分钟蜡烛的高点。
我正在使用以下代码。
bi = BarIndex();
arrayitem = SelectedValue(bi) -bi[0];
firstbarHigh = High[arrayitem ];
此代码为我提供了第一支蜡烛的收盘价。我想要第一个15分钟蜡烛的高价。
请帮助我。
答案 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));