Skip to content

Profile: Change Trade Status of Security

Overview

Diagram

The usecase

Pipeline

flowchart LR

  orchestration[Orchestration] -- trigger --> handleset

  subgraph handleset[Handle Set]
    direction TB
    market[Market Data] -- filter state --> detect[Detect State Change]
  end

  subgraph gcp[Google Cloud Platform]
    subgraph pubsub[PubSub]
      topic[Topic] -- filter element --> sub[Subcription]
    end
    notification
  end

  %% Flow
  detect -- If change, publish --> topic
  sub -- If request, notify --> notification[Notification]

Source Reference