以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://www.weistock.com/bbs/index.asp) -- 高级功能研发区 (http://www.weistock.com/bbs/list.asp?boardid=5) ---- 在VBA中怎么读取一品种的涨跌幅与波幅 (http://www.weistock.com/bbs/dispbbs.asp?boardid=5&id=8010) |
-- 作者:continue -- 发布时间:2011/9/14 12:17:49 -- 在VBA中怎么读取一品种的涨跌幅与波幅 在VBA中怎么读取一品种的涨跌幅与波幅 |
-- 作者:guotx2010 -- 发布时间:2011/9/14 15:45:28 -- 可以通过公式将计算好的数据存入全局变量,然后在VBA中读取。
|
-- 作者:admin -- 发布时间:2011/9/14 15:59:46 -- Sub test() aaa = (Report1.NewPrice-Report1.LastClose)/Report1.LastClose*100 End Sub |