All things TradingView

everything that doesn't belong elsewhere cometh here

Moderator: moderators

manfloy
rank: <50 posts
rank: <50 posts
Posts: 6
Joined: Wed Mar 29, 2017 2:51 am
Reputation: 5
Gender: None specified

Re: All things TradingView

Postby manfloy » Mon Jun 18, 2018 6:48 am

thanks guys really appreciated one love

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

manfloy
rank: <50 posts
rank: <50 posts
Posts: 6
Joined: Wed Mar 29, 2017 2:51 am
Reputation: 5
Gender: None specified

Re: All things TradingView

Postby manfloy » Mon Jun 18, 2018 6:50 am

i can't replicate the 3ball zz in tradingview, that could be an huge gap for analyze

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

Re: All things TradingView

Postby TheRumpledOne » Mon Jun 18, 2018 2:39 pm

manfloy wrote:i can't replicate the 3ball zz in tradingview, that could be an huge gap for analyze



TO SIMULATE THE 3LZZ:

1 BALL = 5 PERIOD HIGH/LOW

2 BALL = 13 PERIOD HIGH/LOW

3 BALL = 34 PERIOD HIGH/LOW

Is it NOT exact but close enough you never miss one!
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
dojirock
rank: 1000+ posts
rank: 1000+ posts
Posts: 1921
Joined: Tue Nov 17, 2009 10:11 pm
Reputation: 726
Gender: None specified
Contact:

Re: All things TradingView

Postby dojirock » Mon Jun 18, 2018 5:44 pm

2018-06-18_1344.png
2018-06-18_1344.png (187.53 KiB) Viewed 5272 times


doji
It always takes Momentum to break Momentum!
"A small loss is just as satisfying as a large gain" -MO
"Sometimes we need to stop learning and start thinking...."
"Once you stack, you'll never go back!"

manfloy
rank: <50 posts
rank: <50 posts
Posts: 6
Joined: Wed Mar 29, 2017 2:51 am
Reputation: 5
Gender: None specified

Re: All things TradingView

Postby manfloy » Fri Jun 22, 2018 5:11 am

thank you sir Doji , much appreciated one love !

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

Postby IgazI » Thu Jun 28, 2018 1:32 pm

I always come back to the fibo. ret. tool :lol:

Currently I have the Line Width indicator set to select the lowest ATR(30) value of the last 20 days and
then cut that number in half.

Entry is on a line or between lines and exit is +1 or more lines.

dchappy.png
dchappy.png (105.7 KiB) Viewed 5081 times


Code: Select all

//@version=3
study("Line Width")
x = 2.0//input(defval=2.0, title="Range/?")

range = security(tickerid, "720", atr(30)[1])/x
range1 = security(tickerid, "720", lowest(range,40)[1])

plot(range1, color = color(red, 60))
"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: All things TradingView

Postby IgazI » Wed Jul 04, 2018 5:21 pm

The highest 30 SMA of the 2-bar ATR over the last 5 data points...maybe I am making things too complicated :)

Line_Width.png
Line_Width.png (66.13 KiB) Viewed 5002 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

manfloy
rank: <50 posts
rank: <50 posts
Posts: 6
Joined: Wed Mar 29, 2017 2:51 am
Reputation: 5
Gender: None specified

Re: All things TradingView

Postby manfloy » Sun Jul 08, 2018 6:40 pm

absolutely fantastic sir , if you could develop 1-2 more examples it will be very usefull !

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: All things TradingView

Postby IgazI » Mon Jul 09, 2018 6:10 pm

manfloy wrote:absolutely fantastic sir , if you could develop 1-2 more examples it will be very usefull !


Not sure what you want an example of...

According to dchappy, TL are drawn at roughly the same angle as the, or a prev., slow MA: we are looking for a TL break and a low point, as a trigger, to match the downtrend line.

The gray lines on the chart are spaced 20.3 pips apart and give you a visual of how fast you are going to make or break x number of dollars.

If each line is $10 then you should have $40 set aside and risk $10 one trade at a time. If you make $10 then you increase the value of the lines to 10(50/40), or $12.50, spreading your profit over 4 trades to increase your reward over your fixed risk of $40.

Dividing sets the number of lines after each trade: /4 (over 4), /3, /2, /1: you could sink all of your risk into one trade, if you really wanted to, and set your line value to $12.50(4/1) or $50/line.

break_cup.png
break_cup.png (106.26 KiB) Viewed 4892 times


Also be aware of your larger chart start times be it 12 hours, a day, etc, and (ideally) trade with color.

RSG.png
RSG.png (14.63 KiB) Viewed 4892 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: All things TradingView

Postby IgazI » Tue Jul 10, 2018 3:16 pm

Not a bad run...
every line you grab, with a 4 line risk box, is +25% size going forward.

It is your position size that is making the money, not the pips.

save.png
save.png (88.27 KiB) Viewed 4844 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”