RAPTOR v18.4: Исправлена отчетность, активированы выходные

This commit is contained in:
root
2026-04-18 23:26:45 +03:00
commit ef0958239e
312 changed files with 54247 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
import os
from t_tech.invest.sandbox.client import SandboxClient
from t_tech.invest.schemas import (
CancelStopOrderRequest,
CancelStopOrderResponse,
GetStopOrdersRequest,
StopOrderStatusOption,
)
def main():
token = os.environ["INVEST_TOKEN"]
with SandboxClient(token) as client:
accounts = client.users.get_accounts()
account_id = accounts.accounts[0].id
stop_orders = client.sandbox.get_sandbox_stop_orders(
request=GetStopOrdersRequest(
account_id=account_id,
status=StopOrderStatusOption.STOP_ORDER_STATUS_ACTIVE,
)
)
stop_order_id = stop_orders.stop_orders[0].stop_order_id
response = cancel_stop_order(client, account_id, stop_order_id)
print(f"Отменена отложенная заявка id={stop_order_id}: {response}")
def cancel_stop_order(
sandbox_service, account_id, stop_order_id
) -> CancelStopOrderResponse:
return sandbox_service.sandbox.cancel_sandbox_stop_order(
request=CancelStopOrderRequest(
account_id=account_id,
stop_order_id=stop_order_id,
)
)
if __name__ == "__main__":
main()