LobeChat
Ctrl K
Back to Discovery
savvy_trader_ai

Savvy Trader AI

@savvytrader
Données d'investissement en temps réel sur les actions, les cryptomonnaies et autres.

Tool Parameters

banner
Gets the daily summary data (opening price, closing price, high price, low price, and more) for a length of time for the given asset. Useful for calculations using historical pricing over time
ParameterType
symbol
STRING
start
STRING
end
STRING

JSON Schema

json
[
  {
    "description": "Gets the daily summary data (opening price, closing price, high price, low price, and more) for a length of time for the given asset. Useful for calculations using historical pricing over time",
    "name": "getSummaries",
    "parameters": {
      "properties": {
        "symbol": {
          "type": "string"
        },
        "start": {
          "type": "string",
          "format": "date"
        },
        "end": {
          "type": "string",
          "format": "date"
        }
      },
      "required": [
        "symbol"
      ],
      "type": "object"
    }
  },
  {
    "description": "Gets asset information for a list of symbols",
    "name": "getAssetsInfo",
    "parameters": {
      "properties": {
        "stocks": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "cryptos": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "type": "object"
    }
  },
  {
    "description": "Gets the current price for a list of symbols",
    "name": "getQuotes",
    "parameters": {
      "properties": {
        "stocks": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "cryptos": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "type": "object"
    }
  }
]