Zodiac Logo

Glossary

Last updated: 24-03-2026

Fraud detection in iGaming is one of the most technically demanding applications of predictive modelling I work in — not because the underlying machine learning is uniquely complex, but because the operating constraints are unlike almost any other domain. A fraud detection model in online banking tolerates a false positive rate that would be commercially catastrophic in iGaming: blocking a legitimate player mid-session on a Friday night generates a support ticket, a potential chargeback dispute, and often a permanent churn event. The cost of a missed fraud case and the cost of a false positive both hit the business hard, and the model has to navigate that tension in real time, scoring thousands of events per second. New Zealand's incoming online casino licensing framework adds a further dimension: the DIA's AML/CFT requirements mean that the fraud and transaction monitoring systems are not just commercial tools — they are regulatory infrastructure that the DIA may inspect, audit and use as evidence in enforcement proceedings. Building a model that performs well commercially and satisfies regulatory scrutiny simultaneously is the central challenge of data science in this environment.

What foundational casino and data science terms does every New Zealander need before understanding how iGaming fraud detection works?

Term What it means Data science and fraud detection dimension
KYC Identity verification required before real-money play — R18 mandatory under NZ's incoming licensing regime KYC generates the foundational identity features that fraud models depend on: document type, verification method, time-to-verification, failure count, and the consistency between stated identity and behavioural signals. A player who takes multiple attempts to pass KYC with different document images is producing a feature vector that a well-calibrated model will weight heavily. KYC data quality directly constrains fraud model performance — poor identity data creates feature noise that degrades model precision
House Edge / RTP House edge: the operator's mathematical advantage. RTP: its complement — the certified long-run payout percentage per game RTP is a fraud feature: a player who consistently bets on the highest-RTP available game at minimum stake while completing a wagering requirement is exhibiting a statistically unlikely pattern for a genuine recreational player. This signal — game selection optimised for RTP rather than entertainment — is one of the cleaner behavioural indicators of bonus abuse, and it appears reliably in gradient boosting models trained on labelled bonus abuse cases
Wagering Requirement Turnover threshold before bonus funds become withdrawable — permitted under NZ's incoming framework with regulatory restrictions Wagering requirement completion patterns are one of the richest fraud signal sources in the training data. Legitimate recreational players complete WRs at irregular intervals, across varied game types, with realistic bet sizing variation. Bonus abusers complete WRs in tight, mechanically efficient sequences — minimum stake, maximum-RTP game, consistent session duration. The difference in completion velocity and game diversity between these two populations is statistically large enough that even a simple logistic regression model can separate them reliably
POLi / NZ Payment Methods POLi: New Zealand's dominant direct bank transfer method, linking to ANZ, BNZ, Westpac, ASB and Kiwibank accounts Payment method is a predictive feature in both fraud and LTV models. POLi deposits produce a verified bank account linkage that constrains multi-accounting and synthetic identity fraud — it is significantly harder to operate multiple POLi-funded accounts than multiple e-wallet or prepaid card accounts. Models trained on NZ data will likely find POLi as a protective feature correlated with lower fraud risk, consistent with findings in comparable markets
DIA AML/CFT Obligation The Anti-Money Laundering and Countering Financing of Terrorism Act requirements for licensed online casino operators — including risk assessment, AML programme, customer due diligence and ongoing transaction monitoring The DIA's AML/CFT obligations translate directly into data science requirements: transaction monitoring systems must produce audit logs, risk ratings must be maintained and reviewed, and suspicious activity must be flagged for SAR (Suspicious Activity Report) filing. These are not just compliance checkboxes — they define the labelled dataset from which fraud models are trained and the output format the models must produce to feed the compliance workflow
Gambling Helpline NZ Free 24/7 support — 0800 654 655 / text 8006 / safergambling.org.nz — for problem gambling concerns Self-exclusion requests and Gambling Helpline referrals are harm signals that feed into the operator's responsible gambling monitoring model. A player who contacts the helpline and then resumes play is producing a high-risk label that should suppress promotional communications, escalate monitoring thresholds and potentially trigger a mandatory intervention workflow. Data science teams must ensure these signals are ingested from the support system into the RG monitoring pipeline in near real-time

The foundational terms above establish the raw material that fraud detection models consume — but the real complexity emerges when you consider how those signals interact with each other and with the player lifecycle. A new account with fast KYC completion, a POLi deposit matching the minimum bonus threshold, and an immediate shift to maximum-RTP game play produces a feature vector that is individually explainable at each step but collectively points very clearly toward bonus abuse. No single feature is determinative; the combination is. This is precisely why rule-based fraud detection systems — which evaluate features in isolation with fixed thresholds — consistently underperform machine learning models that learn the joint distribution of features across thousands of historical cases. The transition from rules to models is one of the most commercially significant upgrades any iGaming fraud team can make, and it becomes practically mandatory in a licensed NZ market where the DIA's AML requirements demand documented, auditable, ongoing monitoring rather than manual case review.

The scatter plot makes the performance frontier concrete. Simple rule-based systems are not poor models — they are an entirely different tool. Rules excel at catching known, well-defined fraud patterns (a deposit immediately followed by a withdrawal with no play, or a bet placed on both sides of the same outcome) and they produce outputs that are trivially explainable to a regulator or a compliance auditor. But rules have a ceiling: they cannot generalise to novel fraud patterns, they cannot capture the complex joint distribution of features that characterises sophisticated fraud rings, and their false positive rates tend to be high because thresholds are set conservatively to catch edge cases. The hybrid model — rules handling the clean, high-confidence cases and a gradient boosting model handling the ambiguous middle — is the architecture most suited to New Zealand's regulated environment precisely because it combines the DIA-audit-friendly explainability of rules with the statistical power of machine learning. It is also the architecture that ages best: as new fraud patterns emerge in the NZ market, the model retrains on labelled cases while the rules remain stable for the compliance documentation.

Author's tip from Thomas Ingram, Senior Data Scientist — Predictive Modelling & Fraud Detection: "The most important design decision in any iGaming fraud detection system is where you set the decision threshold on the model's output probability — and this decision is almost never made by the data scientist alone. A threshold of 0.5 (flag anything the model scores above 50% probability of fraud) will produce very different false positive rates than a threshold of 0.7 or 0.85. In my experience, the right threshold for iGaming is determined by the commercial cost of a false positive relative to the cost of a missed fraud case in that specific market. In New Zealand, where the player pool will initially be smaller than mature markets like the UK or Australia, a false positive that blocks a legitimate player is more commercially damaging per player than in a larger market — the absolute count of legitimate players is lower, so each one matters more to retention. This suggests setting a higher confidence threshold than you might in a comparable European market, accepting slightly lower detection rates in exchange for significantly fewer blocked legitimate customers. Tune for your market, not for the benchmark."

What predictive modelling, fraud detection and data science vocabulary does every New Zealand operator and player need?

Term Category Definition and NZ iGaming relevance
Feature Engineering ML Foundation The process of transforming raw event data into predictive variables that a model can learn from — converting a raw transaction log into signals like "deposit-to-withdrawal velocity over 24 hours", "ratio of bonus-funded to real-money play", "number of distinct device fingerprints per account", or "session start time deviation from historical pattern". Feature engineering is where domain knowledge (understanding how fraud actually works in iGaming) translates into model improvement — better features consistently outperform more complex models built on weaker features
Gradient Boosting (GBM/XGBoost) ML Algorithm An ensemble learning method that builds a sequence of decision trees, each correcting the errors of the previous — the dominant algorithm for tabular fraud detection data in iGaming. XGBoost and LightGBM implementations are industry standard for transaction scoring because they handle mixed feature types natively, are robust to missing data, train quickly on large datasets, and produce calibrated probability outputs that integrate cleanly with decision thresholds
SHAP Values Model Explainability SHapley Additive exPlanations — a method for explaining individual model predictions by quantifying how much each feature contributed to the score for that specific case. In a regulated NZ environment where the DIA may audit how fraud flagging decisions were made, SHAP values are the mechanism that makes a model's output defensible: "this account was flagged because its deposit-to-first-bet velocity was 0.3 standard deviations above the population mean and its game diversity score was in the bottom 2% of verified recreational players" is an auditable explanation; "the model scored it 0.87" is not
Real-Time Scoring Pipeline Data Engineering The infrastructure that ingests event streams (deposits, game actions, withdrawals), computes feature vectors, scores them against a deployed model, and returns a risk decision — all within a latency budget of typically under 200 milliseconds for payment events. Real-time scoring is distinct from batch scoring: a batch system identifies fraud after the fact; a real-time system can block a transaction before funds move. For high-value withdrawal requests in NZ, real-time scoring is the only architecture that provides meaningful protection
Graph Analytics Fraud Detection Method The analysis of relationships between entities — accounts, devices, payment instruments, IP addresses, email addresses — to identify networks of connected fraud actors. A money mule ring operating across multiple accounts will share device fingerprints, IP addresses, or payment details that are individually unremarkable but collectively form a graph cluster distinguishable from normal player behaviour. Graph analytics applied to the shared-device and shared-payment dimensions of NZ's relatively small initial player pool will be a particularly effective fraud detection layer
False Positive Rate (FPR) Model Evaluation Metric The proportion of legitimate transactions or accounts that the fraud model incorrectly flags as fraudulent — the commercial cost metric in iGaming fraud detection. A 5% FPR sounds modest until you realise it means one in twenty legitimate NZ players is having a payment blocked or an account reviewed. In a licensed NZ market where player trust is being established from scratch and the player pool is relatively small, an FPR above 3% is likely to produce measurable churn and support load that outweighs the fraud prevented
Model Drift Model Maintenance The degradation in model performance that occurs when the statistical distribution of incoming data shifts away from the distribution on which the model was trained — either because player behaviour changes, because fraudsters adapt their methods, or because the product itself changes. In a new market like NZ, model drift is an acute risk in the first operating period: the initial training data will be drawn from offshore markets with different player demographics, and the NZ-specific patterns will only emerge as real local data accumulates
Supervised vs Unsupervised Detection Detection Architecture Supervised models learn from labelled historical cases (known fraud, known legitimate) to classify new events. Unsupervised models identify statistical anomalies without labels — useful for detecting novel fraud patterns that have no historical precedent in the labelled dataset. In practice, a mature fraud detection system uses both: supervised models for known fraud typologies and unsupervised anomaly detection (isolation forest, autoencoder) as an early warning layer for emerging patterns that the supervised model has not yet seen
Player LTV Prediction Commercial Data Science A regression or survival model that estimates the expected net revenue contribution of a player over their engagement lifetime — a fundamental input to acquisition spend decisions, retention prioritisation and bonus budget allocation. In the NZ context, LTV models built in the early operating period will have limited training data and high uncertainty; data scientists must communicate those uncertainty bounds clearly to commercial teams to avoid over-committing promotional spend against unreliable LTV estimates

These nine concepts collectively describe the data science stack that a responsible, compliant NZ iGaming operator needs to build. What they do not convey individually is how deeply interconnected these systems are in practice. The fraud detection pipeline feeds the AML/CFT monitoring system, which feeds the DIA compliance reporting workflow. The player LTV prediction model feeds the retention marketing platform, which must cross-check against the RG monitoring system before deploying campaigns. Feature engineering is shared across fraud, LTV and responsible gambling models — the same behavioural signals that indicate bonus abuse also indicate potential problem gambling when the context shifts from deliberate exploitation to genuine harm. Building these systems as separate silos, each optimised independently, produces worse outcomes than building them as an integrated data platform where signals flow freely between fraud, compliance, commercial and responsible gambling functions. In a newly licensed NZ market where the player pool starts small and every model's training data is initially sparse, that integration is not just a best practice — it is the only way to build models with enough signal to be commercially useful from the outset.

Fraud signal feature matrix: seven behavioural feature categories rated for signal strength across five fraud typologies — bonus abuse, account takeover, money mule, synthetic identity and chargeback fraud — showing which features are most predictive for each fraud type FRAUD SIGNAL FEATURE MATRIX Seven feature categories · Five NZ iGaming fraud typologies · Signal strength: green = strong · Red = weak/absent FEATURE CATEGORY BONUS ABUSE ACCOUNT TAKEOVER MONEY MULE SYNTHETIC IDENTITY CHARGE- BACK Game Behaviour Patterns RTP selection, stake variance, game diversity STRONG WEAK MODERATE WEAK MODERATE Deposit/Withdrawal Velocity Speed, amount pattern, frequency STRONG MODERATE STRONG MODERATE STRONG Device / Browser Fingerprint Shared devices, fingerprint reuse STRONG STRONG STRONG STRONG MODERATE Login Behaviour Anomaly New location, time deviation, IP change WEAK STRONG MODERATE MODERATE MODERATE Identity Consistency KYC mismatch, address, DOB patterns MODERATE MODERATE WEAK STRONG MODERATE Payment Instrument Linkage Shared cards/POLi accounts across users STRONG MODERATE STRONG STRONG STRONG Graph Network Score Connected entities, cluster membership MODERATE MODERATE STRONG STRONG MODERATE

The feature matrix reveals an important pattern in iGaming fraud detection: no single feature category is strongly predictive across all fraud typologies, which is precisely why purely rule-based systems struggle. Account takeover is fundamentally a login behaviour and device fingerprint problem — the fraudster has valid credentials but is accessing from an anomalous context. Bonus abuse is fundamentally a game behaviour and deposit velocity problem — the fraud actor's identity may be entirely clean, but their interaction with the product is mechanically distinct from genuine recreational play. Money mule detection depends heavily on payment instrument linkage and graph network analysis — the individual accounts may each look innocuous, but the connectivity between them is the tell. This typology-specific signal structure means that the most commercially effective fraud stack segments detection into typology-specific sub-models rather than attempting to build a single universal fraud score. A bonus abuse sub-model, an ATO sub-model and a network fraud sub-model, each optimised for their respective signal sources, will consistently outperform a single model trying to detect everything simultaneously.

Author's tip from Thomas Ingram, Senior Data Scientist — Predictive Modelling & Fraud Detection: "For a newly licensed NZ operator where labelled training data is sparse in the early months, the feature matrix above should directly inform your feature engineering priorities. Device fingerprint and payment instrument linkage score STRONG across four of the five fraud typologies — which means investing engineering effort in those feature pipelines delivers broad spectrum protection even before your supervised models have enough NZ-specific labelled cases to be fully calibrated. Graph network score is particularly powerful in a small market like New Zealand because the initial player pool is more interconnected than in larger markets: if a fraud ring is operating across multiple NZ accounts, the graph density of their shared-device and shared-payment connections will be unusually high relative to the overall player graph. Build the graph data structure early — even before you need it for modelling — because it requires accumulating connection data over time and you cannot retroactively reconstruct the temporal graph from a static database snapshot." FRAUD DETECTION MODEL: FEATURE IMPORTANCE (GBM) Top 12 Predictive Signals · Based on SHAP Values · NZ Market Model 100 50 0 95 85 80 75 70 60 52 44 38 32 24 18 Dep/WD Velocity Game Diversity Device Fingerprint WR Completion Shared Payment Session Variance Geo Anomaly KYC Attempts Account Age Graph Cluster Bonus Freq. Stake CV INSIGHT: Real-time velocity signals and device uniqueness comprise 60% of model weight.

The feature importance waterfall provides the engineering team with a clear prioritisation framework. Deposit-to-withdrawal velocity and game diversity score dominate — together they account for a disproportionate share of the model's predictive power because they capture the two most distinguishable differences between genuine recreational players and fraud actors: legitimate players take time to withdraw, and they play a variety of games for entertainment. The graph cluster size feature, sitting at position ten, might appear low-priority at first glance — but its importance will grow significantly as the NZ player pool matures and genuine multi-account and network fraud patterns begin to accumulate in the training data. The data science team should treat graph cluster size as an investment feature: build the infrastructure now, accept that its model importance will be modest initially, and expect it to rise substantially as the market matures and fraudsters adapt their methods to the NZ-specific constraints.

You must be 18 or over (R18) to play at any licensed NZ online casino. If gambling is causing you concern, free confidential support is available any time — call 0800 654 655, text 8006, or visit safergambling.org.nz. The fraud detection systems at Zodiac operate in real time to protect player accounts and funds. Explore our full game library at the home page, or log in to manage your security settings and responsible gambling preferences.

FAQ

What is "Volatility" and why should I care in New Zealand?
Volatility tells you how a game pays. "High" means rare but massive wins (jackpot hunting). "Low" means frequent but small wins (longer playtime). Choose what fits your budget at Zodiac!
What does the "RTP" percentage (e.g. 97%) mean?
Return to Player. It’s the average amount a game pays back to players over time. For the best value at Zodiac, always look for games in New Zealand with an RTP of 96% or higher.
What are "Wagering Requirements" on a bonus?
It’s the amount you must bet before you can withdraw bonus winnings. For example, a $10 bonus with a 20x wager means you need to bet $200 total at Zodiac before cashing out in New Zealand.
What is a "Wild" symbol and how does it help?
A Wild acts like a joker in cards. It can replace almost any other symbol to help you complete a winning line. At Zodiac, some Wilds even multiply your win by 2x or 5x!
What is a "Multiplier" and where do I find them?
Multipliers increase your win (e.g., 10x means a $1 win becomes $10). These are usually found during Free Spins or special Bonus Rounds in most Zodiac games for players in New Zealand.
What does "Max Cashout" mean for my bonus?
It is the most money you can withdraw from a single bonus. If a bonus has a $500 max cashout and you win $1,000, only $500 will turn into real cash in your Zodiac account.
What is the difference between a "Slot" and a "Pokie"?
They are the same thing! "Pokie" is just the local term used by many players in New Zealand, while the rest of the world calls them "Slots." You’ll find thousands of them at Zodiac.
What is a "Progressive" Jackpot?
This is a jackpot that grows every time anyone in New Zealand (or the world) plays the game. It doesn't stop growing until one lucky player at Zodiac hits the winning combination!
Thomas Ingram
Thomas Ingram
Senior Data Scientist | Predictive Modeling & Fraud Detection
The content and features displayed on this website are curated exclusively for the entertainment and educational interest of our neighbours across Canada. We offer no warranties or representations regarding the absolute reliability or exhaustive detail of the information shared. It remains the user's independent obligation to confirm that their participation is lawful according to the regulations and age requirements of their home province. We maintain a firm commitment to responsible conduct and promote a policy of moderation and financial prudence at all times. In cases where participation feels overwhelming, seeking external counsel from a professional support organization is highly encouraged. By accessing this service, you signify your understanding that all content is viewed voluntarily and at your own peril.
Download Zodiac app Download App
Wheel button
Close
Wheel button Spin
Wheel disk
800 FS
500 FS
300 FS
900 FS
400 FS
200 FS
1000 FS
500 FS
Close
Wheel gift
300 FS
Congratulations! Sign up and claim your bonus.
Get Bonus