Skip to content

ChartRobot

Summary

The interface representing a Robot instance attached to a chart.Provides properties that allow for accessing various information about a Robot.

Signature

1
public abstract interface ChartRobot

Namespace

cAlgo.API

Methods

Start

Summary

Starts the Robot instance.

Signature

1
public abstract void Start()

Return Value

void

Stop

Summary

Stops the Robot instance.

Signature

1
public abstract void Stop()

Return Value

void

Properties

Name

Summary

Gets the name of a Robot instance.

Signature

1
public abstract string Name {get;}

Return Value

string

InstanceId

Summary

Gets the ID of a specific Robot instance.

Signature

1
public abstract string InstanceId {get;}

Return Value

string

Type

Summary

Gets the RobotType of a Robot instance.

Signature

1
public abstract RobotType Type {get;}

Return Value

RobotType

Parameters

Summary

Gets the collection of Robot parameters.

Signature

1
public abstract AlgoInstanceParameters Parameters {get;}

Return Value

AlgoInstanceParameters

State

Summary

Gets the current state of a Robot instance.

Signature

1
public abstract RobotState State {get;}

Return Value

RobotState