嗨,我该如何使用历史记录中的某个日期的价格(高价或低价)。 我要计算买入和持有的收益。
我在下一行中定义测试周期的开始和结束:
testPeriodStart = timestamp(testStartYear,testStartMonth,testStartDay,0,0)
testPeriodStop = timestamp(testStopYear,testStopMonth,testStopDay,0,0)
现在,我想从“开始”中选择开盘价。 这样的想法,但我认为声明中有错误。
If time = testperiodstart
O = open
If time = testperiodstop
C = close
B = C/O //B is buy and hold returns
B应该显示在图表中(交易视图)