# source: https://raw.githubusercontent.com/OBC-crypto/bugis-freqtrade/cc37fdaa66e6e199457920347ae79aa3913d2cbe/obc-aset/strategies/DefaultStrategy.py
from freqtrade.strategy import IStrategy

class Github_OBC_crypto_bugis_freqtrade__DefaultStrategy__20250703_052303(IStrategy):
    minimal_roi = {
        "0": 0.01
    }

    stoploss = -0.10

    timeframe = '1h'

    def populate_indicators(self, dataframe, metadata):
        return dataframe

    def populate_buy_trend(self, dataframe, metadata):
        dataframe['buy'] = 0
        return dataframe

    def populate_sell_trend(self, dataframe, metadata):
        dataframe['sell'] = 0
        return dataframe
