<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>multi-cryptocurrency trend forecasting &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/multi-cryptocurrency-trend-forecasting/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Wed, 09 Sep 2026 08:33:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>multi-cryptocurrency trend forecasting &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>Dynamic instance weighting boosts online learning for multi-cryptocurrency price and trend forecasting</title>
		<link>https://scienmag.com/dynamic-instance-weighting-boosts-online-learning-for-multi-cryptocurrency-price-and-trend-forecasting/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Wed, 09 Sep 2026 08:32:56 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[collective behavior modeling in cryptocurrencies]]></category>
		<category><![CDATA[collective cryptocurrency modeling]]></category>
		<category><![CDATA[cryptocurrency clustering and grouping]]></category>
		<category><![CDATA[cryptocurrency price prediction]]></category>
		<category><![CDATA[dynamic instance weighting]]></category>
		<category><![CDATA[grouping cryptocurrencies by market behavior]]></category>
		<category><![CDATA[handling market noise in crypto forecasting]]></category>
		<category><![CDATA[innovative crypto forecasting algorithms]]></category>
		<category><![CDATA[machine learning for digital assets]]></category>
		<category><![CDATA[macroeconomic impact on crypto markets]]></category>
		<category><![CDATA[market volatility analysis]]></category>
		<category><![CDATA[multi-cryptocurrency trend forecasting]]></category>
		<category><![CDATA[multi-target predictive modeling]]></category>
		<category><![CDATA[online learning in finance]]></category>
		<category><![CDATA[open-access crypto prediction research]]></category>
		<category><![CDATA[real-time market data analysis]]></category>
		<category><![CDATA[real-time online learning]]></category>
		<category><![CDATA[social media sentiment analysis in trading]]></category>
		<category><![CDATA[volatility-focused forecasting]]></category>
		<guid isPermaLink="false">https://scienmag.com/dynamic-instance-weighting-boosts-online-learning-for-multi-cryptocurrency-price-and-trend-forecasting/</guid>

					<description><![CDATA[Cryptocurrencies are famous for their volatility, and that volatility has long been both a lure and a nightmare for anyone trying to predict where prices will go next. Now, a team of researchers in Italy and Slovenia has developed a machine learning system that learns in real time from live market data, groups related cryptocurrencies [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Cryptocurrencies are famous for their volatility, and that volatility has long been both a lure and a nightmare for anyone trying to predict where prices will go next. Now, a team of researchers in Italy and Slovenia has developed a machine learning system that learns in real time from live market data, groups related cryptocurrencies together, and—perhaps most unusually—deliberately pays extra attention to the wildest price swings instead of discarding them as noise. The system, called LEMON (reaL-time wEighted Market predictiON), is described in an open-access paper published in Data Mining and Knowledge Discovery, and it outperformed state-of-the-art competitors on two separate forecasting tasks across 16 of the world&#8217;s best-known digital assets.</p>
<p>The central insight behind LEMON is that cryptocurrencies rarely move entirely on their own. Regulatory announcements, technological breakthroughs, macroeconomic shocks and social media sentiment tend to wash over the whole market at once, producing groups of coins that exhibit strikingly similar trends. Rather than treating each cryptocurrency as an isolated prediction problem, the researchers&#8217; method first identifies which assets behave alike, then trains a shared model for each group so that the collective behavior of the cluster informs every individual forecast within it. This multi-target strategy allows the model to exploit temporal correlations that single-coin approaches simply cannot see.</p>
<p>Technically, the grouping phase relies on temporal clustering using the Dynamic Time Warping (DTW) distance measure, a technique well suited to comparing time series that may be offset in time or differ in amplitude and length. LEMON builds a square, symmetric matrix of pairwise DTW distances computed from the most recent window of hourly closing prices, a window set to three months in the team&#8217;s experiments, and then applies the K-Medoids clustering algorithm to partition the cryptocurrencies into groups. K-Medoids was chosen partly because it works directly from a precomputed distance matrix and partly because, unlike K-Means, its medoids are actual data points, which makes it computationally efficient. The clustering is refreshed periodically—every five months in the headline configuration—so the groups track the current market rather than fossilized patterns from the past.</p>
<p>Once the clusters are established, the heart of the system begins: continuous online learning over streaming data. Instead of the classic batch paradigm, where a model is trained once on historical data and then deployed, LEMON uses a prequential predict-update cycle. Every new instance arriving from the stream is first used to make a prediction with the current model, and then, once the true value is revealed, the same instance is fed back to update the model. This interleaving lets the system adapt continuously to shifting market conditions, a crucial property in an environment where trading patterns and trends can change within hours.</p>
<p>The genuinely novel ingredient, however, is the dynamic instance weighting scheme. Machine learning models usually treat all observations as equally important, and many traditional methods actively suppress outliers to improve robustness. In cryptocurrency markets, the researchers argue, that instinct is backwards: the extreme values are precisely the events that matter most, because they often mark the onset of abrupt trend changes that traders and analysts most need to capture. LEMON therefore assigns higher weights to instances showing large price variations and lower weights to ordinary ones near the median.</p>
<p>To decide which values count as &#8220;extreme,&#8221; the method builds on Tukey&#8217;s boxplot rule, which flags values outside the range defined by the first and third quartiles and the interquartile range. Because cryptocurrency price distributions are frequently skewed rather than symmetric, LEMON adopts the adjusted boxplot rule, which incorporates a robust skewness statistic known as the medcouple to correct the outlier cutoffs on either side of the distribution. The researchers then construct a continuous weighting function across the data range: the median value receives a baseline weight, values at the outlier cutoffs receive a much higher weight—in the main experiments, ten times higher—and a Piecewise Cubic Hermite Interpolating Polynomial (PCHIP) fills in the weights between boundaries, guaranteeing the monotonicity and convexity the scheme requires. As the function&#8217;s behavior adapts after each new batch of instances, the weighting curve visibly reshapes itself around the evolving distribution of price changes.</p>
<p>Operating this scheme on an unbounded stream poses a practical problem: quartiles and skewness statistics are normally computed from complete datasets, but a stream never ends and computer memory is finite. The team&#8217;s solution is the t-digest, a probabilistic data structure that estimates rank-based statistics such as quantiles with high accuracy using incremental computation. The t-digest partitions incoming data into small clusters represented by centroids and weights, updating them as each new instance arrives, and it is periodically re-initialized to reflect recent market conditions.</p>
<p>For the learning engine itself, LEMON builds on iSOUP-Tree, an instance-incremental, tree-based method designed for streaming data that attaches a perceptron or mean regressor to each leaf and can predict multiple targets at once. The researchers extended it with a weight-aware variance reduction (WAVR) heuristic for choosing tree splits, which normalizes variance reduction across all target cryptocurrencies in a cluster and accounts for each instance&#8217;s weight. They also redefined the method&#8217;s grace period—the minimum accumulated training weight a leaf must accumulate before a split is considered—so that nodes rich in highly weighted extreme instances are less prone to further splitting, curbing overfitting without sidelining those critical cases during tree construction.</p>
<p>The empirical evaluation drew on three years of hourly data, from January 2020 to December 2022, for sixteen cryptocurrencies including Bitcoin, Ethereum, Litecoin, Dogecoin, Monero and Ripple, sourced from Yahoo! Finance. Each dataset included standard price and volume features augmented with 48 engineered financial indicators—moving averages, Bollinger Bands, momentum oscillators, MACD variants, stochastic oscillators and volume-weighted average price, computed over multiple window lengths—plus a Fear and Greed index capturing market sentiment through volatility, momentum and social signals. The team tested LEMON on two tasks: predicting the percentage variation of the hourly closing price, evaluated by mean squared error, and classifying the next market trend as up, stable or down based on a sensitivity threshold of at least one percent hourly movement, evaluated by F1-score.</p>
<p>The results were decisive. On the regression task, the pretrained variant of LEMON, using the sum weight aggregation strategy, achieved the best mean squared error on 11 of the 16 cryptocurrencies and delivered error reductions ranging from 4 to 63 percent against the strongest online competitors, with even larger gains over batch baselines. On the classification task, the effect of weighting was especially visible: without instance weighting, LEMON ranked twelfth, but with weighting—particularly the sum strategy, which favors extreme values most strongly—it climbed to the top positions, reaching an average F1-score of 0.576 in its pretrained form and 0.515 in its purely online form, well ahead of all rivals. A sensitivity analysis varying the update interval and boundary weights confirmed that performance remains stable across reasonable parameter settings.</p>
<p>Efficiency numbers matter as much as accuracy for a system meant to run against live market feeds. Because LEMON rests on lightweight tree-based models rather than deep networks, its per-instance prediction and update times, along with its memory footprint, were substantially lower than those of the online LSTM and CARROT-based competitors, making it genuinely deployable in real-time settings. The authors caution, however, that the system still depends on periodic retraining at fixed intervals, so a sudden market crash occurring just after a retraining step could catch the model with stale cluster structures; a future concept-drift detector that triggers retraining on demand is the natural next step. They also note that translating predictive accuracy into economic utility—trading rules, fees, slippage—remains outside the current study&#8217;s scope. Still, the message of the work is clear: in a market defined by its extremes, the smartest models may be the ones that refuse to ignore them.</p>
<div class="scienmag-article-metadata"><strong>Subject of Research:</strong> Real-time online forecasting of cryptocurrency price variation and market trend direction using temporal clustering and dynamic instance weighting</p>
<p><strong>Article Title:</strong> Dynamic instance weighting for online learning in multi-cryptocurrency price and trend forecasting</p>
<p><strong>Article References:</strong> Pellicani, A., Pio, G., Džeroski, S., &amp; Ceci, M. (2026). Dynamic instance weighting for online learning in multi-cryptocurrency price and trend forecasting. <em>Data Mining and Knowledge Discovery, 40</em>(4), Article 58. <a href="https://doi.org/10.1007/s10618-026-01232-9" target="_blank" rel="noopener noreferrer">https://doi.org/10.1007/s10618-026-01232-9</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s10618-026-01232-9" target="_blank" rel="noopener noreferrer">10.1007/s10618-026-01232-9</a></p>
<p><strong>Keywords:</strong> Cryptocurrency forecasting, Online learning, Data streams, Temporal clustering, Dynamic instance weighting, Multi-target regression, Dynamic Time Warping, Market trend prediction, Extreme values, Machine learning</p>
</div>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">190713</post-id>	</item>
	</channel>
</rss>
