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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Wed Nov 09, 2022 4:06 pm

I have simplified the ATR to just. . .

avrgRange = ta.sma(ta.median(ta.atr(2), 51),50)

down_facing_dog.jpg
down_facing_dog.jpg (58.75 KiB) Viewed 1122 times


Range Indicator:

Code: Select all

//@version=5
indicator("RMA Range", shorttitle = "Range", overlay = false)
rangeLen = input(12, title = "rLen")
rain = input(0.8, title = "%R")
relMa = ta.sma(ta.median(ta.atr(2), 51),50) * rain
mid = (ta.lowest(relMa, rangeLen * 2) + ta.highest(relMa,rangeLen * 2) ) / 2
palette = relMa >= mid ? color.new(color.blue,15) : color.new(color.red,0)
palette2 = relMa >= mid ? color.new(color.red,15) : color.new(color.blue,0)
transpStamp = relMa > mid ? 15 : 0
x = plot(relMa, color = color.new(palette, 20), style = plot.style_line, join = true, linewidth = 1)
y = plot(mid, color = color.new(palette2,60), style = plot.style_line, join = true, offset = 0 )
fill(x,y, color = color.new(palette,65))
Attachments
is_mod_line_chart.jpg
is_mod_line_chart.jpg (91.87 KiB) Viewed 1119 times
Last edited by IgazI on Fri Nov 11, 2022 6:16 pm, edited 1 time in total.
"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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Wed Nov 09, 2022 5:06 pm

Buying Facebook below $90 was just simple math. . .
I would never invest in the Zuck, but people who love money more than bias are sure going to make a killing.

simple_math.jpg
simple_math.jpg (75.96 KiB) Viewed 1114 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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Wed Nov 09, 2022 7:39 pm

It feels like ADA is BTC . . .

The value of ADA runs very close to:

(BTC * 2) / 100,000

Based on that. . .
$500,000 BTC = $10 ADA

We'll get there :lol:

peg.jpg
peg.jpg (208.36 KiB) Viewed 1089 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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Thu Nov 10, 2022 3:30 pm

Draw all the lines you want. . .
the fact is that there are trillions of dollars waiting to get into the space.

Do you really believe that they are going to sit on the sidelines during such an epic opportunity to buy? not going to happen.

There is a 100% chance that there will come a day when you sell for a small profit only to be priced out of the market. . .
and all you'll be able to afford are nano Bitcoin futures.

bitty_vs_smitty.jpg
bitty_vs_smitty.jpg (201.46 KiB) Viewed 1020 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
Don_xyZ
rank: 1000+ posts
rank: 1000+ posts
Posts: 1163
Joined: Tue Dec 14, 2010 9:15 am
Reputation: 1022
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby Don_xyZ » Fri Nov 11, 2022 2:31 am

IgazI wrote:Buying Facebook below $90 was just simple math. . .
I would never invest in the Zuck, but people who love money more than bias are sure going to make a killing.

simple_math.jpg


I think as people grow old, they'll love money even more. Saw this in my grandparents :lol: :lol: :lol:
Congrats on the catch! =D> You love money indeed :lol:
My threads

Patterns Observation
post148989#p148989

BONZ
post151670#p151670

MENTAL FORTIFICATION
post168148#p168148

Image

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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Fri Nov 11, 2022 4:04 pm

TheStreet: Luc Olinga:

SBF_ZERO.jpg
SBF_ZERO.jpg (44.76 KiB) Viewed 947 times


It is definitely not a time to be invested in dog coins. . .

PS: I am down about $1,950 at the moment.

ADABTC.jpg
ADABTC.jpg (203.9 KiB) Viewed 941 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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Fri Nov 11, 2022 6:13 pm

This is the current version, if you want to take a look-see. . .

- the '✣ ' are just 'Einstein lines':
average mid of 9 periods ago vs current, changing the MA color.
- the candle colors are based on the current midpoint vs the average.
- the MA itself is a smoothed average of the average midpoint:
it is very similar to a 20-period moving average.

TSv600_something.jpg
TSv600_something.jpg (145.08 KiB) Viewed 910 times


Code: Select all

//@version=5
indicator(title ="The Whale III", shorttitle = "The Shore", overlay = true)
clr_Up = input(color.blue, title = "UP")
clr_Dn = input(color.red, title = "DN")
relMa = ta.sma(ta.median(ta.atr(2), 51),50) * 0.4// equals 40% of range
//-----MA STUFF
a = ( hl2[3] + hl2[2] + hl2[1] ) / 3
b = ta.rma(ta.rma(a,5),3)

cl = close + relMa
op = close - relMa
hi = high
lo = low
os = a < hl2


palette = os ? color.blue : color.red
palette2 = a[9] < hl2? color.blue : color.red

plotcandle(op,hi,lo,cl, color = color.new(palette,60),bordercolor = color.new(palette,35), wickcolor = color.new(palette,65))

h = high > cl ? cl : high
l = low < op ? op : low
c = close
o = c[1]
o := o > cl ? cl : o < op ? op : o
plotcandle(o,h,l,c, color=color.new(palette,35), bordercolor = color.new(palette,25), wickcolor = color.new(palette,40))

plot(b, color = color.new(palette2,50), style = plot.style_circles, join = true, linewidth = 2)

plotchar(a[9], char = "✣", location = location.absolute, show_last = 1, offset = -8, color = color.new(color.orange,0), size = size.auto)
plotchar(a[0], char = "✣", location = location.absolute, show_last = 1, offset = 1, color = color.new(color.orange,0), size = size.auto)
"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 12, 2022 11:02 am

IgazI wrote:TheStreet: Luc Olinga:

SBF_ZERO.jpg

It is definitely not a time to be invested in dog coins. . .

PS: I am down about $1,950 at the moment.

ADABTC.jpg


I think we will see prices drop more when USDT eventually pops.

I know you've mentioned before that you hold for a long time but do you see crypto ever recovering to the levels before? I can't help but feel that the recent turn of events will put people off permanently.
"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: 1663
Gender: None specified

Re: PowerX Strategy "PowerZ"

Postby IgazI » Sat Nov 12, 2022 3:01 pm

Goonslinger wrote:
IgazI wrote:TheStreet: Luc Olinga:

SBF_ZERO.jpg

It is definitely not a time to be invested in dog coins. . .

PS: I am down about $1,950 at the moment.

ADABTC.jpg


I think we will see prices drop more when USDT eventually pops.

I know you've mentioned before that you hold for a long time but do you see crypto ever recovering to the levels before? I can't help but feel that the recent turn of events will put people off permanently.


Without regulation, no, but regulation is coming and coming fast.

Betting against crypto is like betting against the internet; it's just an AOL chat room now, but that's not all that it will be in the future :lol:

I hold ADA because I believe in the mission and intelligence behind the product, and I believe that it will have no rivals when it reaches its final form.

As with anything else you allocate risk to it and it either works or it doesn't. . .
the risk that I decided to take with crypto is equal to losing 1 Bitcoin, and I'm ok with that.

I'm currently just buying USDC and adding 500-1000 ADA here and there.

Even a toothbrush will 5x, eventually, that is just the world we live in.
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
aliassmith
rank: 5000+ posts
rank: 5000+ posts
Posts: 5057
Joined: Tue Jul 28, 2009 9:50 pm
Reputation: 2847
Gender: Male

Re: PowerX Strategy "PowerZ"

Postby aliassmith » Sat Nov 12, 2022 3:27 pm

IgazI wrote:
Goonslinger wrote:
IgazI wrote:TheStreet: Luc Olinga:

SBF_ZERO.jpg

It is definitely not a time to be invested in dog coins. . .

PS: I am down about $1,950 at the moment.

ADABTC.jpg


I think we will see prices drop more when USDT eventually pops.

I know you've mentioned before that you hold for a long time but do you see crypto ever recovering to the levels before? I can't help but feel that the recent turn of events will put people off permanently.


Without regulation, no, but regulation is coming and coming fast.

Betting against crypto is like betting against the internet; it's just an AOL chat room now, but that's not all that it will be in the future :lol:

I hold ADA because I believe in the mission and intelligence behind the product, and I believe that it will have no rivals when it reaches its final form.

As with anything else you allocate risk to it and it either works or it doesn't. . .
the risk that I decided to take with crypto is equal to losing 1 Bitcoin, and I'm ok with that.

I'm currently just buying USDC and adding 500-1000 ADA here and there.

Even a toothbrush will 5x, eventually, that is just the world we live in.


Agreed "crypto" is the future. By that I mean some form of electronic currency. The plebs will believe it's good for convenience and security. Meanwhile "they" will be able to control everything.

Also it will come down to betamax or vhs. How about Blu-ray vs. HD DVD?

Currently Bitcoin is the old legacy model. It is new tech but slow and clunky. Which coin will win out?
Trade Your Way as Long as It Makes Money!

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


Return to “general”