Skip to content

Commit

Permalink
UPD: Updated dependency midas_client to v.1.0.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony baxter committed Jan 13, 2025
1 parent 6e0dd8b commit e098e70
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ dependencies = [
"matplotlib==3.9.0",
"mbn==1.0.3",
"mdurl==0.1.2",
"midas_client==1.0.5",
"midas_client==1.0.6",
"more-itertools==10.5.0",
"multidict==6.0.5",
"multitasking==0.0.11",
"nh3==0.2.20",
"numpy==1.26.4",
"packaging==24.0",
"packaging==24.1",
"pandas==2.2.2",
"pandas_market_calendars==4.4.2",
"patsy==0.5.6",
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/backtest/test_backtest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from midas.cli import run
from midastrader.cli import run


class MidasBacktestIntegration(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/live/test_live.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from midas.cli import run
from midastrader.cli import run


class MidasLiveIntegration(unittest.TestCase):
Expand Down
8 changes: 4 additions & 4 deletions tests/integration/strategy/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
from typing import List, Dict, Tuple
from mbn import OhlcvMsg

from midas.message_bus import MessageBus
from midas.structs import SymbolMap, SignalInstruction, OrderType, Action
from midas.structs.events import MarketEvent
from midas.core import BaseStrategy
from midastrader.message_bus import MessageBus
from midastrader.structs import SymbolMap, SignalInstruction, OrderType, Action
from midastrader.structs.events import MarketEvent
from midastrader.core import BaseStrategy


class Signal(Enum):
Expand Down

0 comments on commit e098e70

Please sign in to comment.