TradingView
zerocashcool
Apr 27, 2020 11:55 AM

NISON - SWING TRADING STRATEGIES Education

Ethereum / U. S. DollarKraken

Description

NISON - SWING TRADING STRATEGIES
PB&J - Pullback to Sweetspot [SMA 10 / EMA 30]


TT9 - Trading The 9 [SMA/EMA - 9 / 20 / 50]


Trailing Stop [MA 3 /12]

Comment

//@version=3
study(title = "Nison - PB&J", shorttitle="Nison - PB&J", overlay=true)
src = input(close, title="Source")

// SMA 10
ma1 = sma(src, 10)
plot(ma1, color=white, title='SMA 10', color=color(#f44336, 0), linewidth=2, transp=35)

// EMA 30
exponential = input(true, title="Exponential MA")
ema = exponential ? ema(src, 30) : sma(src, 30)
plot(ema, color=#ffeb3b, title="[E]MA30", linewidth=2, transp=0)

Comment

//@version=3
study(title="Nison - TT9", shorttitle="Nison - TT9", overlay=true)
src = input(close)

ma1 = sma(src, 9)
ma2 = sma(src, 20)
ma3 = sma(src, 50)

ma4 = ema(src, 9)
ma5 = ema(src, 20)
ma6 = ema(src, 50)

plot(ma1, title='SMA 9', color=color(#f44336, 0), linewidth=1)
plot(ma2, title='SMA 20', color=color(#2196f3, 0), linewidth=1)
plot(ma3, title='SMA 50', color=color(#ffeb3b, 0), linewidth=1)

plot(ma4, title='EMA 9', color=color(#f44336, 0), linewidth=1)
plot(ma5, title='EMA 20', color=color(#2196f3, 0), linewidth=1)
plot(ma6, title='EMA 50', color=color(#ffeb3b, 0), linewidth=1)

Comment

//@version=3
study(title="Nison - Trailing Stop", shorttitle="Nison - Trailing Stop", overlay=true)

src = input(close)
ma1 = sma(src, 3)
ma2 = sma(src, 12)

plot(ma1, title='SMA 3', color=color(#f44336, 0), linewidth=1)
plot(ma2, title='SMA 12', color=color(#2196f3, 0), linewidth=1)

Comment

Trailing Stop [MA 3/12]

Comment

MA 3/12

Comment

PB&J - Pullback to Sweetspot [SMA 10 / EMA 30] + FIBONACCI

Comment

"Most traders are going to buy breakouts.
The word breakouts sounds so exciting doesn't it?

The problem with buying breakouts is that they're
hardly very low risk.

Think about it. If you are buying when everybody else is,
then who is left to buy after you get in?

Also consider this: The majority of breakouts fail
and return (pullback) to the breakout point!"

"Forget buying breakouts. Step away from the crowd.

Wait for the breakout buyers to get scared and sell.

This sets up the pullback that you can get into with much lower risk
and higher odds of having a successful trade."

Comment

PB&J - SETTING STOP LOSSES

Comment

Comments
kennypilanski
Thank you
zerocashcool
@kennypilanski, Thank you! :)
PiotrWoz
very cool buddy, you was the only one trader back in the 20.000 USD/BTC who has predicted that crash/selloff
zerocashcool
@PiotrWoz, Thank you my friend. <3
ProjectSyndicate
upvoted. great setups.
zerocashcool
@ProjectSyndicate, Thank you!
KerryMarasaCadiganpo
Well done
zerocashcool
PiotrWoz
do you have MA 20 & MA 10 on this chart ?
zerocashcool
@PiotrWoz, SMA 10 / EMA 30.

//@version=3
study(title = "Nison - PB&J", shorttitle="Nison - PB&J", overlay=true)
src = input(close, title="Source")

// SMA 10
ma1 = sma(src, 10)
plot(ma1, color=white, title='SMA 10', color=color(#f44336, 0), linewidth=2, transp=35)

// EMA 30
exponential = input(true, title="Exponential MA")
ema = exponential ? ema(src, 30) : sma(src, 30)
plot(ema, color=#ffeb3b, title="[E]MA30", linewidth=2, transp=0)
More