fibo_levelsLibrary   "Fibo_levels" 
Calculate Fibo levels from any 2 levels. Your need know only 2 price of 2 levels for calculate any level of Fibo: function 'fibo_lvl', 
or calculate array of price Fibo levels : function 'fibo_lvls'
 fibo_lvl(fibo_lvl1, price1, fibo_lvl2, price2, calc_level) 
  Parameters:
     fibo_lvl1 : First of any level of fibo from 0 to 1 (example 0.236)
     price1 : Price for 1th any level (example 2356.1)
     fibo_lvl2 : Second of any level of fibo from 0 to 1 (example 0.382)
     price2 : Price for 2th any level (example 2497.4)
     calc_level : Price for level to calculate (example 0.5)
  Returns: return price for calc_level fibo
 fibo_lvls(bars, time1, time2, fibo_lvl1, price1, fibo_lvl2, price1) 
  Parameters:
     fibo_lvl1 : First of any level of fibo from 0 to 1 (example 0.236)
     price1 : Price for 1th any level (example 2356.1)
     fibo_lvl2 : Second of any level of fibo from 0 to 1 (example 0.382)
     price1 : Price for 2th any level (example 2497.4)
  Returns: array of price for fibo levels : (0.0, 0.118, 0.236, 0.384, 0.5, 0.618, 0.786, 1.0, 1.27,-0.27,1.618,-0.618)
Fibo
FibonacciLibrary   "Fibonacci" 
General Fibonacci functions. Get fib numbers, ratios, etc.
 fib_precise(f, precision) 
  Get the precise Fibonacci ratio, to the specified number of decimal places
  Parameters:
     f : Fibonacci ratio (string, in form #.###)
     precision : Number of decimal places (optional int, dft = 16, max = 32)
  Returns: Precise Fibonacci ratio (float)
 fib_n(n) 
  Calculate the Nth number in the Fibonacci sequence
  Parameters:
     n : Index/number in sequence (int)
  Returns: Fibonacci number (int)
HarmonicDB█ OVERVIEW 
This library was to showcase database for specifications of Harmonic Patterns using arrays.
 █ CREDITS 
Scott M Carney, author of Harmonic Trading : Volume Three
 animal_db(x) 
  TODO: export animal_db
  Parameters:
     x : TODO: float value is set to default if not necessary
  Returns: TODO: 


