Kilter

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #6518 quote
    artart
    Participant
    New

    Hi to everyone,

    I don’t know whether my post is in the right place, but if not I’d be glad if someone points me in the right direction.

    I am trying to place Keltner channels on a range bar chart. Apart from the fgact that the chart changes to a 1 minute chart when I do this, I also see no options to change the paramers of the Keltner channels.

    Can anyone help?

    Thanks,

    Cheers,

    art.

    #6569 quote
    NicolasNicolas
    Keymaster
    Legend

    Hello art,

    Here is the code and the itf file for the Keltner channel. You may use this one instead of the one included in the platform.. maybe it can be useful for displaying it on range bar?

    //Keltner bands//
    //n=18
    //coeff=1.1
    REM Moving Average
    MA = Average[N](TypicalPrice)
    REM Upper Keltner Band
    UpperBand = MA + coeff*Average[N](Range)
    REM Lower Keltner Band
    LowerBand = MA - coeff*Average[N](Range)
    RETURN MA AS "Keltner Moving Average" , UpperBand AS "Upper Keltner Band" , LowerBand as "Lower Keltner Band"
    Keltner-Bands.itf
    #6586 quote
    artart
    Participant
    New

    Thanks for that.

    a.

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

From idea to ProBuilder code in seconds.

Your coding copilot for ProRealTime™. Ask in plain English — get clean, ready-to-paste indicators, screeners and systems.

Available in 7 languages
Try ProRealAI

Kilter


General Trading: Market Analysis & Manual Trading

New Reply
Author
author-avatar
art @art Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by artart
10 years, 4 months ago.

Topic Details
Forum: General Trading: Market Analysis & Manual Trading
Language: English
Started: 05/06/2016
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...