Library "LinTrendLib" TODO: add library description here ema_trend(twz, ema_length, cross_ratio, multiplier) Given Bullish / Bearish / side-way market jugement Parameters: twz (int) ema_length (simple int) cross_ratio (float) multiplier (float) Returns: 1 --> bullish trend, -1 --> bearish trend, 0 --> sideway market
Library "COM_Scanner_Library" - A Trader's Edge (ATE)_Library was created to assist in constructing COM Scanners TickerIDs(_string) TickerIDs: You must form this single tickerID input string exactly as described in the scripts info panel (little gray 'i' that is circled at the end of the settings in the settings/input panel that you can hover your cursor...
Library "CandleAnalysis" A collection of frequently used candle analysis functions in my scripts. isBullish(barsBack) Checks if a specific bar is bullish. Parameters: barsBack (int) : (int) The number of bars to look back. The default is 0 (current bar). Returns: True if the bar is bullish, otherwise returns false. isBearish(barsBack) Checks...
Library "MarcosLibrary" A colection of frequently used functions in my scripts. bullFibRet(priceLow, priceHigh, fibLevel) Calculates a bullish fibonacci retracement value. Parameters: priceLow (float) : (float) The lowest price point. priceHigh (float) : (float) The highest price point. fibLevel (float) : (float) The fibonacci level to...
Library "CandleInsights" CandleInsights provides a set of utility functions to facilitate identifying certain types of individual candles and candle patterns. isBullish() Returns true if candle is bullish. Returns: bool isBearish() Returns true if candle is bearish. Returns: bool isHammer() Returns true if candle is a hammer. TODO: Allow...
Library "CCOMET_Scanner_Library" - A Trader's Edge (ATE)_Library was created to assist in constructing CCOMET Scanners Loc_tIDs_Col(_string, _firstLocation) TickerIDs: You must form this single tickerID input string exactly as described in the scripts info panel (little gray 'i' that is circled at the end of the settings in the settings/input panel that...
Library "AGbayLIB" Changes the timeframe period to the given period and returns the data matrix and sets the timeframe to the active time period getTimeFrameValues(active_period_, period_, max_bars_) : add function description here Parameters: active_period_ (string) : Current time frame period to be set after getting period_ data period_...
Library "ta_m" This library is a Pine Script™ programmer’s tool containing calcs for my oscillators and some helper functions. upDnIntrabarVolumesByPolarity() Determines if the volume for an intrabar is up or down. Returns: ( ) A tuple of two values, one of which contains the bar's volume. `upVol` is the positive volume of up bars. `dnVol` is the...
Library "merge_pinbar" Published by @dandrideng Modified by @RpNm1337 merge_pinbar: merge bars and check whether the bar is a pinbar merge_pinbar(period, max_bars) merge_pinbar: merge bars and check whether the bar is a pinbar Parameters: period (simple int) max_bars (simple int) Returns: array:
Library "CandlestickPatterns" This library provides a wide range of candlestick patterns, and available for user to call each pattern individually. It's a comprehensive and common tool designed for traders seeking to raise their technical analysis, and it may help users identify key turning of price action in financial instruments. Credit to public technical...
Library "JapaneseCandlestickPatterns" Japanese Candlestick Patterns is a library of functions that enables the detection of popular Japanese candlestick patterns such as Doji, Hammer, and Engulfing, among others. The library provides a simple yet powerful way to analyze financial markets and make informed trading decisions. Japanese Candlestick Patterns library...
Library "CandlesGroup_Types" CandlesGroup Type allows you to efficiently store and access properties of all the candles in your chart. You can easily manipulate large datasets, work with multiple timeframes, or analyze multiple symbols simultaneously. By encapsulating the properties of each candle within a CandlesGroup object, you gain a convenient and...
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
Introduction: Spider charts, also known as radar charts or web charts, are a powerful data visualization tool that can display multiple variables in a circular format. They are particularly useful when you want to compare different data sets or evaluate the performance of a single data set across multiple dimensions. In this blog post, we will dive into the world...
Library "time_filters" Collection of filters that related with time like sessions and datetime ranges. All existing session functions I found in the documentation e.g. not na(time(timeframe.period, sessionTimes)) are not suitable for strategies, since the execution of the entries and the exits are delayed by one bar. Thus I created this library to overcome this...
Library "Antares" this library contains some utility functions that I use in my open source scripts including moving average helpers, candlstick helpers, money management, formatters, convertors, webhook integration, analysis, filters and drawing helpers ma(type, length, source) Wraps all ma functions Parameters: type : Either SMA or EMA or RMA or...
Library "Heikinashi" This library calculates "Heikinashi". calc(_o, _h, _l, _c, _my_close) This function calculates "Heikinashi". Parameters: _o : open _h : high _l : low _c : close _my_close : Specify if you want to force only the closing price to a real value. Returns: TODO: add what function returns