update add_external_candle returns

This commit is contained in:
Timothy Pogue
2022-11-27 12:17:26 -07:00
parent 4cbb3341d7
commit 36a00e8de0
2 changed files with 11 additions and 9 deletions

View File

@@ -393,14 +393,16 @@ class ExternalMessageConsumer:
# Have dataprovider append it to
# the full datafame. If it can't,
# request the missing candles
if not self._dp._add_external_candle(
did_append, n_missing = self._dp._add_external_candle(
pair,
df,
last_analyzed=la,
timeframe=timeframe,
candle_type=candle_type,
producer_name=producer_name
):
)
if not did_append:
logger.info("Holes in data or no existing df, "
f"requesting data for {key} from `{producer_name}`")
@@ -408,7 +410,7 @@ class ExternalMessageConsumer:
producer_name,
WSAnalyzedDFRequest(
data={
"limit": 1000,
"limit": n_missing if n_missing > 0 else 1000,
"pair": pair
}
)