Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mojo playground #90

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions backtester/test/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .conftest import sample_options_datahandler, sample_stocks_datahandler, sample_stock_portfolio
from .backtester import sample_options_strategy
1 change: 1 addition & 0 deletions backtester/test/backtester/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .test_backtester import sample_options_strategy, run_backtest
6 changes: 3 additions & 3 deletions backtester/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# DataHandler fixtures


@pytest.fixture(scope='module')
# @pytest.fixture(scope='module')
def sample_stocks_datahandler():
data = TiingoData(SAMPLE_DATA_STOCKS)
return data
Expand All @@ -35,7 +35,7 @@ def constant_price_stocks():
return data


@pytest.fixture(scope='module')
# @pytest.fixture(scope='module')
def sample_options_datahandler():
data = HistoricalOptionsData(SAMPLE_DATA_OPTIONS)
return data
Expand All @@ -56,7 +56,7 @@ def ivy_portfolio():
return [Stock('VTI', 0.2), Stock('VEU', 0.2), Stock('BND', 0.2), Stock('VNQ', 0.2), Stock('DBC', 0.2)]


@pytest.fixture(scope='module')
# @pytest.fixture(scope='module')
def sample_stock_portfolio():
VOO = Stock('VOO', 0.4)
TUR = Stock('TUR', 0.1)
Expand Down
32 changes: 32 additions & 0 deletions main.mojo
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
from python import Python

fn main() raises:
Python.add_to_path("./")
var backtester = Python.import_module("backtester")
var test = Python.import_module("backtester.test")
var sample_stocks_datahandler = test.sample_stocks_datahandler()
var sample_options_datahandler = test.sample_options_datahandler()
var sample_options_strategy = test.backtester.sample_options_strategy(backtester.Direction.BUY, sample_options_datahandler.schema)


## This code below crashes for me for some reason, even though it looks the same as
## running test.backtester.run_backtest(...)

# var allocation = Python.dict()

# allocation["stocks"] = 0.50
# allocation["options"] = 0.50
# allocation["cash"] = 0

# var bt = backtester.Backtest(allocation, [])
# bt.stocks_data = sample_stocks_datahandler
# bt.options_strategy = sample_options_strategy
# bt.options_data = sample_options_datahandler
# bt.stocks = test.sample_stock_portfolio()

# bt.run(rebalance_freq=1)

test.backtester.run_backtest(sample_stocks_datahandler,
sample_options_datahandler,
sample_options_strategy,
stocks=test.sample_stock_portfolio())
Loading