add-portfolio-transaction
Add cryptocurrency transactions to manual portfolios by specifying coin, type, date, amount, and price for accurate tracking and management.
Instructions
Add a transaction to a manual portfolio.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Transaction amount | |
coinId | Yes | Coin ID | |
date | Yes | Transaction date in ISO format | |
fee | No | Transaction fee | |
notes | No | Transaction notes | |
price | Yes | Price per coin | |
shareToken | No | Portfolio share token | |
type | Yes | Transaction type |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Transaction amount",
"type": "number"
},
"coinId": {
"description": "Coin ID",
"type": "string"
},
"date": {
"description": "Transaction date in ISO format",
"type": "string"
},
"fee": {
"description": "Transaction fee",
"type": "number"
},
"notes": {
"description": "Transaction notes",
"type": "string"
},
"price": {
"description": "Price per coin",
"type": "number"
},
"shareToken": {
"description": "Portfolio share token",
"type": "string"
},
"type": {
"description": "Transaction type",
"type": "string"
}
},
"required": [
"coinId",
"type",
"date",
"amount",
"price"
],
"type": "object"
}