PowerX Strategy "PowerZ"

everything that doesn't belong elsewhere cometh here

Moderator: moderators

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Thu Nov 24, 2022 5:07 am

Yirbu wrote:
IgazI wrote:I trust Coinbase, but I purchased a hardware wallet today to avoid unnecessary risks.

I don't really trade in and out all that often, I mostly just buy and hold.


Good. If you have crypto you really need a hardware wallet. Especially if you just keep it and not actively use it to trade.
I can name at least 5 exchanges where I had crypto that were hacked and I lost capital. They all are gone now
Only Finex managed to pay everything back....

What's also nice about a hardware wallet is that it's easier to save dust...if you have just a couple of $...convert them into something exotic and after 2 years, suddenly you have a lot.

Trezor is a nice one.


It's bad enough when you lose your money and it's your fault. . .but to have it just taken from you!

I had funds with a broker that went bankrupt, Man Financial, but they returned all of my money. . .
to this day I will not deposit more than 30% of my risk capital with any one broker :lol:

I think that "something exotic", for me, would be the SPELL token, that magic internet money :lol:
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Fri Nov 25, 2022 3:22 pm

Closing prices tell you everything you need to know:
pattern: closes start stacking in a tight area.
breakout: closes leave the pattern.

This chart uses the trend of the 'relatively good advisor': ta.sma(ta.rma(hlc3,3),3):
If you're trading long and you get a red brick with no follow through, no lower close, then the move is still bullish.

I use different chart styles depending on my mood :)

CL_FTW.jpg
CL_FTW.jpg (146.02 KiB) Viewed 1670 times


Code: Select all

//@version=5
indicator(title = "BSW", shorttitle = "High-Low-Close", overlay = true)
//-----Chart-Setup-----//
adj = input(0.0000, "movePointy")
plo1 = input(true, title = "03_SRMA?", inline = "2")
plo2 = input(false, title = "20_SMA?", inline = "2")
trend = ta.sma(ta.rma(hlc3,3),3) < close ? color.rgb(72, 161, 233) : color.red
h = high
l = low
c = high
o = low
updnCon = h[1] < c ? "up" : l[1] > c ? "dn" : "no"
updnCon := updnCon == "no" and o < c ? "white" : updnCon == "no" and o > c ? "black" : updnCon
transp = (close[4] + close[3]) / 2 < close ? 70 : 70
palette = updnCon == "up" ? color.rgb(89, 150, 199) : updnCon == "dn" ? color.red : updnCon == "white" ? color.white :  updnCon == "black" ? color.black  : color.fuchsia
plotcandle(o,h,l,c, color = color.new(trend,transp), wickcolor =color.rgb(107, 113, 133), bordercolor = color.new(color.orange,70), display = display.all - display.status_line - display.price_scale)
plot(close, color = color.new(#e1e6eb, 40), style = plot.style_line, linewidth = 1, join = true, display = display.all - display.status_line)
plot(close, color = color.new(color.orange, 45), style = plot.style_circles, linewidth = 4, join = false, display = display.all - display.price_scale - display.status_line)
plot(close, color = color.new(color.white, 10), style = plot.style_circles, linewidth = 3, join = false,display = display.all - display.price_scale)
//-----Better-MA-----//
ma1 = (ta.sma(hlc3, 16) + ta.sma(hlc3, 19)[3]) / 2
sig = ta.lowest(ma1, 2) < ma1 ? color.new(color.rgb(89, 150, 199),0) : ta.highest(ma1,2) > ma1 ? color.new(color.red,0) : color.new(color.gray,0)
plot(plo2 ? ma1 : na, color = color.new(sig,76), style = plot.style_line, linewidth = 2, display = display.all - display.status_line - display.price_scale)

fh = h
fl = l
cond1 = close[2] > close[3] and close[2] > close[4] and close[2] > close[5] and close[2] > close[6] and close[2] >= close[1] and close[2] >= close[0] // is highest of 5, is >= 2 to the right.
cond2 = close[2] < close[3] and close[2] < close[4] and close[2] < close[5] and close[2] < close[6] and close[2] <= close[1] and close[2] <= close[0] // is lowest of 5, is <= 2 to the right.
plotchar(cond1 ? fh[2] + adj : na, char = "⬜", color = color.new(color.orange,78), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(cond2 ? fl[2] - adj : na, char = "⬜", color = color.new(color.orange,78), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(cond1 ? fh[2] + adj : na, char = "△", color = color.new(color.white,25), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(cond2 ? fl[2] - adj : na, char = "▽", color = color.new(color.white,25), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)

plot(plo1 ? ta.sma(ta.rma(hlc3,3),3) : na, color = color.new(color.orange,76), style = plot.style_circles, join = true )
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Fri Nov 25, 2022 6:09 pm

What are you looking for?
- define it.
- trade it.

closes_closes.jpg
closes_closes.jpg (134.94 KiB) Viewed 1650 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

Goonslinger
rank: 50+ posts
rank: 50+ posts
Posts: 135
Joined: Sun Nov 09, 2014 8:20 pm
Reputation: 18
Gender: Male

Re: PowerX Strategy "PowerZ"

Postby Goonslinger » Sat Nov 26, 2022 2:28 pm

IgazI wrote:I have added 'pointy places' to $ZILLIONSZ, aka "aliascript", if you are interested.

'movePointy' is a setting that moves the 'pointy place' marker away from the price extreme by a number of pips, eg 0.0001.

Let me know if you think I should add it to the first post or leave the aliascript as is.

pointyPlaces.jpg

Code: Select all

//@version=5
indicator(title = "$ZILLIONZ", shorttitle = "aliascript", overlay = true)
//-----Chart-Setup-----//
adj = input(0.0, "movePointy")
h = high
l = low
c = close
o = c[1]
updnCon = h[1] < c ? "up" : l[1] > c ? "dn" : "no"
updnCon := updnCon == "no" and o < c ? "white" : updnCon == "no" and o > c ? "black" : updnCon
palette = updnCon == "up" ? color.blue : updnCon == "dn" ? color.red : updnCon == "white" ? color.white :  updnCon == "black" ? color.black  : color.fuchsia
plotcandle(o,h,l,c, color = palette, wickcolor =color.rgb(107, 113, 133), bordercolor = color.rgb(66, 68, 77))
//-----Better-MA-----//
ma1 = (ta.sma(hlc3, 16) + ta.sma(hlc3, 19)[3]) / 2
sig = ta.lowest(ma1, 2) < ma1 ? color.new(color.blue,0) : ta.highest(ma1,2) > ma1 ? color.new(color.red,0) : color.new(color.black,0)
plot(ma1, color = color.new(sig,76), style = plot.style_line, linewidth = 3)

fh = h
fl = l
cond1 = close[2] > close[3] and close[2] > close[4] and close[2] > close[5] and close[2] > close[6] and close[2] >= close[1] and close[2] >= close[0] // is highest of 5, is >= 2 to the right.
cond2 = close[2] < close[3] and close[2] < close[4] and close[2] < close[5] and close[2] < close[6] and close[2] <= close[1] and close[2] <= close[0] // is lowest of 5, is <= 2 to the right.
plotchar(cond1 ? fh[2] + adj : na, char = "⬜", color = color.new(color.white,85), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(cond2 ? fl[2] - adj : na, char = "⬜", color = color.new(color.white,85), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(cond1 ? fh[2] + adj : na, char = "△", color = color.new(color.white,10), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(cond2 ? fl[2] - adj : na, char = "▽", color = color.new(color.white,10), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)



Adding it to the 1st post would be good if it's possible to toggle the pointy places on/off.
"So let it be written; so let it be done."

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Sat Nov 26, 2022 4:13 pm

Goonslinger wrote:
Adding it to the 1st post would be good if it's possible to toggle the pointy places on/off.


Done.

- toggle the 20 SMA on and off
- toggle the 03 SRMA on and off
- toggle the "pointy places" on and off.
- adjust location of pointy places.

ascr.jpg
ascr.jpg (130.68 KiB) Viewed 1590 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Tue Nov 29, 2022 8:51 pm

I'm considering just 'alias scripting' the whole thing. . . :lol:
I'm not in the bug fixing mood. . .

smh.jpg
smh.jpg (119.4 KiB) Viewed 1360 times


Here, play around with this:

Code: Select all

//@version=5
indicator(title = "Bodies Show The Way", shorttitle = "BSW", overlay = true)
h = high
l = low
c = high
o = low
join_HTF = input(false, title = "Connect:", inline = "2")
peri = input("", title = "Time Frame", inline = "2")
x = time_close(timeframe.period)
y = time_close(peri)
z = x == y ? close : na
plot(peri != "" ? z : na,color = color.new(color.blue,50),style = plot.style_circles, linewidth = 2, trackprice = true)
plot(join_HTF and peri != "" ? z : na,color = color.new(color.blue,45),style = plot.style_line, linewidth = 2, display = display.all - display.price_scale)
plot_TRI = input(false, title = "Display:", inline = "1")
adj = input(0.0, title = "Adjust Triangles", inline = "1")
trend_CLR = close > high[1]? color.rgb(46, 112, 167) : close < low[1] ? color.red : color.white

plotcandle(o,h,l,c, color = color.new(trend_CLR,68), wickcolor =color.rgb(107, 113, 133), bordercolor = color.new(#26310d,70), display = display.all - display.status_line - display.price_scale)
plot(close, color = color.new(#e1e6eb, 40), style = plot.style_line, linewidth = 1, join = true, display = display.all - display.status_line)
plot(close, color = color.new(color.orange, 45), style = plot.style_circles, linewidth = 4, join = false, display = display.all - display.price_scale - display.status_line)
plot(peri != "" and y==x?close:na, color = color.new(color.blue, 0), style = plot.style_circles, linewidth = 4, join = false, display = display.all - display.price_scale - display.status_line)
plot(close, color = color.new(color.white, 10), style = plot.style_circles, linewidth = 3, join = false,display = display.all - display.price_scale)
plot(peri != "" and y==x?close:na, color = color.new(#26310d, 0), style = plot.style_circles, linewidth = 3, join = false, display = display.all - display.price_scale - display.status_line)


fh = h
fl = l
cond1 = close[2] > close[3] and close[2] > close[4] and close[2] > close[5] and close[2] > close[6] and close[2] >= close[1] and close[2] >= close[0] // is highest of 5, is >= 2 to the right.
cond2 = close[2] < close[3] and close[2] < close[4] and close[2] < close[5] and close[2] < close[6] and close[2] <= close[1] and close[2] <= close[0] // is lowest of 5, is <= 2 to the right.
plotchar(plot_TRI and cond1 ? fh[2] + adj : na, char = "⬜", color = color.new(#26310d,82), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(plot_TRI and cond2 ? fl[2] - adj : na, char = "⬜", color = color.new(#26310d,82), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(plot_TRI and cond1 ? fh[2] + adj : na, char = "△", color = color.new(color.white,15), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)
plotchar(plot_TRI and cond2 ? fl[2] - adj : na, char = "▽", color = color.new(color.white,15), offset = -2, location = location.absolute, editable = false, display = display.all - display.status_line)



rew.jpg
rew.jpg (134.84 KiB) Viewed 1335 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Tue Nov 29, 2022 11:46 pm

. . . added some code to the above post,
if you want to take a look.
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Wed Nov 30, 2022 12:48 am

I had an inkling that something like this was coming, based on that 'crown' formation. . .

pamp.jpg
pamp.jpg (107.34 KiB) Viewed 1316 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Wed Nov 30, 2022 3:42 pm

Oversized dots make it easy for even the oldest of eyes to see price collecting at and around price levels. . .
it might not be what you are used to, but it is a better way of observing the price action, IMO.

never_see.jpg
never_see.jpg (171.9 KiB) Viewed 1271 times
lev.jpg
lev.jpg (146.68 KiB) Viewed 1260 times
shbang.jpg
shbang.jpg (138.92 KiB) Viewed 1257 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
IgazI
rank: 1000+ posts
rank: 1000+ posts
Posts: 2016
Joined: Sat Feb 17, 2018 5:28 pm
Reputation: 1664
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Wed Nov 30, 2022 8:12 pm

We had some good news today from JP. . .
it appears that he is not going to send the economy into the depths of hell after all :lol:

mor.jpg
mor.jpg (148.74 KiB) Viewed 1238 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.


Return to “general”