Moscow Institute of Physics and Technology (MIPT): Testing Cryptocurrency Trading Strategies under Real Market Conditions

cryptonews.ruPublicado em 2026-08-24Última atualização em 2026-08-24

Resumo

Moscow Institute of Physics and Technology (MIPT) has introduced a system for backtesting cryptocurrency trading strategies under realistic market conditions rather than relying on idealized historical price data. The system simulates real-world trading factors like fees, slippage, liquidity, and perpetual contract funding costs—factors that can cause a paper-profitable strategy to perform poorly in live trading. The system rigorously evaluates strategies by processing market data step-by-step, using only information available at each decision point and incorporating real trading costs. MIPT researchers tested 132 variants of momentum-based strategies. The key finding was not maximum profitability, but the strategies' ability to limit losses during market crashes, with maximum drawdowns reduced from 67% to 29% in realistic tests. The research concluded that forming a portfolio of multiple strategy variants yields more stable returns than relying on a single, historically best-performing variant. This realistic testing framework is seen as a potential foundation for developing and assessing new cryptocurrency investment products, especially as Russia establishes its regulatory framework for digital financial assets. Future work will test other strategy classes and expand to different types of crypto assets.

Moscow Institute of Physics and Technology (MIPT) has presented a system for testing cryptocurrency trading strategies that is built not on idealized price history, but on simulating conditions close to real trading. The development accounts for fees, slippage, liquidity, funding costs for perpetual contracts, and other factors due to which a profitable strategy on paper may turn out to be weak after launch.

Development Card

  • Developer: Moscow Institute of Physics and Technology (MIPT).
  • System premiere date: July 30, 2026.
  • Industry: Financial services, investments, and auditing.
  • Technologies: Data Mining.

The system belongs to data mining tools and is intended for stricter evaluation of cryptocurrency strategies. Its task is to show how an algorithm would behave not in laboratory conditions, but in an environment where a trade is executed with costs, delays, and market constraints.

What is Backtesting and Why is it Needed

Backtesting is the testing of a trading strategy on historical data. Simply put, the algorithm essentially runs through a past market segment again: it receives prices, opens and closes trades according to set rules, and then shows what the result could have been.

Such testing is needed to preliminarily evaluate the strategy's logic: whether it made a profit, how much the capital drawdown was, how often losing periods occurred, and whether the idea withstands different market phases. For a trading robot, backtesting is especially important: it helps identify weaknesses before launching with real money.

How to Backtest a Strategy or Robot

Testing is usually built according to a clear algorithm:

  • Prepare historical data: prices, volumes, fees, and other market parameters.
  • Configure the strategy rules: entry conditions, exit conditions, position size, and risk limits.
  • Factor in real trading conditions: fees, slippage, liquidity, and funding costs for perpetual contracts.
  • Run the test so that the algorithm does not use future data.
  • Analyze the results through reports, charts, and trade tables.

For backtesting, platforms like MetaTrader, TradingView, Amibroker, and similar are often used. If a proprietary testing system is needed, it is usually written in Python, C++, or R.

Optimizing a trading robot boils down to enumerating and comparing parameters: for example, indicator period, exit rules, or position size. But choosing only the option with maximum profitability is dangerous — it's important to see how stable the result is across different market segments.

There are also additional verification methods. Forward testing runs the strategy on new data after configuration to test it outside the historical segment on which parameters were selected. Visual testing shows trades directly on the chart step by step: this makes it easier to see where the algorithm enters, exits, and makes mistakes.

Metrics, Factors, and Common Backtesting Errors

The backtest result is assessed not only by profit. Typically, several indicators are looked at simultaneously:

  • Profitability: Shows how much the strategy earned over the selected period.
  • Maximum Drawdown: Shows how much the capital decreased from peak to trough.
  • Sharpe Ratio: Helps assess risk-adjusted return.
  • Volatility: Shows how sharply the strategy's results changed.
  • Profit/Risk Ratio: Helps understand if potential profit is worth potential losses.

The success of the testing is most strongly influenced by data quality, accounting for fees, liquidity, slippage, realism of simulation, length of the testing period, and risk of overfitting.

The most common errors are using future data, overfitting to a lucky historical segment, ignoring trading costs, and too short a testing period. It is precisely due to such errors that a strategy may look strong on a chart but quickly lose effectiveness after launch.

What Exactly MIPT Scientists Tested

The focus of the research was momentum strategies — one of the popular approaches in algorithmic trading. Their idea is simple: if an asset's price is already moving in a certain direction, it may continue that movement for some time. Such approaches have long been applied in traditional financial markets, but in cryptocurrencies, they are often tested in an overly simplified manner.

The crypto market features different types of strategies:

  • Momentum: Betting on the continuation of an already started price movement.
  • Arbitrage: Searching for price differences between platforms or instruments.
  • Scalping: Frequent short-term trades with a small profit target.
  • Trend strategies: Trading in the direction of the main market movement.
  • Counter-trend strategies: Attempting to profit from a pullback against the current movement.
  • Market Making: Placing buy and sell orders to profit from the spread.

The main problem with such tests is detachment from reality. The quote on a historical chart shows the price but does not reveal all trade conditions: what the liquidity was, how much execution cost, what the slippage turned out to be, and how market cycles changed. Because of this, a strategy may look strong on past data but quickly lose expected profitability after launch.

The team from the "Blockchain" department at MIPT decided to test how robust momentum strategies are under a more realistic approach. To do this, the work was divided into several practical steps:

  • Creating a testing system.
  • Collecting hourly spot market data.
  • Collecting eight years of hourly perpetual futures data.

How the Testing System Works

The development step-by-step simulates the work of a trading strategy as if it were launched in real time. At each step, the system checks several conditions:

  • The algorithm receives only the market data that could have been available at the moment of decision-making.
  • The trade result is calculated considering fees.
  • Slippage is added to the calculation.
  • Available liquidity is taken into account.
  • For perpetual contracts, the funding cost is accounted for.

After calculating one time segment, the algorithm moves to the next and repeats the procedure on updated data. This approach helps avoid a common error — using information from the future. As a result, the test shows not an abstract return on history, but a more plausible picture of the strategy's behavior in trading.

The system reproduces the strategy's operation step by step: it uses only data available at that moment, accounts for real trading costs, and then moves to the next period. This method allows assessing how the strategy could have behaved in actual market conditions, — explained Maxim Egorov, a graduate of the "Blockchain" department at MIPT.

For a market where traders often test ideas in MetaTrader, write their own models in Python, or migrate high-load algorithms to C++, not only the logic of entering and exiting a position is important. The quality of testing rests on three things:

  • Accounting for costs that arise during trade execution.
  • Accounting for execution constraints, including liquidity and slippage.
  • Comparing the final assessment with how the strategy could have performed in real trading.

Results: Profitability Turned Out Not to Be the Main Advantage

The obtained results were additionally checked using statistical methods. This was needed to separate a sustainable effect from a random coincidence of parameters with a favorable market segment. Such control showed: many strategies that look good under standard testing noticeably lose effectiveness after accounting for real trading conditions.

The main conclusion was not that momentum strategies yield maximum profit. A more important advantage was their ability to limit losses during periods of sharp market declines. Under realistic testing, capital protection during crashes came to the forefront.

132 variants of the strategy were run through the system. The research showed that one cannot rely only on the single variant that performed best on historical data. After adjustment for random enumeration, its result was no longer statistically different from luck. However, the momentum effect itself did not disappear.

If the strategy is evaluated not by the single most successful scenario but on average and a portfolio of several variants is formed, it retains stable profitability. At the same time, its key property is reducing drawdown during crisis periods. According to MIPT calculations, the maximum drawdown was reduced by more than 2 times: from 67% to 29%.

Why Such Testing is Needed for the Crypto Market

The authors of the development believe that the system can become a basis for evaluating and creating new investment products in the cryptocurrency market. Its value lies in the fact that a product can be preliminarily tested under conditions close to real trading to understand how capable it is of protecting capital during strong declines.

Such a system can form the basis for evaluating new investment products for the cryptocurrency market. It allows one to see in advance how a strategy passes through periods of strong decline and how controlled the risk remains. Against the backdrop of the formation of a regulatory framework for digital financial assets in Russia, such tools may become especially in demand, — noted Maxim Egorov.

The next step for MIPT scientists is to test other classes of trading strategies. The research is also planned to be extended to new types of crypto assets to assess how realistic testing changes the understanding of risk and return in different market segments.

end-content

Perguntas relacionadas

QWhat is the main purpose of the backtesting system developed by MIPT?

AThe main purpose is to test cryptocurrency trading strategies under realistic market conditions by simulating factors like fees, slippage, liquidity, and funding costs for perpetual contracts, rather than relying on idealized historical price data.

QWhat are the common pitfalls or mistakes in standard backtesting that the MIPT system aims to address?

ACommon pitfalls include using future data, overfitting to a specific historical period, ignoring trading costs and fees, and testing over too short a timeframe. The MIPT system addresses these by using only data available at each simulation step and incorporating realistic trading costs and constraints.

QAccording to the article, what was the key finding regarding momentum strategies after testing them with the realistic system?

AThe key finding was not that momentum strategies generated maximum profit, but that their main advantage was their ability to limit losses during sharp market downturns, effectively protecting capital. The study showed a significant reduction in maximum drawdown from 67% to 29%.

QWhat practical steps were involved in the MIPT research on momentum strategies?

AThe practical steps involved: 1) Creating the testing system, 2) Collecting hourly data for the spot market, and 3) Collecting hourly data for perpetual futures over an 8-year period.

QWhat future plans do the MIPT researchers have for their system, as mentioned in the article?

AThe researchers plan to test other classes of trading strategies and expand the research to new types of crypto-assets to evaluate how realistic testing changes the perception of risk and return across different market segments.

Leituras Relacionadas

Grayscale Reassesses Zcash: In the Era of AI Surveillance, What is Financial Privacy Worth?

Grayscale Research reevaluates Zcash (ZEC) in the context of AI-powered financial surveillance. The report posits that stablecoins, transparent blockchains, and AI analytics tools are increasing the traceability of digital finance, potentially reigniting mainstream demand for financial privacy as a core monetary attribute. While AI could drive a third wave of privacy concern, Zcash's investment thesis hinges on whether this theoretical demand translates into sustained adoption. Zcash, operational for nearly a decade, uses zero-knowledge proofs to offer users a choice between transparent and shielded transactions, placing control of information disclosure back in users' hands. Recent infrastructure improvements—like wallet enhancements, mining pool expansions, and protocol upgrades—have reduced usability barriers. On-chain data shows shielded transactions comprise ~90% of transaction count, with ~25% of circulating ZEC in shielded pools, indicating existing use. However, significant risks remain. These include regulatory hurdles for exchanges and custodians dealing with shielded assets, past protocol vulnerabilities (theoretical, now patched), long-term quantum computing threats, and execution risks for future scalability upgrades. Grayscale's analysis suggests ZEC's current low market share (~0.6% of the "digital currency" crypto sector) offers valuation upside *if* the market reprices privacy. A scenario analysis notes that capturing 5% of this sector could imply a ~9x valuation increase, though this is a simplified sensitivity test, not a price target. Ultimately, Zcash's opportunity lies in the unresolved question: in an AI-monitored era, what price will the market assign to financial privacy? Validating the thesis requires monitoring growth in real shielded usage, wallet usability, upgrade timelines, and regulatory accessibility, not just price appreciation.

marsbitHá 1h

Grayscale Reassesses Zcash: In the Era of AI Surveillance, What is Financial Privacy Worth?

marsbitHá 1h

AI Democratizes Hacking, Bitcoin Red Team White Hats Race in Speed-Based Attack-Defense Contest

AI is democratizing powerful hacking tools, putting them in the hands of those with little cybersecurity expertise. Cryptocurrency developers are now in a race to find system vulnerabilities before attackers do. The Bitcoin Red Team, a group of 20-25 volunteers including anonymous developers like Calle, has formed to urgently address these AI-augmented security threats within the Bitcoin ecosystem. Calle emphasizes that while the Bitcoin core protocol itself is secure, the real risk lies in the wallets, applications, services, and other third-party software built on top of it—the software most users interact with. Incidents like the Coldcard wallet hack and the emergence of powerful Chinese AI models have accelerated their proactive security auditing efforts. The team both accepts audit requests from Bitcoin projects and proactively scans major open-source projects. They report found vulnerabilities to developers and refine their classification standards. Notably, Calle states the team frequently uses Chinese AI models over US counterparts, as the latter's strict safety guardrails often block cybersecurity research tasks, hindering their utility for finding or fixing vulnerabilities. Calle warns that AI is erasing the information asymmetry that previously protected some vulnerabilities. It lowers the technical barrier, allowing non-experts to exploit simple flaws. He describes the current state of Bitcoin software as "on fire" and believes the direct financial incentive of cryptocurrency makes it a first target in this industry-wide shift, with other sectors to follow. The era of security through obscurity is over.

marsbitHá 1h

AI Democratizes Hacking, Bitcoin Red Team White Hats Race in Speed-Based Attack-Defense Contest

marsbitHá 1h

Trading

Spot
活动图片