Earlier quoted context omitted.
Trying to get my credit union to allow users to opt in to sell bulk annon checking account transactions to a hedge fund. Having that much point of sale data would be huge.
uh no, please don't do that. Individual decisions that seem harmless can be incredibly destructive in the aggregate, and this is one of them.
Selling Data to Hedge Funds (2017)
51–59 of 59 posts
Re: Selling Data to Hedge Funds (2017)
#52Re: Selling Data to Hedge Funds (2017)
#53Re: Selling Data to Hedge Funds (2017)
#54Earlier quoted context omitted.
Trying to get my credit union to allow users to opt in to sell bulk annon checking account transactions to a hedge fund. Having that much point of sale data would be huge.
uh no, please don't do that. Individual decisions that seem harmless can be incredibly destructive in the aggregate, and this is one of them.
Re: Selling Data to Hedge Funds (2017)
#55Re: Selling Data to Hedge Funds (2017)
#56Earlier quoted context omitted.
If all it is some data scraped off a few web sites that they could get an intern to do in a week or three, then it's unlikely to be valuable enough for them to pay you a substantial sum of money. The most valuable data is data that is difficult to gather. Think things like proprietary (i.e. unpublished) industry data. The canonical "sexy" alternative data set sold to hedge funds is counts of cars in retail parking lo…
> If all it is some data scraped off a few web sites that they could get an intern to do in a week or three, then it's unlikely to be valuable enough for them to pay you a substantial sum of money. If the data is compelling and clearly correlates to earnings KPIs, I can tell you from experience that "some data scraped off a few websites" can be salable to the tune of $50,000/quarter. Hedge funds will frequently choos…
Re: Selling Data to Hedge Funds (2017)
#57I recently published a data dashboard( https://public.quantale.io/dashboards/50778f4a-02bb-4d31-b6e... ) using Quantale[1] to show the correlation between Tweet activity of a stock vs the price during the recent stock split of Tesla and Apple. While I believe there are softwares that can collect such data which can definitely be useful to hedge funds but at the same time we should note that the data available to gene…
Hey this is really cool! I am a current data scientist masters student and would love to learn more about your platform! Do you have a way to contact?
Re: Selling Data to Hedge Funds (2017)
#58Numerai hedge fund buys data anonymously, and pays you in cryptocurrency based on its performance: https://medium.com/numerai/building-the-last-hedge-fund-intr...
Re: Selling Data to Hedge Funds (2017)
#59The article mentions having a long history of data, but I want to stress a corollary of this: if you think you might eventually want to sell data, either put your data in an append-only data format now so that history is preserved, or at least take regular snapshots. Otherwise, any time you update the data in place, you make it impossible to reconstruct what the data "looked like at the time" for a backtest.
What do you mean by this? I'm imagining, say, rainfall per day, with a column for date, and a column for rainfall. What's useful about getting the data as it was vs. just having a total dataset with accurate dates.
But say the Rainfall table had a foreign key to a Sensor table that had the coordinates of the sensor. If the physical sensor were moved, the most straightforward data schema would call for the coordinates for the Sensor table to be updated, but then the historic data would have the wrong coordinates if you did a join.
The ideal solution is to design a bitemporal schema so that rows are only ever inserted, not updated, but failing that, regular automatic database snapshots are a good start.