PowerX Strategy "PowerZ"
Moderator: moderators
Re: PowerX Strategy "PowerZ"
Well, heloo there. . .
"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.
Thank you for your support.
Re: PowerX Strategy "PowerZ"
- adjusted the colors to make them more pleasing to the eye.
- changed the look of the MA and colored it based on RSI+STOCH+MACD
- changed the look of the MA and colored it based on RSI+STOCH+MACD
"Everything Should Be Made As Simple As Possible, But Not Simpler!"
Re: PowerX Strategy "PowerZ"
I took the opportunity to add at low prices this morning.
BTC, ETH, and ADA are going to be traded legally in Hong Kong soon.
All three are likely going to be classified as commodities and pamped pretty hard in the coming months.
You already know which pony I'm betting on
BTC, ETH, and ADA are going to be traded legally in Hong Kong soon.
All three are likely going to be classified as commodities and pamped pretty hard in the coming months.
You already know which pony I'm betting on
"Everything Should Be Made As Simple As Possible, But Not Simpler!"
Re: PowerX Strategy "PowerZ"
Here is a skin for the range bar chart:
Code: Select all
//@version=5
indicator("rangeBandles", overlay = true)
len = input(3, title = "rangeLen")
h = high
l = low
c = high
o = low
rh = ta.highest(c,len)[1]
rl = ta.lowest(o,len)[1]
A = c > c[1] and o < o[1]
B = c < c[1] and c > o[1]
C = o > o[1] and o < c[1]
disconnected = not A and not B and not C
l := c[1] < c and disconnected ? c[1] : l
h := o[1] > o and disconnected ? o[1] : h
signal = c > rh ? "up" : o < rl ? "dn" : "na"
signal := signal == "na" and signal[1] == "up" ? "up" : signal == "na" and signal[1] == "dn" ? "dn" : signal
palette = signal == "up" ? color.blue : signal == "dn" ? color.red : color.fuchsia
transpStamp = signal == "up" ? 100 : 35
plotcandle(o,h,l,c, color = color.new(palette,transpStamp), wickcolor = color.new(palette,25), bordercolor = color.new(palette,25))
"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.
Thank you for your support.
- aliassmith
- rank: 5000+ posts

- Posts: 5057
- Joined: Tue Jul 28, 2009 9:50 pm
- Reputation: 2848
- Gender:

Re: PowerX Strategy "PowerZ"
IgazI wrote:Here is a skin for the range bar chart:
rb.jpg
Code: Select all
//@version=5
indicator("rangeBandles", overlay = true)
len = input(3, title = "rangeLen")
h = high
l = low
c = high
o = low
rh = ta.highest(c,len)[1]
rl = ta.lowest(o,len)[1]
A = c > c[1] and o < o[1]
B = c < c[1] and c > o[1]
C = o > o[1] and o < c[1]
disconnected = not A and not B and not C
l := c[1] < c and disconnected ? c[1] : l
h := o[1] > o and disconnected ? o[1] : h
signal = c > rh ? "up" : o < rl ? "dn" : "na"
signal := signal == "na" and signal[1] == "up" ? "up" : signal == "na" and signal[1] == "dn" ? "dn" : signal
palette = signal == "up" ? color.blue : signal == "dn" ? color.red : color.fuchsia
transpStamp = signal == "up" ? 100 : 35
plotcandle(o,h,l,c, color = color.new(palette,transpStamp), wickcolor = color.new(palette,25), bordercolor = color.new(palette,25))
I think I am tied at the hip with time charts. I like the time predictability factor.
Trade Your Way as Long as It Makes Money!
Re: PowerX Strategy "PowerZ"
aliassmith wrote:
I think I am tied at the hip with time charts. I like the time predictability factor.
I agree, but if we are only talking about 4 pip ranges and lower then I don't think it really matters. . .
"Everything Should Be Made As Simple As Possible, But Not Simpler!"
Re: PowerX Strategy "PowerZ"
We'll just be waiting on JP today and then maybe do a little something tomorrow.
Hopefully he surprises us all and backs off to 0.25% hikes. . .
Hopefully he surprises us all and backs off to 0.25% hikes. . .
"Everything Should Be Made As Simple As Possible, But Not Simpler!"
Re: PowerX Strategy "PowerZ"
So much for my small hope that there would be some form of good news 
0.75% and possibly larger hikes going forward.
0.75% and possibly larger hikes going forward.
"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.
Thank you for your support.
