我有一个这样的 JSON:
[
{
"Low": 8.63,
"Volume": 14211900,
"Date": "2012-10-26",
"High": 8.79,
"Close": 8.65,
"Adj Close": 8.65,
"Open": 8.7
},
{
"Low": 8.65,
"Volume": 12167500,
"Date": "2012-10-25",
"High": 8.81,
"Close": 8.73,
"Adj Close": 8.73,
"Open": 8.76
},
{
"Low": 8.68,
"Volume": 20239700,
"Date": "2012-10-24",
"High": 8.92,
"Close": 8.7,
"Adj Close": 8.7,
"Open": 8.85
}
]
并计算了每天收盘价的简单移动平均线,并将其称为变量sma9day
。我想将移动平均值与原始 JSON 结合起来,所以我每天都会得到这样的结果:
{
"Low": 8.68,
"Volume": 20239700,
"Date": "2012-10-24",
"High": 8.92,
"Close": 8.7,
"Adj Close": 8.7,
"Open": 8.85,
"SMA9": 8.92
}
使用 sma9day 变量,我这样做了:
h = { "SMA9" => sma9day }
sma9json = h.to_json
puts sma9json
输出这个:
{"SMA9":[8.92,8.93,8.93]}
如何将其以与 JSON 兼容的格式放置并加入两者?我需要从上到下“匹配/加入”,因为 JSON 中的最后 8 条记录不会有 9 天移动平均值(在这些情况下,我仍然希望密钥在那里(SMA9),但是有 nil 或零作为值。
谢谢你。
最近更新:
我现在有了这个,这让我非常接近,但是它返回 JSON 中 SMA9 字段中的整个字符串......
require json
require simple_statistics
json = File.read("test.json")
quotes = JSON.parse(json)
# Calculations
def sma9day(quotes, i)
close = quotes.collect {|quote| quote['Close']}
sma9day = close.each_cons(9).collect {|close| close.mean}
end
quotes = quotes.each_with_index do |day, i|
day['SMA9'] = sma9day(quotes, i)
end
p quotes[0]
=> {"Low"=>8.63, "Volume"=>14211900, "Date"=>"2012-10-26", "High"=>8.79, "Close"=>8.65, "Adj Close"=>8.65, "Open"=>8.7, "SMA9"=>[8.922222222222222, 8.93888888888889, 8.934444444444445, 8.94222222222222, 8.934444444444445, 8.937777777777777, 8.95, 8.936666666666667, 8.924444444444443, 8.906666666666666, 8.912222222222221, 8.936666666666666, 8.946666666666665, 8.977777777777778, 8.95111111111111, 8.92, 8.916666666666666]}
当我尝试在计算结束之前执行 sma9day.round(2) 时,它会给出一个方法错误(可能是因为数组?),而当我执行 sma9day[0].round(2) 时,它会正确舍入,但当然每条记录都有相同的 SMA。
任何帮助表示赞赏。谢谢