conversione indicatore Kijun Trend Indicator

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

    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
    NicolasNicolas
    Keymaster
    Legend

    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.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

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 NicolasNicolas
4 years ago.

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