多时间框架指标 - 页 651

 
EPSON12:
晚安,有人能把附件中的指标做成mtf吗,谢谢。

对不起,Epson12那是一个反编译的指标。需要原始的源代码来修改它。

 

求你了,我需要这本日记。

威廉斯%R

study(title="Willams %R", shorttitle="%R")

length = input(14, minval=1)

upper = highest(length)

lower = lowest(length)

out = 100 * (close - upper) / (upper - lower)

plot(out)

band1 = hline(-20)

band0 = hline(-80)

填充(band1, band0)

 

更新的趋势检测指数 :trend_detection_index_mtf_nmc.mq4

原文在此发布:https://www.mql5.com/en/forum/173574/page397

 

也是随机 RSI

study(title="随机RSI", shorttitle="Stoch RSI")

来源 = 关闭

lengthRSI = input(14, minval=1), lengthStoch = input(14, minval=1)

smoothK = input(3, minval=1), smoothD = input(3, minval=1)

rsi1 = rsi(source, lengthRSI)

k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)

d = sma(k, smoothD)

plot(k, color=blue)

plot(d, color=orange)

h0 = hline(80)

h1 = hline(20)

fill(h0, h1, color=purple, transp=80)

 
Kelch Monteiro:
你们好!你们的圣诞节过得怎么样? 你们能在这里帮我做一个mtf版本吗?

趋势_检测_索引.mq4

谢谢。

嗨,Kelch。

做了mtf。

________________

更新后的版本发布在这里https://www.mql5.com/en/forum/173574

附加的文件:
 
mikocairo55:
还有随机RSI

study(title="Stochastic RSI", shorttitle="Stoch RSI" )

来源 = 关闭

lengthRSI = input(14, minval=1), lengthStoch = input(14, minval=1)

smoothK = input(3, minval=1), smoothD = input(3, minval=1)

rsi1 = rsi(source, lengthRSI)

k = sma(stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)

d = sma(k, smoothD)

plot(k, color=blue)

plot(d, color=orange)

h0 = hline(80)

h1 = hline(20)

填充(h0, h1, color=purple, transp=80)

mikocairo55

多时间框架wpr的链接:Forex TSD - 外汇论坛 - 下载WPRV2 mtf.mq4

一个链接到多时间框架的随机rsi。Forex TSD - 外汇论坛 - 下载 StochRSI_mtf+alerts nmc.mq4

他们都可以作为 "常规 "的工作。

 
附加的文件:
 
mladen:
モバイドクリール

我真的不愿意以任何方式与另一个太阳风指标(trline)联系在一起。

至于 "coeff of line "指标:先试试这个版本(据我所知,这是一个不会重绘的版本)。

那么这也是多时间框架的版本

________________

更新的版本发布在这里:https://www.mql5.com/en/forum/173574

附加的文件:
 

更新的抛物线沙尔2支持阻力版本:parabolic_sar_sr_2_-_mtf_nmc.mq4

原文在此发布:https://www.mql5.com/en/forum/173574/page396

附加的文件:
 
tito_xs:
嗨,Mladen和/或mrtools,我再次请求你们的好意

我需要将mtf选项添加到这个indi -->parabolic_sar_sr_2.mq4 中。

祝所有forex-tsd成员节日快乐

欢呼声中,蒂托。

tito

这是该指标的一个多时间框架版本

更新的版本发布在这里:https://www.mql5.com/en/forum/173574

附加的文件: