usingcAlgo.API;namespacecAlgo{// This example shows how to use the AccountType[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]publicclassAccountTypeSample:Indicator{protectedoverridevoidInitialize(){vartext=string.Format("Account Type: {0}",Account.AccountType);Chart.DrawStaticText("text",text,VerticalAlignment.Top,HorizontalAlignment.Right,Color.Red);}publicoverridevoidCalculate(intindex){}}}