我想找高的第一个15分钟的蜡烛。
我正在使用下面的代码。
bi = BarIndex();
arrayitem = SelectedValue(bi) -bi[0];
firstbarHigh = High[arrayitem ];这个代码给了我第一支蜡烛的收盘价。我想要高价的第一支15分钟的蜡烛。
请帮帮我。
发布于 2020-03-14 13:04:45
看看这个
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));https://stackoverflow.com/questions/57910482
复制相似问题