jason5480

series_collection

jason5480 업데이트됨   
Library "series_collection"
A personal collection of commonly used series types like moving averages that are supported directly by
the pinescript library ('ALMA', 'DEMA', 'EMA', 'HMA', 'RMA', 'SMA', 'SWMA', 'VWMA', 'WMA'), highest and lowest source,
median and pivots. One single function (with overloads) that can be configured easily by the user input and can be
used as a core piece of functionality for many user cases. This library was created to abstract away and re-use this
commonly used functionality in my "Two MA Signal Indicator" script and the "Template Trailing Strategy" script. Both
of them use the "two_ma_logic" for defining entry and exit signals. While this piece of work does not contain any
novel mathematical expressions and just adds a convinient (and configurable) way to do things, I hope that might add
value to other scripts as well and future projects.

cust_series(length, seriesType, source)
  cust_series - Calculate the custom series of the given source for the given length and type
  Parameters:
    length (simple int): - The length of the custom series
    seriesType (simple string): - The type of the custom series
    source (float): - The source of the values
  Returns: - The resulting value of the calculations of the custom series

cust_series(length, seriesType, source)
  cust_series - Calculate the custom series of the given source for the given length and type
  Parameters:
    length (simple float): - The length of the custom series (ceiled)
    seriesType (simple string): - The type of the custom series
    source (float): - The source of the values
  Returns: - The resulting value of the calculations of the custom series
릴리즈 노트:
v2
Four new implementations of ALMA, DEMA, EMA, HMA, RMA, SMA, SWMA, VWMA, WMA, HIGHEST, LOWEST, HILOESTAVG, MEDIAN, MEDIANHIGHEST, MEDIANLOWEST, LINREG in different data structures that can be used on demand.
  1. Array Front, where the values are pushed front (unshift) and the most recent value in index 0
  2. Array Back, where the values are pushed back (push) and the most recent value is at the largest index
  3. Cyclic Buffer, where the values are just placed (set) in a counter-clockwise manner.
  4. Clock Buffer, where the values are just placed (set) in a clockwise manner.

If you're interested in exploring and discovering other high quality free strategies come join us in Discord: discord.gg/2wkm9QqSuY
파인 라이브러리

트레이딩뷰 정신에 따라 오써는 이 파인 코드를 오픈 소스 라이브러리로 퍼블리쉬하여 당사 커뮤니티의 다른 파인 프로그래머들이 쓸 수 있도록 하였습니다. 오써에게 찬사를! 여러분은 이 라이브러리를 프라이빗 또는 오픈 소스 퍼블리케이션에 쓸 수 있지만 퍼블리케이션에 재사용은 하우스룰을 따릅니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

이 라이브러리를 쓰시겠습니까?

텍스트를 클립보드에 카피한 뒤 님의 스크립트에 붙여 넣기.