3.6 Technical analysis: moving averages, ATR etc
Many indicators are based on other technical analysis calculations such as moving averages, standard deviation, or values such as ATR or RSI. (For example, an "Awesome Oscillator" is simply a 5-period moving average minus a 34-period moving average.)
UDIs have access to a library, Liquid.ta, of technical analysis calculations. Two of the example UDI files use this library, to calculate a moving average and to build up multiple averages into a MACD calculation.
The Liquid.ta library is documented separately, because it is also available as part of the Liquid Charts Pro scripting framework. UDIs also have access to an Liquid.CandleStore helper.
One of the features of the Liquid.ta library is creating a configurable type of moving average from a user-controlled setting in your UDI. This is illustrated by the MACD example file, and works as follows:
In the settings for your UDI, you include a field with type:"maType". In your UDI code, you read the value of the user field (and typically also of a user-defined period for the average), and use Liquid.ta.CreateMovingAverage() to create the moving average object. For example:
You can pass the data parameter from UDI.onCalculate() directly into the LoadData() of a technical analysis calculation – for both "bar-based" and "value-based" calculations. The LoadData() function automatically checks currentBarUpdateOnly and does an efficient update of only the current value if only the current bar is changing. This is demonstrated by the example above, and also the following instance of a bar-based calculation (ATR):
The Liquid.CandleStore can also be helpful here. You can pass the data parameter from UDI.onCalculate() into a candle store, and it will convert it into an array of candle objects. That array can then be sent into a bar-based technical analysis calculation such as ATR. For example:
Last updated