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 » Wed Jul 11, 2018 12:35 pm

explained well ! thank you so much !

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

Postby IgazI » Wed Jul 11, 2018 4:54 pm

save.png
save.png (93.95 KiB) Viewed 4838 times
"Everything Should Be Made As Simple As Possible, But Not Simpler!"

zobi
rank: <50 posts
rank: <50 posts
Posts: 17
Joined: Sat Jul 14, 2018 12:36 pm
Reputation: 0
Gender: None specified
Contact:

Re: All things TradingView

Postby zobi » Sat Jul 14, 2018 12:43 pm

i think that it is explained well to me
Thanks

nat
rank: 50+ posts
rank: 50+ posts
Posts: 50
Joined: Sat Sep 19, 2015 12:04 am
Reputation: 76
Gender: Male

Re: All things TradingView

Postby nat » Mon Jul 30, 2018 5:33 pm

looked short on 4h. ended up not going down that far. wouldve been a better long on the daily. there were a couple "cup" shorts i thought on m20. black line is what i thought was going to happen.

7302018.png
7302018.png (79.87 KiB) Viewed 4627 times

User avatar
Leoheart
rank: 150+ posts
rank: 150+ posts
Posts: 446
Joined: Thu Feb 23, 2017 10:54 pm
Reputation: 416
Gender: None specified

Re: All things TradingView

Postby Leoheart » Tue Nov 06, 2018 10:43 pm

dojirock wrote:2018-06-18_1344.png

doji


Hey Doji, Belated Thank You. This Sema code in trading view looks good. Question, did you code this?

Man the more I look at pine script the more I love it. Looks so much easier than mql.

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

d1momo
rank: <50 posts
rank: <50 posts
Posts: 1
Joined: Wed Mar 20, 2019 3:05 pm
Reputation: 0
Gender: None specified

Re: All things TradingView

Postby d1momo » Thu Mar 28, 2019 2:34 pm

does anyone want to start a kreslik chatroom on tradingview? i think it would be fun.

User avatar
Techguy
rank: <50 posts
rank: <50 posts
Posts: 17
Joined: Tue Nov 25, 2008 12:45 am
Reputation: 7
Location: Washington State
Real name: Denton Hess
Gender: None specified
Contact:

Re: All things TradingView

Postby Techguy » Fri Mar 29, 2019 1:30 pm

Lame question du jour...
Why all the love for TradingView? Why not MT4?
"Everything can be taken from a man but one thing: the last of human freedoms - to choose one's attitude in any given set of circumstances, to choose one's own way." Viktor Frankl

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 Apr 17, 2019 9:41 am

Techguy wrote:Lame question du jour...
Why all the love for TradingView? Why not MT4?


Pine Script is extremely easy to use and TV charts have features like free-hand drawing, chart/cursor syncing, as well as a greater number of chart types and periods.

red_cheese.png
red_cheese.png (68.07 KiB) Viewed 4079 times


Code: Select all

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

// 1. lower high, 2. close below midpoint, 3. open higher than midpoint
troo = high[0] < high[1] or close[0] < (high[0]+low[0])/2 or open[0] > (high[0]+low[0])/2

barcolor(troo ? red : green)
x = sma(close, 40)
y = sma(close, 2)
z = y - x
bgcolor(not troo and z > 0? red : na)
"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 Apr 17, 2019 10:12 am

Green candles mean that it is unwise to trade short.

Red background means that it is extremely unwise. :lol:

red_cheese_plz.png
red_cheese_plz.png (61.42 KiB) Viewed 4073 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 » Fri Apr 19, 2019 3:30 am

If the candle turns red then you go short; that's all you need to know.

It is a WZ/midpoint color-coded strategy.

red_cheese_plzz.png
red_cheese_plzz.png (71.07 KiB) Viewed 4032 times


Code: Select all

study("RED CHEESE", overlay = true)

// 1. close below midpoint, 2. open higher than midpoint
troo = close[0] < (high[0]+low[0])/2 or open[0] > (high[0]+low[0])/2

// If price moves to the other WZ and breaks out then swap colors.
if open[1] < close[1] and low[0] <= open[1] and close[0] > open[1]
    troo := 0
if open[1] > close[1] and high[0] >= open[1] and close[0] < open[1]
    troo := 1

barcolor( troo ? red : green)
bgcolor(troo ? color(red, transp = 98): na)



"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”