Library "TimeLockedMA" Library & function(s) which generates a moving average that stays locked to users desired time preference. TODO - Add functionality for more moving average types. IE: smooth, weighted etc... Example: time_locked_ma(close, length=1, timeframe='days', type='ema') Will generate a 1 day exponential moving average that will stay consistent...
Library "smf" f_strLeft(string, int) Function returning the leftmost `_n` characters in `_str`. Parameters: string : _str: source string. int : _n : number of leftmost characters to return. f_strRight(string, int) Function returning the rightmost `_n` characters in `_str`. Parameters: string : _str: source string. int : _n :...