DevAlpha is an algorithmic trading platform specially tailored for developers.
Editor agnostic. Light as a feather. Fast as hell.
// 1. Import devalpha
import { createTrader } from 'devalpha'
// 2. Define your strategy
const strategy = (context, action) => {
context.order({
identifier: 'GOOG',
price: 100,
quantity: 40
})
}
// 3. Make money!
createTrader({
startCapital: 100000
}, strategy)
DevAlpha is currently invite only. Sign up for our private beta and we'll reach out to you when your seat is ready!
DevAlpha does not force you to use a broken web editor for writing your code, but rather encourages you to use the one you're most comfortable with.
createTrader(
config,
(context, action) => {
...
})
.errors((e) => logger.log(e))
DevAlpha provides all you need to kick start your trading, while still allowing you to extend it how you like. Use your own code editor, and integrate all your favourite tools.
Oh, did we mention that you can even self-host your strategies and use the DevAlpha web interface for monitoring?
createTrader({
guard: {
shorting: false,
margin: false
},
dashboard: {
active: true
}
}, strategy)
In DevAlpha, everything is client-side by design. That means your data never leaves your computer, and you can be truly 100% sure that you own what's rightfully yours.
createTrader({
dashboard: {
active: true,
port: 1234
}
}, strategy)
Level up your algorithmic trading.