You are here: Custom Study Programming > Overview

Overview

ActiveTick custom studies comprise from callback functions, built-in functions, and various classes, all tied together with JavaScript.

 

 

Typically, a custom study goes through the following interaction:

 

  1. Study is added to a chart window.
  2. Study is initialized with various options and settings by implementing the init() callback function.
  3. ActiveTick displays study's parameters added through the addParameter() function, and gives the user an option to modify any of them.
  4. The chart gets populated with some data for a symbol, and calculate() callback function is called to calculate the study for the entire dataset.
  5. The chart gets updated periodically with new data, and calculate() callback function is called to calculate the study to process those updates.

 

The following topics provide more information about custom study programming.

 

 

 


Copyright © 2006-2009 ActiveTick LLC