2024-10-28 06:36:10 +01:00
|
|
|
from aiomql.lib.symbol import Symbol
|
2024-10-06 23:20:59 +01:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
2024-11-04 00:32:51 +01:00
|
|
|
@pytest.fixture(scope="function")
|
2024-10-28 06:36:10 +01:00
|
|
|
def btc_usd():
|
2024-11-04 00:32:51 +01:00
|
|
|
return Symbol(name="BTCUSD")
|
2024-10-06 23:20:59 +01:00
|
|
|
|
|
|
|
|
|
2025-08-10 04:14:00 +01:00
|
|
|
@pytest.fixture(scope="function")
|
|
|
|
|
def eth_usd():
|
|
|
|
|
return Symbol(name="ETHUSD")
|
|
|
|
|
|
|
|
|
|
|