TRO TRADING VIDEOS

free & uncensored discussion arena for TheRumpledOne

Moderator: moderators

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby TheRumpledOne » Mon May 21, 2018 3:05 pm

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!

Please do NOT PM me with trading or coding questions, post them in a thread.

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

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby TheRumpledOne » Tue May 22, 2018 3:59 pm

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

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: TRO TRADING VIDEOS

Postby IgazI » Tue May 22, 2018 7:21 pm

I have managed to create a BZ in Pine Script (Trading View Charts)...
I've been using the manual and an ice-pick to get the right answer so my code is very messy :lol:

If I can get this far in 24 hours then it should be a walk in the park for you.

pine_script.png
pine_script.png (43.73 KiB) Viewed 2485 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: TRO TRADING VIDEOS

Postby IgazI » Wed May 23, 2018 6:01 am

Here you go (if you're interested):

Candles are only green if they open in the Buy-zone.
trythis.png
trythis.png (47.84 KiB) Viewed 2461 times

BUYZONE for TRADING VIEW CHARTS

Code: Select all

//@version=3
study("BuyZone", overlay=true)


myPrice = input(defval=.99197, title="PRICE LEVEL")

adjust = input(defval=0.0016, title="BZ TOP2BOT", type = float)/2

a = myPrice + adjust
z = myPrice - adjust
b = myPrice + (adjust*3)
y = myPrice - (adjust*3)
c = myPrice + (adjust*5)
x = myPrice - (adjust*5)
d = myPrice + (adjust*7)
w = myPrice - (adjust*7)
e = myPrice + (adjust*9)
v = myPrice - (adjust*9)
f = myPrice + (adjust*11)
u = myPrice - (adjust*11)
g = myPrice + (adjust*13)
t = myPrice - (adjust*13)
aa = myPrice + (adjust*15)
zz = myPrice - (adjust*15)
bb = myPrice + (adjust*17)
yy = myPrice - (adjust*17)
cc = myPrice + (adjust*19)
xx = myPrice - (adjust*19)
dd = myPrice + (adjust*21)
ww = myPrice - (adjust*21)
ee = myPrice + (adjust*23)
vv = myPrice - (adjust*23)
ff = myPrice + (adjust*25)
uu = myPrice - (adjust*25)

hline(myPrice, title="origin", linestyle=dotted, linewidth=1, color = #201020)
hline(a, title="origin", linestyle=solid, linewidth=3, color = lime, editable = false)
hline(z, title="origin", linestyle=solid, linewidth=3, color = lime, editable = false)
//set1
hline(b, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(y, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set2
hline(c, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(x, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set3
hline(d, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(w, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set4
hline(e, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(v, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set5
hline(f, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(u, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set6
hline(g, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(t, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set7
hline(aa, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(zz, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set8
hline(bb, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(yy, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set9
hline(cc, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(xx, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set10
hline(dd, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(ww, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set11
hline(ee, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(vv, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set12
hline(ff, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(uu, title="origin", linestyle=dotted, linewidth=1, color = #101010)



H1 = hline(a)
H2 = hline(z)
fill(H1 , H2, color=green, transp=72, editable=false)

plot(line)
data = (open < a and open > z)
data2 = close > close[1]
barcolor(data ? lime : data2 ? white : red, editable=false)
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
Mira
rank: 1000+ posts
rank: 1000+ posts
Posts: 1729
Joined: Thu Nov 10, 2016 8:37 pm
Reputation: 1608
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby Mira » Wed May 23, 2018 1:40 pm

IgazI wrote:Here you go (if you're interested):

Candles are only green if they open in the Buy-zone.
trythis.png
BUYZONE for TRADING VIEW CHARTS

Code: Select all

//@version=3
study("BuyZone", overlay=true)


myPrice = input(defval=.99197, title="PRICE LEVEL")

adjust = input(defval=0.0016, title="BZ TOP2BOT", type = float)/2

a = myPrice + adjust
z = myPrice - adjust
b = myPrice + (adjust*3)
y = myPrice - (adjust*3)
c = myPrice + (adjust*5)
x = myPrice - (adjust*5)
d = myPrice + (adjust*7)
w = myPrice - (adjust*7)
e = myPrice + (adjust*9)
v = myPrice - (adjust*9)
f = myPrice + (adjust*11)
u = myPrice - (adjust*11)
g = myPrice + (adjust*13)
t = myPrice - (adjust*13)
aa = myPrice + (adjust*15)
zz = myPrice - (adjust*15)
bb = myPrice + (adjust*17)
yy = myPrice - (adjust*17)
cc = myPrice + (adjust*19)
xx = myPrice - (adjust*19)
dd = myPrice + (adjust*21)
ww = myPrice - (adjust*21)
ee = myPrice + (adjust*23)
vv = myPrice - (adjust*23)
ff = myPrice + (adjust*25)
uu = myPrice - (adjust*25)

hline(myPrice, title="origin", linestyle=dotted, linewidth=1, color = #201020)
hline(a, title="origin", linestyle=solid, linewidth=3, color = lime, editable = false)
hline(z, title="origin", linestyle=solid, linewidth=3, color = lime, editable = false)
//set1
hline(b, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(y, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set2
hline(c, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(x, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set3
hline(d, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(w, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set4
hline(e, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(v, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set5
hline(f, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(u, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set6
hline(g, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(t, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set7
hline(aa, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(zz, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set8
hline(bb, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(yy, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set9
hline(cc, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(xx, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set10
hline(dd, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(ww, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set11
hline(ee, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(vv, title="origin", linestyle=dotted, linewidth=1, color = #101010)
//set12
hline(ff, title="origin", linestyle=dotted, linewidth=1, color = #101010)
hline(uu, title="origin", linestyle=dotted, linewidth=1, color = #101010)



H1 = hline(a)
H2 = hline(z)
fill(H1 , H2, color=green, transp=72, editable=false)

plot(line)
data = (open < a and open > z)
data2 = close > close[1]
barcolor(data ? lime : data2 ? white : red, editable=false)


Thanks for sharing IgazI [-o<

I can’t remember how to trade the BZ by the way #-o

Do I have to wait to see a bar crossing and closing over the zone?
__________ THE :smt096 IS A LIE__________

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: TRO TRADING VIDEOS

Postby IgazI » Wed May 23, 2018 3:31 pm

Go to your largest chart, select a price level, and if a green bar touches a green line then you can place a trade:
zone sizing (width of zone compared to width of bars) and money management are the most important factors.

BZ.png
BZ.png (25.76 KiB) Viewed 2440 times


There are numerous ways to fine-tune your entry but this is generally what I am looking for:

wait_wait_wait.png
wait_wait_wait.png (56.2 KiB) Viewed 2440 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby TheRumpledOne » Wed May 23, 2018 4:37 pm

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby TheRumpledOne » Thu May 24, 2018 2:31 pm

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby TheRumpledOne » Fri May 25, 2018 2:54 pm

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

User avatar
TheRumpledOne
rank: 10000+ posts
rank: 10000+ posts
Posts: 15544
Joined: Sun May 14, 2006 9:31 pm
Reputation: 3035
Location: Oregon
Real name: Avery T. Horton, Jr.
Gender: None specified
Contact:

Re: TRO TRADING VIDEOS

Postby TheRumpledOne » Sun May 27, 2018 11:54 pm

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!



Please do NOT PM me with trading or coding questions, post them in a thread.

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


Return to “TheRumpledOne”