ChrisMoody

We Are Witnessing A Historical Event With A Clear Outcome!!!

"Full Disclosure: I came across this information from www.SentimenTrader.com
I have no financial affiliation…They provide incredible statistical facts on
The General Market, Currencies, and Futures. They offer a two week free trial.
I Highly Recommend.

The S&P 500 has gone 43 trading days without a 1% daily move, up or down.
which is the equivalent of two months and one day in trading days.

During this stretch, the S&P has gained more than 4%,
and it has notched a 52-week high recently as well.

Since 1952, there were nine other precedents. All of
these went 42 trading days without a 1% move, all of
them saw the S&P gain at least 4% during their streaks,
and all of them saw the S&P close at a 52-week highs.

***There was consistent weakness a week later, with only three
gainers, and all below +0.5%.
***After that, stocks did better, often continuing an Extraordinary move higher.

Charts can sometimes give us a better nuance than
numbers from a table, and from the charts we can see a
general pattern -
***if stocks held up well in the following
weeks, then they tended to do extremely well in the
months ahead.
***If stocks started to stumble after this two-
month period of calm, however, then the following months
tended to show a lot more volatility.

We already know we're seeing an exceptional market
environment at the moment, going against a large number
of precedents that argued for weakness here, instead of
the rally we've seen. If we continue to head higher in
spite of everything, these precedents would suggest that
we're in the midst of something that could be TRULY EXTRAORDINARY.

오픈 소스 스크립트

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

면책사항

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

차트에 이 스크립트를 사용하시겠습니까?
//Created by ChrisMoody on 6-19-2014
//Plots the % of the closing price based on the close of the previous day.
study("_CM_Range_Percent", overlay=false)
thr = input(1, minval=0, title="Threshold Percentile, 1=1% - 1.5=1.5%, etc.")
tspcy = input(60, minval=0, title="Transparency Fill, 100 = No Fill, Default = 60")

upday = close > close[1]
downday = close < close[1]

rnge_UpDay = close - close[1]
rnge_DownDay = close[1] - close

rnge_pct_upday = upday ? (rnge_UpDay/close)*100 : na
rnge_pct_DownDay = downday ? -(rnge_DownDay/close)*100 : na

col = rnge_pct_upday > thr ? lime : rnge_pct_DownDay < -thr ? red : yellow

plot(rnge_pct_upday, style=histogram, linewidth=3, color=col)
plot(rnge_pct_DownDay, style=histogram, linewidth=3, color=col)
p1=plot(thr, title="Upper Threshold Line", style=line, linewidth=3, color=white)
p2=plot(-(thr), title="Lower Threshold Line", style=line, linewidth=3, color=white)
fill(p1, p2, color=silver, transp=tspcy)