diff --git a/client.go b/client.go index 51623be..875c371 100644 --- a/client.go +++ b/client.go @@ -148,8 +148,9 @@ func (c *AllyApi) MarketNewsSearch(maxhits int, symbols ...string) (resp MarketN return } -func (c *AllyApi) MarketNewsGet(id string) { - +func (c *AllyApi) MarketNewsGet(id string) (resp MarketNewsGetResponse) { + c.marshalInterfaceResponse("market/news/#{id}", &resp) + return } func (c *AllyApi) marshalWithQuery(p string, v url.Values, i interface{}) {