Lemnos

Ersoy Support-Resistance-Osilator

website: www.ersoytoptas.com
Newspaper : tr.investing.com/members/36623/opinion



Hi this is a oscillator ...
Close Support , Remote Support , Resistance and works with the live screen.

オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
study("Ersoy- Support-Resistance-Osilatör")
///ersoytoptas@hotmail.com
///Stock Quotes & works in all ..///
///Private Fibonachi-14///
length11 = input(title="Moment", type=integer, defval=14)
offset11 = input(type=integer, defval=0)
source11 = close
lsma11 = linreg(source11, length11,offset11)
plot(lsma11,color=black,title="Moment")
///Private Fibonachi-35///
length13 = input(title="Resistance-35", type=integer, defval=35)
offset13 = input(type=integer, defval=0)
source13 = close
lsma13 = linreg(source13, length13,offset13)
plot(lsma13,color=red,title="Resistance-35")
///Private 144-///
length15 = input(title="Near Support-144", type=integer, defval=144)
offset15 = input(type=integer, defval=0)
source15 = close
lsma15 = linreg(source15, length15,offset15)
plot(lsma15,color=lime,title="Near Support-144")

///Private 382-///
length14 = input(title="Far Support-382", type=integer, defval=382)
offset14 = input(type=integer, defval=0)
source14 = close
lsma14 = linreg(source14, length14,offset14)
plot(lsma14,color=green,title="Far Support-382")