BackDocs

Peersify — how it works

Peersify is an arcade game played on top of a moving price tape. You tap squares on a grid; if the line touches your square, you get the square's multiplier. This page documents the rules, the math, and where the data comes from.

Disclaimer

  • Not a financial product. Peersify is not a broker, exchange, or investment service. No trade, contract, derivative, option, or position of any kind is created. Nothing here is financial advice.
  • Not gambling. The project is a technical demonstration of a game concept. It is played with a demo balance that has no monetary value and cannot be withdrawn or exchanged.
  • Demonstration only. Prices are used as a public, third-party data signal for entertainment. Feeds can be delayed, interpolated, or unavailable, and the game may substitute synthetic movement when a source is stale.
  • No guarantees. Balances, stats, multipliers, and settings may be reset or changed at any time.

Overview

The vertical axis is price, the horizontal axis is time. The tape scrolls right to left; the current price is the line on the right edge of the past. Everything to the right of the line is the future — a grid of offers, each with its own multiplier.

A square covers one price band and one time window. Its multiplier reflects how unlikely it is for the price line to reach that band inside that window, minus the house margin.

Game mechanics

  1. Pick an instrument in the asset picker and a stake from the stake bar.
  2. Tap a square in the future area, or drag across several squares to place multiple bets at once. Each square costs one stake.
  3. As the tape advances, the square resolves the moment the price line touches its price band while the square's time window is active. Touch inside the window wins; a square that scrolls past untouched is lost.
  4. A win pays stake × multiplier credited immediately, with a win animation and floating payout label.
  5. Squares that the price has already passed retire and dissolve — you cannot bet on the past, and future squares cannot settle early.
  6. Each column is a fixed time slice (a few seconds). Tape speed is configurable and can differ between desktop and mobile so that squares stay large enough to tap.

How multipliers are calculated

Multipliers are recomputed continuously from the live tape — they are not a fixed table. The pipeline for every visible square is:

  1. Measure volatility. The engine keeps a rolling window of realised returns from the live feed for the selected instrument.
  2. Estimate hit probability. Using a fat-tailed mixture model plus Monte Carlo sampling of recent returns, the engine estimates the probability p that the line touches the square's price band before its window closes. Distance from the current price, remaining time, and recent momentum all feed into p — squares in the direction the price is already moving get a higher p and therefore a lower multiplier.
  3. Apply the house return. The raw fair payout 1/p is scaled by a house return factor R < 1, so the expected value of a square is p × (R/p) = R.
  4. Reserve and compress. An extra probability reserve and a knee-based compression curve pull long-shot payouts down, so tail squares never pay their naive fair odds.
  5. Clamp. The result is bounded to a published minimum and maximum multiplier and rounded for display. Extremely likely or extremely unlikely squares are not offered at all.

Values are refreshed a few times per second rather than every frame, so the numbers stay readable while still tracking the market.

House edge & fees

  • Every square carries a built-in margin: expected return is the house return factor R, so the theoretical edge is 1 − R. The current edge and realised volatility for your session are shown in the on-screen session strip.
  • Payout mechanics are tuned per instrument — house return, min/max multiplier, probability bounds, reserve strength, knee and volatility tuning. Low-volatility instruments and the Blocks feeds use tighter parameters, because otherwise wide rows of squares could be covered profitably.
  • A platform fee (default 0.1% of stake, configurable) is charged per square and shown in the session strip. Fees are counted separately from stakes and payouts.
  • Covering a whole column or a wide price row does not create positive expected value: each square is priced independently with the same margin, so the margin adds up with the coverage.

Price sources

Crypto instruments stream live from public Binance market data (book ticker plus a REST backfill of recent candles so the chart has history the moment you open it). Gold tracks a tokenised-gold market pair as its public proxy. Other instruments (silver, coffee, WTI, natural gas, copper, AAPL, TSLA, NVDA) use a calibrated simulated feed seeded from a realistic reference price and volatility.

  • Between prints the line is smoothed with a critically damped follower, so movement is continuous rather than stepped. Smoothing is cosmetic; settlement uses the interpolated path the line actually draws.
  • If a live source stops printing new values (illiquid hours, closed spot market), the tape continues with a small bounded random walk around the last real print and snaps back to the feed as soon as it revives.
  • Prices are indicative third-party data for gameplay. They are not quotes, and they are not suitable for any real trading or valuation purpose.

Blocks (on-chain randomness)

The Blocks category replaces market price with on-chain entropy: the last byte of the newest block hash on Solana or Arbitrum, giving a value in the 0–255 range that updates several times per second.

  • The grid is hard-bounded to the 0–255 range — no impossible levels are drawn.
  • Instead of jumping straight to each new byte, the line follows a trend-based random walk: the byte sets direction, while bounded impulses and a speed limit produce organic pullbacks. This keeps it chart-like and prevents the line from sweeping entire rows of squares.
  • Blocks use their own, tighter payout parameters because the signal is pure noise.

Fairness & limits

  • Every offered square shows its stake and multiplier before you commit.
  • A square can only settle inside its own time window; already-passed and not-yet-active squares cannot win.
  • The grid step is stabilised with hysteresis and floors, so squares keep their shape and do not collapse during quiet or violent markets.
  • Payout parameters and the platform fee are operator-tunable and can change; the values shown on screen at the moment you bet are the ones applied.

Virality & reach

Peersify is built as a shareable, zero-friction web experience — no install, no signup, instant demo play. The growth mechanics are:

  • Instant first session. The chart is pre-filled with history and playable within a second of opening the link; a first-visit walkthrough explains the price axis, assets, stakes and multipliers.
  • Screenshot-ready moments. High-contrast neon visuals, win bursts and floating payout labels make big-multiplier hits worth capturing and posting.
  • Link-first distribution. One URL works on desktop and mobile, with social preview metadata so shared links unfurl with a title, description and cover image.
  • Breadth of instruments. Crypto, commodities, energy, equities and on-chain Blocks give many communities their own reason to open the game.
  • Repeat sessions. Persistent stats, stake and instrument, plus a resettable demo balance, make returning cheap and the progression legible.
  • Measurable reach. Aggregate reach and engagement (sessions, squares played, active instruments, demo vs live split) are tracked in the operator dashboard, so campaigns can be evaluated per instrument and per device.

FAQ

Can I win or lose real money?
No. The demo balance has no monetary value and cannot be cashed out.
Why did my multiplier drop before I tapped?
Multipliers are live. When price moves toward a square, its hit probability rises and the multiplier falls.
Why is a price barely moving?
Some markets are closed or illiquid at that hour. The tape then continues with a small bounded walk and snaps back when real prints resume.
Does covering more squares improve my odds?
It raises your chance of a hit and your total cost by the same margin — the edge scales with coverage.

Peersify is an entertainment demonstration. Not a financial instrument, not investment advice, not a gambling service.