π
logo

Open Source Quant Framework

Backtest in seconds

High-performance, easy-to-use open source quantitative trading framework

AI-Powered Strategy Reasearch

  • AI-Assisted Strategy Writing
  • Get Strategy Inspiration
  • Improve Existing Strategies
  • AI-Powered Debugging
  • Better Code Understanding
AI Strategy Implementation
Fast Backtesting

Rapid Backtesting

  • Backtest One Year of Data in One Second
  • No Lookahead Bias
  • Complete Equity Curves
  • Candlestick Order Analysis
  • Rich Performance Metrics

Hyperparameter Optimization

  • Bayesian Optimization
  • Simple Syntax
  • Linear/Normal Distribution
  • Multiple Optimization Algorithms
1

2
func Demo(pol *config.RunPolicyConfig) *strat.TradeStrat {
3
	smlLen := int(pol.Def("smlLen", 5, core.PNorm(3, 10)))
4
	bigLen := int(pol.Def("bigLen", 20, core.PNorm(10, 40)))
5
	return &strat.TradeStrat{
6
		WarmupNum: 100,
7
		OnBar: func(s *strat.StratJob) {
8
			e := s.Env
9
			ma5 := ta.SMA(e.Close, smlLen)
10
			ma20 := ta.SMA(e.Close, bigLen)
11
			maCrx := ta.Cross(ma5, ma20)
12
		},
13
	}
14
}
Fast Backtesting

Live Trading

  • Paper Trading
  • Binance Exchange Support
  • Run Hundreds of Accounts in One Process
  • Notifications with Social Apps
  • Completely Free

Verify your Idea in seconds

Implement strategies and backtesting faster!