Table of Contents

Interface IEventApiV1

Namespace
WhalesSecret.TradeScriptLib.API
Assembly
WhalesSecret.TradeScriptLib.dll

Trade script event API interface version 1.0.0.

public interface IEventApiV1 : IVersionedApiV1
Inherited Members
Extension Methods

Fields

MaxEventIdLength

Maximum length of an event identifier.

MaxEventMessageLength

Maximum length of an event message including markdown formatting.

Methods

Debug(EventCategory, string, string, params object?[])

Raises a debug severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Debug(EventCategory, string, ChartInformation?, string, params object?[])

Raises a debug severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Error(EventCategory, string, string, params object?[])

Raises an error severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Error(EventCategory, string, ChartInformation?, string, params object?[])

Raises an error severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Fatal(EventCategory, string, string, params object?[])

Raises an fatal error severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Fatal(EventCategory, string, ChartInformation?, string, params object?[])

Raises an fatal error severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Info(EventCategory, string, string, params object?[])

Raises an information severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Info(EventCategory, string, ChartInformation?, string, params object?[])

Raises an information severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Trace(EventCategory, string, string, params object?[])

Raises a trace severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Trace(EventCategory, string, ChartInformation?, string, params object?[])

Raises a trace severity event in the trade script, which is sent to the Core application and can be consumed by the user.

TriggerEvent(EventSeverity, string, EventCategory, string, params object?[])

Raises an event in the trade script, which is sent to the Core application and can be consumed by the user.

TriggerEvent(EventSeverity, string, EventCategory, ChartInformation?, string, params object?[])

Raises an event in the trade script, which is sent to the Core application and can be consumed by the user.

Warn(EventCategory, string, string, params object?[])

Raises an warning severity event in the trade script, which is sent to the Core application and can be consumed by the user.

Warn(EventCategory, string, ChartInformation?, string, params object?[])

Raises an warning severity event in the trade script, which is sent to the Core application and can be consumed by the user.