Library "MyCandleLibrary" TODO: Candle Pattern Library IsEngulfingCandle(n, trendRule) TODO: Identify Bullish Engulfing Candle Parameters: n (int) : TODO: Candle Number trendRule (string) Returns: TODO: If Identify Bullish Engulfing candle return True otherwise False
This library is for identifying uptrends and downtrends using a loopback candle analysis method. Which contains two functions: uptrendLoopbackCandleIdentification() and downtrendLoopbackCandleIdentification() . These functions check if the current candle is part of an uptrend or downtrend, respectively, based on the specified lookback period. The ...
Library "heikin_ashi_candles" This library is programmed to calculate the Heikin Ashi candles using the standard formula of Heikin Ashi Candles. Notice the Heikin Ashi chart type isn't 100% like the results from this calculation. You can import this library in your code to use it as a smoothing method for your strategy which operates on the standard chart...
Library "CandleEvaluation" Contains functions to evaluate bullish and bearish, engulfing, and outsized candles. They are different from the built-in indicators from TradingView in that these functions don't evaluate classical patterns composed of multiple candles, and they reflect my own understanding of what is "bullish" and bearish", "engulfing", and...