xSilas

Godmode Oscillator, fresh bread generator, free to use!

Greetings Mates,

!!! If you want to use this tool for free you have to to following steps:

1) say thanks to LEGION who coded the first version.
2) say thanks to LAZYBEAR cause we ripped some code snippets from him.
3) say thanks to Ni6HTH4wK who coded the latest version.
4) say thanks to xSilas who gave the idea.

5) I know i said its a FREE Tool and you dont need to donate me cause i have Godmode :), but lets have a litte thought on all the people that are a bit poorer than us. It would be really great if we get some DOLLARS for a great charity action for children.

6) Feel free to spend some Bitcoins to this Address: 1BNjs1Prsux8YQawVWYfiYoxzoKzfReckX
(i start and going to spend 1 BTC) (! the spended amount is revealed at the end!)

7) If you know said thankyou to everybody and may spend some dollars we can go on with Godmode trading.

8) Enjoy the Tool, merry Xmas and cheers for another great volatile bitcoin year :).

开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?
// Tradingview.com
// @author LazyBear, xSilas, Ni6HTH4wK
// Drop a line if you use or modify this code.
study(title="Godmode3.1")
n1 = input(9, "Channel Length")
n2 = input(26, "Average Length")
n3 = input(13, "Short length")
multi = input(type=bool, defval=false, title="Multi-exchange?")
src0 = hlc3 

src1 = security("BITFINEX:BTCUSD", period, src0), src2 = security("BTCE:BTCUSD", period, src0)
src3 = security("OKCOIN:BTCUSD", period, src0), src4 = security("HUOBI:BTCCNY", period, src0)

tci(src) => ema((src - ema(src, n1)) / (0.025 * ema(abs(src - ema(src, n1)), n1)), n2)+50
mf(src) => rsi(sum(volume * (change(src) <= 0 ? 0 : src), n3), sum(volume * (change(src) >= 0 ? 0 : src), n3))
willy(src) => 60 * (src - highest(src, n2)) / (highest(src, n2) - lowest(src, n2)) + 80
csi(src) => avg(rsi(src, n3),tsi(src0,n1,n2)*50+50)

godmode(src) => avg(tci(src),csi(src),mf(src),willy(src))
tradition(src) => avg(tci(src),mf(src),rsi(src, n3))

wt1 = multi?avg(godmode(src0),godmode(src1),godmode(src2),godmode(src3),godmode(src4)):tradition(src0)
wt2 = sma(wt1,6)

extended = wt2<20 ? wt2+5 : wt2>80 ? wt2-5 : na

plot(wt1, color=green)
plot(wt2, color=red)
plot(ema((wt1-wt2)*2+50,n3), color=aqua, style=area, transp=80, histbase=50)
plot(extended, title="Caution!", color=yellow, style=circles, linewidth=2)

hline(80)
hline(20)