Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过使用 amibroker afl 来找到一只股票在创下最近 52 周高点后的最低价?由于这项探索将在观察名单上进行,并且股票将在不同日期创下 52 周新高;我如何编码以在观察列表中每只股票的每个不同日期之后找到低点。
派对有点晚了,但你想用
LowestSince(new_52_week_high , L, 1); 在哪里
LowestSince(new_52_week_high , L, 1);
new_52_week_high = H > Ref(HHV(H, 250), -1));
例如,您可以从这个开始。 52 周高 AFL
然后使用类似的东西:
newLow = LLV(L, BarsSince(HI));