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.

Script open-source

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.

Vous voulez utiliser ce script sur un graphique ?
//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)