Returns the series or values of the GET Elliott Trigger study.Syntax
The Elliot Triiger Study is used as a confirming signal that Elliott Wave 4 has actually ended when the Elliott Oscillator retraces to its zero line.
AGet.elliottTrigger( LongTerm [, sym() | inv() ][, BarIndex ] )Parameters
Parameter: Description: Default:
n/a sym() | inv() [Optional] Function of sym() or inv() to determine symbol/interval source for the study.
Base sym/int BarIndex [Optional] Bar index of series to retrieve.
n/a
Return Value(s)
Returns a Series Object whennBarIndex is not specified.
Returns a single value when nBarIndex is specified.Notes
Only available in versions 11.8 or later.Code Example
Creating Series Example:See Also
var bInit = false;var xSer = null;function main(){ if(bInit == false){ xSer = getSeries(AGet.elliottTrigger(false)); bInit = true; }; return xSer;}
Advanced GET Study Functions
AGet.elliottWaves()