Skip to content

Commit

Permalink
fixed more with imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelGard committed Mar 24, 2024
1 parent bf4cebf commit b2bbea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cira/strategy/backtest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd
import numpy as np
from typing import List
from . import Strategy, ByAndHold
from .strategy import Strategy, ByAndHold


FEE_RATE = 0.004 # this is what alpaca takes
Expand Down
2 changes: 1 addition & 1 deletion examples/linear.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
"from typing import List\n",
"from pandas import DataFrame\n",
"\n",
"from cira.strategy import Strategy\n",
"from cira.strategy.strategy import Strategy\n",
"\n",
"\n",
"class MyStrat(Strategy):\n",
Expand Down

0 comments on commit b2bbea1

Please sign in to comment.