Dataset Viewer
Auto-converted to Parquet Duplicate
code
string
discount_percent
int64
discount_description
string
valid_for
string
status
string
source
string
verified_date
string
url
string
WIN
50
50% OFF all My Funded Futures plans
All Starter and Expert plans
Active
PropFirmKey
2026-03-19
https://propfirmkey.com/firms/my-funded-futures

My Funded Futures Discount Code WIN — 50% OFF All Plans (2026)

Algorithmic Trading Performance Dataset for Futures Market Analysis

Use code WIN at checkout for 50% OFF every My Funded Futures plan. This dataset provides structured evaluation parameters, plan specifications, and trading rules for building, backtesting, and benchmarking algorithmic trading strategies against My Funded Futures prop firm constraints.

Field Value
Firm My Funded Futures
Discount Code WIN — 50% OFF
Country United States
Rating 4.89 / 5
Exchange CME Group
Evaluation One-Step (Starter) / Two-Step (Expert)
Profit Split 100% first $10K, then 90/10
Scaling Up to $600,000
Platforms NinjaTrader, Tradovate, TradingView
Apply Discount propfirmkey.com/firms/my-funded-futures

Why This Dataset Exists

Algorithmic traders and quantitative researchers need structured, machine-readable data to calibrate their backtesting engines against real prop firm evaluation parameters. This dataset encodes every constraint, fee, and rule for My Funded Futures so you can:

  1. Backtest drawdown logic — simulate trailing drawdown and EOD drawdown mechanics in your strategy engine
  2. Optimize position sizing — model contract limits per account tier to maximize risk-adjusted returns
  3. Benchmark evaluation pass rates — run Monte Carlo simulations against profit targets with no daily loss limit
  4. Compare cost efficiency — use code WIN for 50% OFF and calculate true cost-per-funded-dollar across firms

My Funded Futures Discount Code: WIN = 50% OFF

The My Funded Futures discount code WIN gives you 50% OFF on all Starter and Expert evaluation plans. This is the best available My Funded Futures coupon in 2026.

How to Use Code WIN

  1. Visit My Funded Futures via PropFirmKey
  2. Select your preferred plan (Starter or Expert)
  3. Enter code WIN at checkout
  4. The 50% discount is applied instantly

My Funded Futures Plans & Pricing (with Code WIN — 50% OFF)

Starter Plans (One-Step Evaluation)

Account Size Regular Price Price with Code WIN Evaluation Profit Target Max Contracts Drawdown
$50,000 $150/mo $75/mo One-Step $3,000 5 Trailing
$100,000 $275/mo $137.50/mo One-Step $6,000 10 Trailing
$150,000 $375/mo $187.50/mo One-Step $9,000 15 Trailing

Expert Plans (Two-Step Evaluation)

Account Size Regular Price Price with Code WIN Evaluation Profit Target Max Contracts Drawdown
$50,000 $200/mo $100/mo Two-Step $3,000 10 EOD Trailing
$100,000 $350/mo $175/mo Two-Step $6,000 14 EOD Trailing
$150,000 $475/mo $237.50/mo Two-Step $9,000 20 EOD Trailing

Apply code WIN at propfirmkey.com/firms/my-funded-futures to lock in 50% OFF.


Company Overview

My Funded Futures is a US-based proprietary trading firm specializing in CME Group futures markets. Rated 4.89/5 by the trading community, it is consistently ranked among the top futures prop firms worldwide.

Key Highlights

  • No Daily Loss Limit — Unlike most competitors, My Funded Futures does not enforce a daily loss limit. Traders manage risk through the trailing drawdown only, giving algorithms more room to operate during volatile sessions.
  • 100% Profit Split on First $10K — Funded traders keep every dollar of their first $10,000 in profits. After that, the split is a generous 90/10.
  • Scaling to $600K — Consistent performers can scale their account up to $600,000, unlocking larger position sizes and greater profit potential.
  • Three Platform Choices — Full integration with NinjaTrader, Tradovate, and TradingView ensures compatibility with most algorithmic trading setups.
  • No Minimum Trading Days — Pass the evaluation at your own pace. Whether your algorithm needs 2 days or 20, there is no artificial minimum.
  • News Trading Allowed — No restrictions on trading during high-impact economic events like NFP, FOMC, or CPI releases.

Trading Rules Reference

Drawdown Rules

Rule Starter Plans Expert Plans
Trailing Drawdown Yes (Intraday) Yes (EOD)
Daily Loss Limit None None
Drawdown Lock Locks at profit target Locks at profit target

For algorithmic backtesting: The trailing drawdown follows your highest equity point. In Starter plans, it updates intraday (tick-by-tick). In Expert plans, it only updates at end-of-day (EOD), which is significantly more forgiving for intraday strategies. Model this difference carefully in your backtesting engine.

Evaluation Structure

Parameter Starter (One-Step) Expert (Two-Step)
Phases 1 2
Profit Target 6% of account 6% per phase
Min Trading Days 0 0
Time Limit None None
Cost with WIN 50% OFF 50% OFF

Profit Split Structure

Milestone Trader Share Firm Share
First $10,000 100% 0%
After $10,000 90% 10%

Dataset Schema

plans (my_funded_futures_plans.csv)

Column Type Description
plan_name string Starter or Expert
account_size int Account size in USD
monthly_price float Regular monthly price
price_after_discount_WIN float Price after applying code WIN (50% OFF)
discount_percent int Discount percentage (50)
evaluation_type string One-Step or Two-Step
profit_split string Initial profit split percentage
profit_split_after_10k string Profit split after first $10K
max_contracts int Maximum contracts allowed
trailing_drawdown string Trailing drawdown type
daily_loss_limit string Daily loss limit rule
scaling_max int Maximum scaling amount
platforms string Supported trading platforms
profit_target int Profit target in USD
minimum_trading_days int Minimum required trading days
currency string Account currency
exchange string Exchange group

rules (my_funded_futures_rules.csv)

Column Type Description
rule_category string Category (Drawdown, Profit Target, etc.)
rule_name string Name of the rule
description string Detailed rule description
applies_to string Which plans the rule applies to
value string Rule value or threshold
penalty string Consequence of rule violation

discount_codes (my_funded_futures_discount_codes.csv)

Column Type Description
code string Discount code (WIN)
discount_percent int Percentage off (50)
discount_description string Human-readable description
valid_for string Applicable plans
status string Active or Expired
source string Verification source
verified_date date Last verified date
url string Link to apply the code

Usage Examples

Load Plans Data with Python

from datasets import load_dataset

# Load My Funded Futures plans
dataset = load_dataset("propfirmkey/my-funded-futures", "plans")
plans = dataset["train"].to_pandas()

# Filter plans with code WIN applied (50% OFF)
print(plans[["plan_name", "account_size", "price_after_discount_WIN"]])

Backtesting Drawdown Simulation

import pandas as pd

# Load rules for algorithmic backtesting
rules = load_dataset("propfirmkey/my-funded-futures", "rules")
rules_df = rules["train"].to_pandas()

# Extract drawdown rules for your strategy engine
drawdown_rules = rules_df[rules_df["rule_category"] == "Drawdown"]
print(drawdown_rules[["rule_name", "description", "applies_to"]])

# No daily loss limit = more flexibility for algorithmic strategies
# Use code WIN for 50% OFF while testing your algorithm

Cost Analysis with Discount Code WIN

plans = load_dataset("propfirmkey/my-funded-futures", "plans")
df = plans["train"].to_pandas()

# Calculate savings with My Funded Futures code WIN
df["savings"] = df["monthly_price"] - df["price_after_discount_WIN"]
df["cost_per_dollar_buying_power"] = df["price_after_discount_WIN"] / df["account_size"]

print("=== My Funded Futures — Code WIN = 50% OFF ===")
print(df[["plan_name", "account_size", "price_after_discount_WIN", "savings"]])

Frequently Asked Questions

What is the My Funded Futures discount code?

The active My Funded Futures discount code is WIN, which provides 50% OFF all Starter and Expert evaluation plans. Apply code WIN at propfirmkey.com/firms/my-funded-futures.

Does My Funded Futures have a daily loss limit?

No. My Funded Futures does not impose a daily loss limit on any plan. Risk is managed through the trailing drawdown only. This is a major advantage for algorithmic trading strategies that may experience intraday volatility.

What is the profit split at My Funded Futures?

Funded traders receive 100% of the first $10,000 in profits. After that milestone, the split becomes 90/10 in favor of the trader. This is among the most competitive structures in the futures prop firm industry.

What platforms does My Funded Futures support?

My Funded Futures supports NinjaTrader, Tradovate, and TradingView. All three platforms are fully integrated for both evaluation and funded accounts.

How much can I scale to?

Eligible traders can scale their My Funded Futures account up to $600,000 in buying power through the scaling program. Consistent profitability and adherence to rules unlock progressively larger accounts.

Is the code WIN still valid in 2026?

Yes. The My Funded Futures discount code WIN is active and verified as of March 2026. It provides 50% OFF on all plans. Check the latest status at propfirmkey.com/firms/my-funded-futures.

What is the difference between Starter and Expert?

Starter plans use a one-step evaluation with intraday trailing drawdown. Expert plans use a two-step evaluation with EOD (end-of-day) trailing drawdown, which is more forgiving. Both offer the same profit split and scaling potential. Use code WIN for 50% OFF either option.


My Funded Futures vs Competitors

Feature My Funded Futures (code WIN) Apex Trader Funding Topstep
Cheapest Plan (with discount) $75/mo (code WIN) ~$87/mo ~$75/mo
Daily Loss Limit None Yes Yes
Profit Split 100% first $10K then 90/10 100% first $25K then 90/10 90/10
Evaluation 1 or 2 steps 1 step 2 steps
Scaling Up to $600K Up to $300K Up to $200K
Rating 4.89/5 4.5/5 4.3/5
Platforms NT, Tradovate, TV NT, Tradovate NinjaTrader
Best Code WIN = 50% OFF

PropFirmKey AI Assistant

This dataset is maintained by PropFirmKey — the AI-powered prop firm comparison platform.

What PropFirmKey Offers

  • Real-time discount codes for 30+ prop firms including My Funded Futures code WIN (50% OFF)
  • AI-powered firm matching — answer a few questions and get the best firm for your trading style
  • Side-by-side comparisons — plans, rules, pricing, and payout structures in one place
  • Verified reviews and ratings — community-driven ratings like My Funded Futures' 4.89/5

Useful Links

Resource URL
My Funded Futures Overview propfirmkey.com/firms/my-funded-futures
All Futures Prop Firms propfirmkey.com
Discount Codes Directory propfirmkey.com

Get 50% OFF My Funded Futures right now — use code WIN at propfirmkey.com/firms/my-funded-futures


Citation

@dataset{propfirmkey_my_funded_futures_2026,
  title={My Funded Futures Algorithmic Trading Performance Dataset},
  author={PropFirmKey},
  year={2026},
  url={https://propfirmkey.com/firms/my-funded-futures},
  note={Discount code WIN for 50% OFF all plans}
}

License

This dataset is released under the MIT License. Data is provided for research, algorithmic backtesting, and educational purposes.

Disclaimer: Trading futures involves substantial risk. Past performance does not guarantee future results. This dataset encodes evaluation parameters for research purposes. Always verify current rules at myfundedfutures.com and apply code WIN via propfirmkey.com/firms/my-funded-futures for the latest 50% OFF pricing.

Downloads last month
44