forexpirate

Pairs Volume FXCM mini account

Script shows the volume of the currency pairs in the FXCM mini account. I set it daily or weekly to see which pair is picking up in activity. My style of currency trading is short holds on the highest volatility. This helps me determine which pairs have the highest volume (or tick activity since there is no true exchange for currency). I use this in conjunction with the other script I wrote, "Pairs Range" which shows which pairs have the highest daily range. This script has a built in 5-sma on each pair. High daily range and high volume is volatility and liquidity. **** This does not include currencies in CHF ****
오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
//@version=2
study(title="Pairs Volume FXCM mini account", shorttitle="Pairs Volume FXCM mini account",precision=0)


p0 = input(title="Other data series", type=symbol,defval="audjpy")
p1 = input(title="Other data series", type=symbol,defval="audnzd")
p2 = input(title="Other data series", type=symbol,defval="audusd")
p3 = input(title="Other data series", type=symbol,defval="cadjpy")
p17 = input(title="Other data series", type=symbol,defval="euraud")
p4 = input(title="Other data series", type=symbol,defval="eurcad")
p5 = input(title="Other data series", type=symbol,defval="eurgbp") 
p6 = input(title="Other data series", type=symbol,defval="eurjpy")
p7 = input(title="Other data series", type=symbol,defval="eurnzd")
p8 = input(title="Other data series", type=symbol,defval="eurusd")
p9 = input(title="Other data series", type=symbol,defval="gbpaud")
p10 = input(title="Other data series", type=symbol,defval="gbpjpy")
p11 = input(title="Other data series", type=symbol,defval="gbpnzd")
p12 = input(title="Other data series", type=symbol,defval="gbpusd")
p13 = input(title="Other data series", type=symbol,defval="nzdjpy")
p14 = input(title="Other data series", type=symbol,defval="nzdusd")
p15 = input(title="Other data series", type=symbol,defval="usdcad")
p16 = input(title="Other data series", type=symbol,defval="usdjpy")
// Get the additional data series
s0h= security(p0, period, volume)
s1h= security(p1, period, volume)
s2h= security(p2, period, volume)
s3h= security(p3, period, volume)
s4h= security(p4, period, volume)
s5h= security(p5, period, volume)
s6h= security(p6, period, volume)
s7h= security(p7, period, volume)
s8h= security(p8, period, volume)
s9h= security(p9, period, volume)
s10h= security(p10, period, volume)
s11h= security(p11, period, volume)
s12h= security(p12, period, volume)
s13h= security(p13, period, volume)
s14h= security(p14, period, volume)
s15h= security(p15, period, volume)
s16h= security(p16, period, volume)
s17h= security(p17, period, volume)

plot(sma(s0h,5),color=silver, title="AUDJPY")
plot(sma(s1h,5),color=white,title="AUDNZD")
plot(sma(s2h,5),color=maroon,title="AUDUSD")
plot(sma(s3h,5),color=green,title="CADJPY")
plot(sma(s4h,5),color=red, title="EURCAD")
plot(sma(s5h,5),color=fuchsia,title="EURGBP")
plot(sma(s6h,5),color=maroon,title="EURJPY")
plot(sma(s7h,5),color=olive, title="EURNZD")
plot(sma(s8h,5),color=lime,title="EURUSD")
plot(sma(s9h,5),color=navy, title="GBPAUD")
plot(sma(s10h,5),color=red, title="GBPJPY")
plot(sma(s11h,5),color=blue, title="GBPNZD")
plot(sma(s12h,5),color=teal, title="GBPUSD")
plot(sma(s13h,5),color=silver,title="NZDJPY")
plot(sma(s14h,5),color=red,title="NZDUSD")
plot(sma(s15h,5),color=white,title="USDCAD")
plot(sma(s16h,5),color=aqua,title="USDJPY")
plot(sma(s17h,5),color=teal, title="EURAUD")