fix miss symbol
This commit is contained in:
parent
1fceaad2fc
commit
ea0874e078
|
|
@ -25,3 +25,4 @@ questionary
|
||||||
langchain_anthropic
|
langchain_anthropic
|
||||||
langchain-google-genai
|
langchain-google-genai
|
||||||
binance-sdk-spot
|
binance-sdk-spot
|
||||||
|
telethon
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ Volatility Indicators:
|
||||||
prompt = prompt.partial(system_message=system_message)
|
prompt = prompt.partial(system_message=system_message)
|
||||||
prompt = prompt.partial(tool_names=", ".join([tool.name for tool in tools]))
|
prompt = prompt.partial(tool_names=", ".join([tool.name for tool in tools]))
|
||||||
prompt = prompt.partial(current_date=current_date)
|
prompt = prompt.partial(current_date=current_date)
|
||||||
prompt = prompt.partial(ticker=symbol)
|
prompt = prompt.partial(symbol=symbol)
|
||||||
|
|
||||||
chain = prompt | llm.bind_tools(tools)
|
chain = prompt | llm.bind_tools(tools)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,9 +30,6 @@ def get_crypto_stats_indicators_window(
|
||||||
Returns:
|
Returns:
|
||||||
str: A formatted report containing the technical indicators for the specified ticker symbol and indicator.
|
str: A formatted report containing the technical indicators for the specified ticker symbol and indicator.
|
||||||
"""
|
"""
|
||||||
# quick fix add n seconds cooldown to avoid rate limit issues
|
|
||||||
import time
|
|
||||||
time.sleep(2)
|
|
||||||
|
|
||||||
# Supported indicators mapping
|
# Supported indicators mapping
|
||||||
supported_indicators = {
|
supported_indicators = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue