Module: any_trade_entry
Expand source code
# Copyright (C) 2023-present The Project Contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from dataclasses import dataclass
from typing_extensions import Self
from cl.runtime import Context
from cl.runtime.records.dataclasses_extensions import missing
from cl.convince.entries.entry_key import EntryKey
from cl.tradeentry.entries.rates.rates_trade_entry import RatesTradeEntry
from cl.tradeentry.entries.trade_entry import TradeEntry
@dataclass(slots=True, kw_only=True)
class AnyTradeEntry(TradeEntry):
"""Capture trade for any asset class from user input, trade type is determined from the input."""
trade: EntryKey = missing()
"""Entry for the trade."""
Classes
class AnyTradeEntry (*, entry_id: str = None, title: str = None, body: str | None = None, data: str | None = None, approved_by: UserKey | None = None, few_shot: bool | None = None, trade: EntryKey = None)
-
Capture trade for any asset class from user input, trade type is determined from the input.
Expand source code
@dataclass(slots=True, kw_only=True) class AnyTradeEntry(TradeEntry): """Capture trade for any asset class from user input, trade type is determined from the input.""" trade: EntryKey = missing() """Entry for the trade."""
Ancestors
- TradeEntry
- Entry
- EntryKey
- KeyMixin
- RecordMixin
- abc.ABC
- typing.Generic
Static methods
def check_entry_id(entry_id: str) -> None
-
Inherited from:
TradeEntry
.check_entry_id
Check that the unique identifier is compliant with the expected format.
def get_entry_id(record_type: str, title: str, body: str | None = None, data: str | None = None) -> str
-
Inherited from:
TradeEntry
.get_entry_id
Create the unique identifier from parameters.
def get_key_type() -> Type
-
Inherited from:
TradeEntry
.get_key_type
Return key type even when called from a record.
def parse_optional_bool(field_value: str | None, *, field_name: str | None = None) -> bool | None
-
Inherited from:
TradeEntry
.parse_optional_bool
Parse an optional boolean value.
def parse_required_bool(field_value: str | None, *, field_name: str | None = None) -> bool
-
Inherited from:
TradeEntry
.parse_required_bool
Parse an optional boolean value.
Fields
var approved_by -> UserKey | None
-
Inherited from:
TradeEntry
.approved_by
User who recorded the approval.
var body -> str | None
-
Inherited from:
TradeEntry
.body
Optional body of the entry if not completely described by the title (included in MD5 hash).
var data -> str | None
-
Inherited from:
TradeEntry
.data
Optional supporting data in YAML format (included in MD5 hash).
var entry_id -> str
-
Inherited from:
TradeEntry
.entry_id
Based on record type, title and MD5 hash of body and data if present, EntryUtil.create_id is used to generate.
var few_shot -> bool | None
-
Inherited from:
TradeEntry
.few_shot
If True, use this entry as a few-shot example.
var title -> str
-
Inherited from:
TradeEntry
.title
Title of a long entry or complete description of a short one (included in MD5 hash).
var trade -> EntryKey
-
Entry for the trade.
Methods
def get_key(self) -> EntryKey
-
Inherited from:
TradeEntry
.get_key
Return a new key object whose fields populated from self, do not return self.
def get_text(self) -> str
-
Inherited from:
TradeEntry
.get_text
Get the complete text of the entry.
def init(self) -> None
-
Inherited from:
TradeEntry
.init
Generate entry_id in ‘type: title’ format followed by an MD5 hash of body and data if present.
def init_all(self) -> None
-
Inherited from:
TradeEntry
.init_all
Invoke ‘init’ for each class in the order from base to derived, then validate against schema.
def run_propose(self) -> None
-
Inherited from:
TradeEntry
.run_propose
Generate or regenerate the proposed value.