Skip to content

TotalMarginCalculationType

Summary

Defines types of total margin requirements per Symbol.

Signature

1
public enum TotalMarginCalculationType

Namespace

cAlgo.API.Internals

Fields

Sum

Summary

Total margin requirements per Symbol are equal to Sum of all margin requirements of all positions of that Symbol.

Signature

1
public static TotalMarginCalculationType Sum;

Return Value

TotalMarginCalculationType

Max

Summary

Total margin requirements per Symbol are equal to Max margin requirements from all Long and all Short Positions of that Symbol.

Signature

1
public static TotalMarginCalculationType Max;

Return Value

TotalMarginCalculationType

Net

Summary

Total margin requirements per Symbol are equal to the difference between margin requirements of all Long and all Short Positions of that Symbol.

Signature

1
public static TotalMarginCalculationType Net;

Return Value

TotalMarginCalculationType