Skip to content

IsLive Property

Summary

Defines if the account is Live or Demo. True if the Account is Live, False if it is a Demo.

Signature

1
public abstract bool IsLive {get;}

Return Value

bool

Declaring Type

cAlgo.API.Internals.IAccount

Examples

1
2
3
4
 if (Account.IsLive)
     Print("Live Account");
 else
     Print("Demo Account");

Last update: March 30, 2023