|
By:
There's lots of internet gold that can be mined from studying the market action whilst ignoring the runners.
IMHO, it is more profitable to base an automated system on averages rather than outliers. Looking for outliers such as "detecting aggressive capital" is going to yield far fewer opportunities per day than analysing a market to determine it's average state and then placing bets that will be value relative to that average if they get matched. Automated systems that rely on the rule of large numbers is the holy grail to chase. Outliers, by their very definition fall outside of the "Rule of large numbers" Good luck with your ideas and programming. |
|
By:
I remember, way back when, in betting shops, price movements on horses
reported over the old extel system would sometimes stand out. A horse would jump from 7/1 to 5/1 and would be accompanied by "that show is OK" You knew it was worth a bet, and especially if it concerned a horse in specific ownership. I guess your system is looking for that sort of fingerprint, on a more regular basis. But anonymising the data you risk not picking up specific patterns that would be gold dust. Good luck, and maybe, with less liquidity these days your system may find things easier to spot. I've done some manual tracking, of certain meetings, and found reward in early price movements Anyway once again, good luck, |
|
By:
I have tested two different data types: the first is raw time-series data, with time, price, and volume; the second is traditional summary data used in finance, such as candlesticks. I am not actually coding but testing an agentic approach using Gemini and Raptor Mini.
So the code is generated and I only integrate it into my existing framework; I must find a better way to integrate it, but for now, since I want LLMs to work with data directly when creating algorithms, the first integration is not so direct, because agents code on JSON data samples while my code infrastructure uses direct application domain types. |