Library "fontilab" Provides function's indicators for pivot - trend - resistance. pivots(src, lenght, isHigh) Detecting pivot points (and returning price + bar index. Parameters: src : The chart we analyse. lenght : Used for the calcul. isHigh : lookging for high if true, low otherwise. Returns: The bar index and the price of the pivot. ...
This library was designed to create three different datasets using Bill Williams fractals. The goal is to spot trends in reversal data and ultimately use these datasets to help predict future price reversals. First, the pivot() function is used to initialize and populate three separate arrays (high pivot , low pivot , all pivots ). Since each high/low price...
Library "OscillatorPivots" Measures pivots in an oscillator and flags if they are above a configurable size. Uses absolute size rather than just highest/lowest in a candle range. f_osc_Pivots() Uses the total change in the Y axis, instead of a simple Williams pivot over a defined number of bars. In other words, it measures the size of the actual pivot, not...
Library "Pivots" TODO: add library description here pivots(_type, _open, _high, _low, _clsoe) Calculates the pivot point and returns its value. Parameters: _type : Specifies the type of pivot point. _open : The open price _high : The high price _low : The low price _clsoe : The close price Returns: Returns the value of the...
Library "PivotPointsDailyTraditional" Provides the traditional daily pivot values and a pivot vacinity function. P(level, daysPrior) Returns the P value. Parameters: level : The level to caclulate. daysPrior : The number of days in the past to do the calculation. R(level, daysPrior) Calculates the R value for a given pivot...