View RSS Feed

Recent Blogs Posts

  1. Developing a multi-currency Expert Advisor (Part 5): Variable position sizes

    by , 12-01-2024 at 04:15 PM
    In the previous part, we dded the ability to restore the EA's state after a restart. It does not matter what the reason was - rebooting the terminal, changing the timeframe on the chart with the EA, launching a more recent version of the EA - in all cases, restoring the state allowed the EA not to start working from scratch and not to lose already open positions, but to continue handling them.

    However, the size of the opened positions remained the same for each instance of
    ...
    Categories
    Uncategorized
  2. Neural Network in Practice: Straight Line Function

    by , 12-01-2024 at 01:10 PM
    In the previous article "Neural Network in Practice: Least Squares", we looked at how, in very simple cases, we can find an equation that best describes the data set we are using. The equation that was formed in this system was very simple, it used only one variable. We've already shown how to do the calculation, so we'll get straight to the point here. This is because the mathematics used to create an equation based on the values available in the database requires significant knowledge of
    ...
    Categories
    Uncategorized
  3. Neural Network in Practice: Straight Line Function

    by , 12-01-2024 at 01:08 PM
    In the previous article "Neural Network in Practice: Least Squares", we looked at how, in very simple cases, we can find an equation that best describes the data set we are using. The equation that was formed in this system was very simple, it used only one variable. We've already shown how to do the calculation, so we'll get straight to the point here. This is because the mathematics used to create an equation based on the values available in the database requires significant knowledge of
    ...
    Categories
    Uncategorized
  4. Neural Networks Made Easy (Part 90): Frequency Interpolation of Time Series (FITS)

    by , 12-01-2024 at 09:39 AM
    In the previous articles, we discussed the FEDformer method that uses the frequency domain to find patterns in a time series. However, the Transformer used in that method can hardly be referred to as a lightweight model. Instead of complex models that require large computational costs, the paper "FITS: Modeling Time Series with 10k Parameters" proposes a method for the frequency interpolation of time series (Frequency Interpolation Time Series - FITS). It is a compact and efficient solution for
    ...
    Categories
    Uncategorized
  5. Neural Networks Made Easy (Part 94): Optimizing the Input Sequence

    by , 12-01-2024 at 08:14 AM
    A common approach when processing time series is to keep the original arrangement of the time steps intact. It is assumed that the historical order is the most optimal. However, most existing models lack explicit mechanisms to explore the relationships between distant segments within each time series, which may in fact have strong dependencies. For example, models based on convolutional networks (CNN) used for time series learning can only capture patterns within a limited time window. As a result,
    ...
    Categories
    Uncategorized