Aliassmith Beats a "Dead Horse"

free & uncensored discussion arena for TheRumpledOne

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

aliasscript

Postby IgazI » Tue Oct 18, 2022 2:57 pm

I ironed out the "aliasscript" for TradingView. . .
PS: updated
aliasscript.jpg
aliasscript.jpg (138.57 KiB) Viewed 1215 times


Code: Select all

//@version=5
indicator(title = "$ZILLIONZ", shorttitle = "aliasscript", overlay = true)
//-----Chart-Setup-----//
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)
//-----UNO-REVERSE-----//
aliasUpCon = (ta.highest(high, 3) + ta.lowest(low,3) + ta.highest(close,3) + ta.lowest(close,3) ) / 4 > ma1
aliasDnCon = (ta.lowest(low,3) + ta.highest(high,3) + ta.highest(close,3) + ta.lowest(close,3)) / 4 < ma1
upColor = color.new(color.blue, 40)
dnColor = color.new(color.red, 40)
plotchar(aliasUpCon, char= "░", location = location.bottom,color = upColor)
plotchar(aliasDnCon, char= "░", location = location.bottom,color = dnColor)
"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
aliassmith
rank: 5000+ posts
rank: 5000+ posts
Posts: 5057
Joined: Tue Jul 28, 2009 9:50 pm
Reputation: 2848
Gender: Male

Re: aliasscript

Postby aliassmith » Tue Oct 18, 2022 3:16 pm

IgazI wrote: I ironed out the "aliasscript" for TradingView. . .
PS: updated
aliasscript.jpg

Code: Select all

//@version=5
indicator(title = "$ZILLIONZ", shorttitle = "aliasscript", overlay = true)
//-----Chart-Setup-----//
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)
//-----UNO-REVERSE-----//
aliasUpCon = (ta.highest(high, 3) + ta.lowest(low,3) + ta.highest(close,3) + ta.lowest(close,3) ) / 4 > ma1
aliasDnCon = (ta.lowest(low,3) + ta.highest(high,3) + ta.highest(close,3) + ta.lowest(close,3)) / 4 < ma1
upColor = color.new(color.blue, 40)
dnColor = color.new(color.red, 40)
plotchar(aliasUpCon, char= "░", location = location.bottom,color = upColor)
plotchar(aliasDnCon, char= "░", location = location.bottom,color = dnColor)


You are really trying to convert me :mrgreen:
Trade Your Way as Long as It Makes Money!

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: aliasscript

Postby IgazI » Tue Oct 18, 2022 3:18 pm

aliassmith wrote:You are really trying to convert me :mrgreen:


If not you, then I'm sure someone will use it :wink:

PS: as the name suggests, the "UNO Reverse" indicator is a divergence indicator:

When the MA is up and you get an "UNO Reverse" red card then you might exit.
Last edited by IgazI on Tue Oct 18, 2022 3:27 pm, edited 1 time in total.
"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: 2848
Gender: Male

Re: Aliassmith Beats a "Dead Horse"

Postby aliassmith » Tue Oct 18, 2022 3:26 pm

Here is a little funny story.

I opened up my chart on my phone and looked at the charts. I saw a nice entry on the US30 M1 so I went long for $100 a point. I did something for a minute or 2 and looked again. It moved in my direction nice. BUT. Something didnt make sense.

My profit only showed $700.

Turns out I accidentally traded the US500 chart and it went 7 points. #-o #-o #-o

The US30 went about 40 points. :shock:
Trade Your Way as Long as It Makes Money!

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: Aliassmith Beats a "Dead Horse"

Postby IgazI » Tue Oct 18, 2022 4:22 pm

aliassmith wrote:Here is a little funny story.

I opened up my chart on my phone and looked at the charts. I saw a nice entry on the US30 M1 so I went long for $100 a point. I did something for a minute or 2 and looked again. It moved in my direction nice. BUT. Something didnt make sense.

My profit only showed $700.

Turns out I accidentally traded the US500 chart and it went 7 points. #-o #-o #-o

The US30 went about 40 points. :shock:


No steak for you. :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
aliassmith
rank: 5000+ posts
rank: 5000+ posts
Posts: 5057
Joined: Tue Jul 28, 2009 9:50 pm
Reputation: 2848
Gender: Male

Re: Aliassmith Beats a "Dead Horse"

Postby aliassmith » Wed Oct 19, 2022 8:54 am

US30 BROKE ON FTMO.
27 points spread :evil:
Faulty data or real deal.
Attachments
Screenshot_20221019_045257.jpg
Screenshot_20221019_045257.jpg (96.68 KiB) Viewed 1049 times
Trade Your Way as Long as It Makes Money!

Yirbu
rank: 500+ posts
rank: 500+ posts
Posts: 632
Joined: Mon Jun 27, 2022 9:04 am
Reputation: 438
Location: Europe
Gender: Male

Re: Aliassmith Beats a "Dead Horse"

Postby Yirbu » Wed Oct 19, 2022 9:00 am

aliassmith wrote:US30 BROKE ON FTMO.
27 points spread :evil:
Faulty data or real deal.


Guess they solved it. I have a normal spread on ftmo

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

Re: Aliassmith Beats a "Dead Horse"

Postby aliassmith » Wed Oct 19, 2022 9:27 am

Yirbu wrote:
aliassmith wrote:US30 BROKE ON FTMO.
27 points spread :evil:
Faulty data or real deal.


Guess they solved it. I have a normal spread on ftmo


Looks normal now
Trade Your Way as Long as It Makes Money!

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

Re: Aliassmith Beats a "Dead Horse"

Postby aliassmith » Wed Oct 19, 2022 9:33 am

Will it break this time?
Attachments
Screenshot_20221019_053241.jpg
Screenshot_20221019_053241.jpg (97.17 KiB) Viewed 1011 times
Trade Your Way as Long as It Makes Money!

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

Re: Aliassmith Beats a "Dead Horse"

Postby aliassmith » Wed Oct 19, 2022 12:31 pm

Trading with Dave for about 30 minutes US30 M1 of course.
Attachments
US30M110192022dave.png
US30M110192022dave.png (43.48 KiB) Viewed 980 times
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 “TheRumpledOne”