Beispiel #1
0
def pair_history(pair: str, timeframe: str, timerange: str, strategy: str,
                 config=Depends(get_config)):
    config = deepcopy(config)
    config.update({
            'strategy': strategy,
        })
    return RPC._rpc_analysed_history_full(config, pair, timeframe, timerange)
Beispiel #2
0
def pair_history(pair: str,
                 timeframe: str,
                 timerange: str,
                 strategy: str,
                 config=Depends(get_config),
                 exchange=Depends(get_exchange)):
    # The initial call to this endpoint can be slow, as it may need to initialize
    # the exchange class.
    config = deepcopy(config)
    config.update({
        'strategy': strategy,
    })
    return RPC._rpc_analysed_history_full(config, pair, timeframe, timerange,
                                          exchange)