王胜强 发表于 2024-3-10 14:46:00

顶下

_9140 发表于 2024-3-10 15:12:21

void OnStart() {
    double diff_current = High - Low; // 当前K线的差值
    double diff_previous = High - Low; // 前一根K线的差值
   
    Comment("当前K线差值: ", diff_current);
    Comment("前一根K线差值: ", diff_previous);
}

富贵险中求 发表于 2024-10-6 10:50:10

顶下
页: 1 2 3 [4]
查看完整版本: 怎么编写一根K线的最高价和最低价的差