This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| echo "🔍 Checking for Node.js..." | |
| if ! command -v node &> /dev/null; then | |
| echo "❌ Node.js not found. Please install it from https://nodejs.org/" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| from decimal import Decimal | |
| from typing import List, Dict | |
| import pandas as pd | |
| import pandas_ta as ta # noqa: F401 | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.core.data_type.common import OrderType, PriceType, TradeType |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from decimal import Decimal | |
| from typing import Dict | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.core.data_type.common import OrderType, PositionAction, PositionSide | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig | |
| from hummingbot.smart_components.controllers.dman_v3 import DManV3, DManV3Config | |
| from hummingbot.smart_components.strategy_frameworks.data_types import ExecutorHandlerStatus, TripleBarrierConf | |
| from hummingbot.smart_components.strategy_frameworks.market_making.market_making_executor_handler import ( | |
| MarketMakingExecutorHandler, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from decimal import Decimal | |
| from typing import Dict | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.core.data_type.common import OrderType, PositionAction, PositionSide | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig | |
| from hummingbot.smart_components.controllers.dman_v2 import DManV2, DManV2Config | |
| from hummingbot.smart_components.strategy_frameworks.data_types import ExecutorHandlerStatus, TripleBarrierConf | |
| from hummingbot.smart_components.strategy_frameworks.market_making.market_making_executor_handler import ( | |
| MarketMakingExecutorHandler, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from decimal import Decimal | |
| from typing import Dict | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.core.data_type.common import OrderType, PositionAction, PositionSide | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig | |
| from hummingbot.smart_components.controllers.dman_v3 import DManV3, DManV3Config | |
| from hummingbot.smart_components.strategy_frameworks.data_types import ExecutorHandlerStatus, TripleBarrierConf | |
| from hummingbot.smart_components.strategy_frameworks.market_making.market_making_executor_handler import ( | |
| MarketMakingExecutorHandler, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from decimal import Decimal | |
| from typing import Dict | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.core.data_type.common import OrderType, PositionAction, PositionSide | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig | |
| from hummingbot.smart_components.controllers.dman_v2 import DManV2, DManV2Config | |
| from hummingbot.smart_components.strategy_frameworks.data_types import ExecutorHandlerStatus, TripleBarrierConf | |
| from hummingbot.smart_components.strategy_frameworks.market_making.market_making_executor_handler import ( | |
| MarketMakingExecutorHandler, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from decimal import Decimal | |
| from typing import Dict | |
| from hummingbot.connector.connector_base import ConnectorBase, TradeType | |
| from hummingbot.core.data_type.common import OrderType | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig | |
| from hummingbot.smart_components.controllers.macd_bb_v1 import MACDBBV1, MACDBBV1Config | |
| from hummingbot.smart_components.strategy_frameworks.data_types import ( | |
| ExecutorHandlerStatus, | |
| OrderLevel, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Dict | |
| import pandas as pd | |
| import pandas_ta as ta # noqa: F401 | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig, CandlesFactory | |
| from hummingbot.strategy.script_strategy_base import ScriptStrategyBase | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Dict | |
| import pandas as pd | |
| import pandas_ta as ta # noqa: F401 | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig, CandlesFactory | |
| from hummingbot.strategy.script_strategy_base import ScriptStrategyBase | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Dict | |
| import pandas as pd | |
| import pandas_ta as ta # noqa: F401 | |
| from hummingbot.connector.connector_base import ConnectorBase | |
| from hummingbot.data_feed.candles_feed.candles_factory import CandlesConfig, CandlesFactory | |
| from hummingbot.strategy.script_strategy_base import ScriptStrategyBase | |