Skip to content

lancecarlson/speculatorlab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

speculatorlab

Backtest your trading strategies

Ruby based backtesting engine that you can test your trading strategies against.

require "trader"

include Trader

s = Strategy.new("My strategy") do
  buy(stop: (close - 10)) if close > 100
  sell(stop: (close + 10)) if close < 100
end

About

Backtest your trading strategies

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published