conversione indicatore Kijun Trend Indicator

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #200238 quote
    Msport71
    Participant
    Average

    Buongiorno,

    con la presente richiedo cortese conversione del seguente indicatore open source “kijun trend indicator” .
    https://it.tradingview.com/script/T1thPUYt-Kijun-Trend-Indicator/

    Di seguito il codice sorgente. Grazie

    // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
    // © TheSocialCryptoClub info@thesocialcrypto.club

    //@version=5
    indicator(“Kijun Trend Indicator”, overlay=true)

    // input
    myline_periods = input.int(defval=26, title=”Lenght”)
    myline_type = input.string(defval=”Kijun”, options=[“Kijun”, “SMA”, “EMA”], title=”Type”)

    // default myline color
    var myline_color = color.black

    // default line is Kijun
    myline = math.avg(ta.lowest(low, myline_periods),ta.highest(high, myline_periods))
    // or SMA
    myline := myline_type == “SMA” ? ta.sma(close,myline_periods) : myline
    // or EMA
    myline := myline_type == “EMA” ? ta.ema(close,myline_periods) : myline

    // filter conditions
    long = low[1]>myline[1] and low[2]>myline[2] and low[3] <= myline[3]
    short = high[1]<myline[1] and high[2]<myline[2] and high[3]>= myline[3]

    // color the line
    myline_color := long ? color.blue : myline_color
    myline_color := short ? color.red : myline_color

    // plot

    plot(myline, color=myline_color, linewidth=2, title=”Kijun Trend Indicator”)

    Screenshot-2022-09-06-at-13-19-06-Kijun-Trend-Indicator-di-TheSocialCryptoClub.png Screenshot-2022-09-06-at-13-19-06-Kijun-Trend-Indicator-di-TheSocialCryptoClub.png Screenshot-2022-09-06-at-13-20-19-Kijun-Trend-Indicator-di-TheSocialCryptoClub.jpg Screenshot-2022-09-06-at-13-20-19-Kijun-Trend-Indicator-di-TheSocialCryptoClub.jpg
    #200268 quote
    Nicolas
    Keymaster
    Master

    Ciao, quell'indicatore è stato tradotto e puoi scaricarlo ora dalla nostra pagina degli archivi degli script, per favore trovalo qui: Indicatore KijunTrend

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

conversione indicatore Kijun Trend Indicator


ProBuilder: Indicatori & Strumenti Personalizzati

New Reply
Author
author-avatar
Msport71 @carlo-pasca Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by Nicolas
3 years, 6 months ago.

Topic Details
Forum: ProBuilder: Indicatori & Strumenti Personalizzati
Language: Italian
Started: 09/06/2022
Status: Active
Attachments: 2 files
Logo Logo
Loading...