Page 1 of 1

(Req) Round numbers

PostPosted: Mon Sep 26, 2016 11:39 am
by daniel.kovacik
Hi,

can anybody translate this code for TS?

Thanks in advance
Regards,
DK

Code: Select all
//@version=2
study("YK Round Levels", overlay=true)

roundLevel50 = input(25, 'Round Level 1, pips')
roundLevel100 = input(50, 'Round Level 2, pips')

rDelimeter = 1/syminfo.mintick

intRoundLevel = close * rDelimeter

intRemainder = intRoundLevel % roundLevel50
toRound = (intRemainder >= roundLevel50/2) ? roundLevel50 : 0
roundLevel = (intRoundLevel - intRemainder + toRound) / rDelimeter
plot(roundLevel, title='Round Level 1', color=orange, style=circles, transp=0, linewidth=1)

intRemainder2 = intRoundLevel % roundLevel100
toRound2 = (intRemainder2 >= roundLevel100/2) ? roundLevel100 : 0
roundLevel2 = (intRoundLevel - intRemainder2 + toRound2) / rDelimeter
plot(roundLevel2, title='Round Level 2', color=lime, style=circles, transp=0, linewidth=1)

alertcondition((high >= roundLevel and low <= roundLevel) or (high >= roundLevel2 and low <= roundLevel2), title='Alert on the Round Level', message='Round Level!')

Re: (Req) Round numbers

PostPosted: Tue Sep 27, 2016 11:41 am
by Apprentice

Re: (Req) Round numbers

PostPosted: Wed Sep 28, 2016 9:44 am
by daniel.kovacik
Hi,

those variants are little bit noise with other stuff in chart. Could it be same as this?

Thanks in advance
Regards,
DK

Re: (Req) Round numbers

PostPosted: Sun Oct 02, 2016 5:02 am
by Apprentice
Your request is added to the development list, Under Id Number 3642
If someone is interested to do this task, please contact me.

Re: (Req) Round numbers

PostPosted: Tue Nov 28, 2017 12:10 pm
by Alexander.Gettinger
Please, try this indicator: viewtopic.php?f=17&t=65407