Live data from Hacker News

Viewing profile — asavinov

asavinov

HN member
Joined
Sun, Jul 10, 2016, 9:21 AM UTC
HN karma
283
Public activity
129 items

About asavinov

https://github.com/asavinov - My projects

https://github.com/asavinov/intelligent-trading-bot Intelligent Trading Bot: Automatically generating signals and trading based on machine learning and feature engineering

Recent public activity

  1. comment
    Comment #40785639

    You could check out a tool for trade signal generation based on machine learning and feature engineering: https://github.com/asavinov/intelligent-trading-bot It trains ML models ba…

  2. comment
    Comment #39131383

    The sequence FROM Table AS t WHERE t.Condition SELECT t.col1, t.col2, ... might be more natural than the traditional SELECT t.col1, t.col2, ... FROM Table AS t WHERE t.Condition If…

  3. comment
    Comment #37881577

    From my experience with crypto currencies and the intelligent trading bot [0] I would say that transformers will not provide significant benefits when applied to the traditional st…

  4. comment
    Comment #37879697

    I agree that the conventional (numeric) forecasting can hardly benefit from the newest approaches like transformers and LLMs. I made such a conclusion while working on the intellig…

  5. comment
    Comment #36544108

    Does it work synchronously or asynchronously? For example, if you integrate WebSockets then you could act as soon as you get new data. If it works synchronously then you regularly …

  6. comment
    Comment #36543841

    When developing an automatic trading system the following aspects are important: - Data feeds and data ingestion. It can be a fairly independent component which collects data from …

  7. comment
    Comment #36543498

    > What gives you advantage is trading algo, which is always hard to find. At the end it is necessary to make a decision whether to buy or sell (and how much), which will compete wi…

  8. comment
    Comment #35074150

    For any such tool, two questions are of primary importance: - How connections between multiple tables are represented and managed - How derived data is described (queries, workflow…

  9. comment
    Comment #33006183

    > I have always kept in mind is that feature engineering is almost always the key difference between success and failure I also developed an ML-powered service heavily relying on f…

  10. comment
    Comment #31931210

    > Joins are what makes relational modeling interesting! It is the central part of RM which is difficult to model using other methods and which requires high expertise in non-trivia…

  11. comment
    Comment #30875964

    One idea is to use columns instead of cells. Each column has a definition in terms of other columns which might also be defined in terms of other columns. If you change value(s) in…

  12. comment
    Comment #30614191

    Looks interesting although I miss a short introduction or how-to guide. I found that one can "Create and train machine learning models to predict market values." In this context, a…

  13. comment
    Comment #30086655

    Having Python expressions within a declarative language is a really good idea because we can combine low level logic of computations of values with high level logic of set processi…

  14. comment
    Comment #29216434

    Similar products: - https://rows.com/ - https://www.rowshare.com/ - https://www.airtable.com/ - fieldbook - Power BI

  15. comment
    Comment #29213073

    Most of the self-service or no-code BI, ETL, data wrangling tools are am aware of (like airtable, fieldbook, rowshare, Power BI etc.) were thought of as a replacement for Excel: wo…

  16. comment
    Comment #29176176

    Hamilton is more similar to the Prosto data processing toolkit which also relies on column operations defined via Python functions: https://github.com/asavinov/prosto However, Pros…

  17. story
  18. comment
    Comment #27793775

    > I think SQL is irritatingly non-composable, many operations require gymnastics to express One approach to radically simplify operations with data is to use mathematical functions…

  19. comment
    Comment #27792626

    One alternative to SQL (type of thinking) is Column-SQL [1] which is based on a new data model. This model is relies on two equal constructs: sets (tables) and functions (columns).…

  20. story
  21. story
  22. comment
    Comment #27106879

    Here is another project based on the same idea of processing data using functions : https://github.com/asavinov/lambdo - Feature engineering and machine learning: together at last!…

  23. comment
    Comment #27106745

    The main motivation is that the conventional approaches to data processing are based on manipulating mathematical sets for all kinds of use cases: we produce a new set if we want t…

  24. story
  25. comment
    Comment #26991180

    > I always felt like there was some super deep & fundamental link between these mathematical concepts and relational modeling ideas. The relational model is relies on set theory (m…