Welcome Guest, you are in: Login
CTS Futures
Home
Pricing
Market Data
FAQ
Videos

T4 Desktop
User Guide
Scripting Guide
Release Notes

Mobile and Web
T4 Mobile for Android
T4 Mobile for iOS
T4 Mobile for Browser
T4 WebTrader

Admins
T4 Admin Guide
MiFID II/MiFIR

Developers
API 4.7 Guide
FIX API


Page History: Scripting Overview

Compare Page Revisions



« Older Revision - Back to Page History - Newer Revision »


Page Revision: 2011/07/22 16:08



Code Structure

Scripting code consists of one or more statements that are executed by the script interpreter.

Individual statements are separated by semicolons. White spaces (spaces, tabs, carriage returns, etc.) have no effect on how scripts are interpreted. Scripts are case-insensitive (e.g. sma is the same as SMA).

Statements can do the following:

  • Perform a calculation.
  • Assign a value or calculation to a variable name.
  • Accept user input into a variable.
  • Plot values on a chart in various different formats.
  • Configure the chart.

Lets take a look at a script that computes the Disparity Index indicator:
vscale_decimals(2);

periods = INPUT("MA Periods", 14, 1, 100);
indcolor = INPUT("Color", Color.Blue);

ma = MOV(CLOSE, periods, MAType.SMA);
di = 100 * ((CLOSE - ma) / ma);

PLOT_HISTOGRAM(di, 0.75, indcolor);
SUMMARY("Disparity Index({?}) {?:F2}", periods, di);

Assign Values to Variables

Compute SMA 3 Different Ways

Plot Lines, Histograms, Wavecrests, Bands, Points

Plot Limit Lines, Center Lines and Range Markers

Display a Customized Summary

Format Tick Prices for Display

Change Plot Colors/Styles on the Fly

Custom Colors and Transparency

Accept Input via the Properties Window

Configure the Value Scale for Indicators

Using Aggregation Functions

Using IF Statements

Using the Cross Functions

Using NIL

Perform Recursive Calculations

Trade how you want, where you want

support@ctsfutures.com (312) 939 0164

2 Pierce Pl, Suite 200, Itasca, IL 60143

© 2009-2023 Cunningham Trading Systems LLC All rights reserved.