Going to have to think about this one...
to use closing prices or not to use closing prices.
[EDIT: nope, opening prices is where it's at: as TRO said somewhere, it is the only price that doesn't move so you don't have to wait for that 5th bar to close]
All things TradingView
Moderator: moderators
Re: All things TradingView
"I had operated simply on the basis of my daily telegram, which gave me my perspective. It showed me the way my stocks were behaving. There were no other influences, because I did not see or hear anything else." - Nicolas Darvas
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
Re: All things TradingView
This is my last chart of the day because I'm starting to feel like a spammer...the day ends in 15 minutes
These fractals are based on opening prices:

These fractals are based on opening prices:
"I had operated simply on the basis of my daily telegram, which gave me my perspective. It showed me the way my stocks were behaving. There were no other influences, because I did not see or hear anything else." - Nicolas Darvas
Re: All things TradingView
Step line of the high/low + line chart of the open prices; best of both worlds?
"I had operated simply on the basis of my daily telegram, which gave me my perspective. It showed me the way my stocks were behaving. There were no other influences, because I did not see or hear anything else." - Nicolas Darvas
Re: All things TradingView
The open price is very zen.
There is no 'confirmation': it is unchangeably what it is and It is all things as you cannot have a lower open without lower lows and a close.
Color is something that it is, not something that it waits for: it is unchangeably down or up, above or below, highest or lowest.
Where is the falsity? It has never started one thing only to do another; you can trust it wholeheartedly.
There is nothing to guess, nothing to count, nothing to predict, and nothing to wonder; there is only the sound of the opening bell.
[You don't really need a 3-minute chart: you could just look at your watch every 3 minutes after you notice price below your fractal]
There is no 'confirmation': it is unchangeably what it is and It is all things as you cannot have a lower open without lower lows and a close.
Color is something that it is, not something that it waits for: it is unchangeably down or up, above or below, highest or lowest.
Where is the falsity? It has never started one thing only to do another; you can trust it wholeheartedly.
There is nothing to guess, nothing to count, nothing to predict, and nothing to wonder; there is only the sound of the opening bell.
[You don't really need a 3-minute chart: you could just look at your watch every 3 minutes after you notice price below your fractal]
"I had operated simply on the basis of my daily telegram, which gave me my perspective. It showed me the way my stocks were behaving. There were no other influences, because I did not see or hear anything else." - Nicolas Darvas
Re: All things TradingView
IgazI wrote:The open price is very zen.
There is no 'confirmation': it is unchangeably what it is and It is all things as you cannot have a lower open without lower lows and a close.
Color is something that it is, not something that it waits for: it is unchangeably down or up, above or below, highest or lowest.
Where is the falsity? It has never started one thing only to do another; you can trust it wholeheartedly.
There is nothing to guess, nothing to count, nothing to predict, and nothing to wonder; there is only the sound of the opening bell.
[You don't really need a 3-minute chart: you could just look at your watch every 3 minutes after you notice price below your fractal]
open_says_me.png
IgazI, did you have to code in pine to get the fractals to paint at open prices, or is it an option in TV? Damn, on mt4 no option for open prices. Guess i'll have look for a custom indi.
Soon all of this will be a long time ago. Be Humble, Be Playful.
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.
- LeMercenaire
- rank: 1000+ posts
- Posts: 3184
- Joined: Tue Sep 27, 2016 12:11 am
- Reputation: 2302
- Gender:
Re: All things TradingView
Leoheart wrote:IgazI wrote:The open price is very zen.
There is no 'confirmation': it is unchangeably what it is and It is all things as you cannot have a lower open without lower lows and a close.
Color is something that it is, not something that it waits for: it is unchangeably down or up, above or below, highest or lowest.
Where is the falsity? It has never started one thing only to do another; you can trust it wholeheartedly.
There is nothing to guess, nothing to count, nothing to predict, and nothing to wonder; there is only the sound of the opening bell.
[You don't really need a 3-minute chart: you could just look at your watch every 3 minutes after you notice price below your fractal]
open_says_me.png
IgazI, did you have to code in pine to get the fractals to paint at open prices, or is it an option in TV? Damn, on mt4 no option for open prices. Guess i'll have look for a custom indi.
If you find one, let us know. It does look kinda' funky.
Re: All things TradingView
LeMercenaire wrote:Leoheart wrote:IgazI wrote:The open price is very zen.
There is no 'confirmation': it is unchangeably what it is and It is all things as you cannot have a lower open without lower lows and a close.
Color is something that it is, not something that it waits for: it is unchangeably down or up, above or below, highest or lowest.
Where is the falsity? It has never started one thing only to do another; you can trust it wholeheartedly.
There is nothing to guess, nothing to count, nothing to predict, and nothing to wonder; there is only the sound of the opening bell.
[You don't really need a 3-minute chart: you could just look at your watch every 3 minutes after you notice price below your fractal]
open_says_me.png
IgazI, did you have to code in pine to get the fractals to paint at open prices, or is it an option in TV? Damn, on mt4 no option for open prices. Guess i'll have look for a custom indi.
If you find one, let us know. It does look kinda' funky.
Yes Sir! You can count on me Sir! On it Sir! HooAah.
Soon all of this will be a long time ago. Be Humble, Be Playful.
Re: All things TradingView
I wish that I could help you but I don't know anything about mql4.
I you search for a free indicator that plots up and down arrows then all you would need to do is
change the formula and shape to your liking, rename, and then click compile.
This is the indicator that I wrote for TV:
[I'll clean up the code later]
I you search for a free indicator that plots up and down arrows then all you would need to do is
change the formula and shape to your liking, rename, and then click compile.
This is the indicator that I wrote for TV:
[I'll clean up the code later]
//@version=3
study("Fractal_Opener", overlay = true)
user_1 = input(title = "Extremes?", type = bool, defval = false )
x = open[0]
hi = false
lo = false
clr = user_1 ? orange : blue
if user_1
hi := high[2] > high[0] and high[2] > high[1] and high[2] > high[3] and high[2] > high[4]
lo := low[2] < low[0] and low[2] < low[1] and low[2] < low[3] and low[2] < low[4]
else
hi := x[2] > x[0] and x[2] > x[1] and x[2] > x[3] and x[2] > x[4]
lo := x[2] < x[0] and x[2] < x[1] and x[2] < x[3] and x[2] < x[4]
isHI = hi
isLO = lo
plotshape(isHI, location = location.abovebar, style = shape.triangleup, color = color(blue,transp = 0), offset = -2, transp = 88, size = size.tiny)
plotshape(isHI, location = location.abovebar, style = shape.triangledown, color = clr, offset = -2, transp = 88, size = size.tiny)
plotshape(isLO, location = location.belowbar, style = shape.triangleup, color = color(blue, transp = 0), offset = -2, transp = 88, size = size.tiny)
plotshape(isLO, location = location.belowbar, style = shape.triangledown, color = clr, offset = -2, transp = 88, size = size.tiny)
isUP = open[0] < (high[0] + low[0]) / 2
isNT = open[0] == (high[0] + low[0]) / 2
op = open[0]
h = high[0]
l = low[0]
plot(h, style = stepline, color = black, linewidth = 1, transp = 88)
plot(l, style = stepline, color = black, linewidth = 1, transp = 88)
plot(op, style = circles, color = blue, linewidth = 2, join = true, transp = 0)
//barcolor(isUP and not isNT ? green : red)
"I had operated simply on the basis of my daily telegram, which gave me my perspective. It showed me the way my stocks were behaving. There were no other influences, because I did not see or hear anything else." - Nicolas Darvas
Re: All things TradingView
IgazI wrote:I wish that I could help you but I don't know anything about mql4.
I you search for a free indicator that plots up and down arrows then all you would need to do is
change the formula and shape to your liking, rename, and then click compile.
This is the indicator that I wrote for TV:
[I'll clean up the code later]//@version=3
study("Fractal_Opener", overlay = true)
user_1 = input(title = "Extremes?", type = bool, defval = false )
x = open[0]
hi = false
lo = false
clr = user_1 ? orange : blue
if user_1
hi := high[2] > high[0] and high[2] > high[1] and high[2] > high[3] and high[2] > high[4]
lo := low[2] < low[0] and low[2] < low[1] and low[2] < low[3] and low[2] < low[4]
else
hi := x[2] > x[0] and x[2] > x[1] and x[2] > x[3] and x[2] > x[4]
lo := x[2] < x[0] and x[2] < x[1] and x[2] < x[3] and x[2] < x[4]
isHI = hi
isLO = lo
plotshape(isHI, location = location.abovebar, style = shape.triangleup, color = color(blue,transp = 0), offset = -2, transp = 88, size = size.tiny)
plotshape(isHI, location = location.abovebar, style = shape.triangledown, color = clr, offset = -2, transp = 88, size = size.tiny)
plotshape(isLO, location = location.belowbar, style = shape.triangleup, color = color(blue, transp = 0), offset = -2, transp = 88, size = size.tiny)
plotshape(isLO, location = location.belowbar, style = shape.triangledown, color = clr, offset = -2, transp = 88, size = size.tiny)
isUP = open[0] < (high[0] + low[0]) / 2
isNT = open[0] == (high[0] + low[0]) / 2
op = open[0]
h = high[0]
l = low[0]
plot(h, style = stepline, color = black, linewidth = 1, transp = 88)
plot(l, style = stepline, color = black, linewidth = 1, transp = 88)
plot(op, style = circles, color = blue, linewidth = 2, join = true, transp = 0)
//barcolor(isUP and not isNT ? green : red)
Great stuff IgazI, you’re on your way to becoming a pine script beast! (no pun).
Soon all of this will be a long time ago. Be Humble, Be Playful.
Re: All things TradingView
Leoheart wrote:
Great stuff IgazI, you’re on your way to becoming a pine script beast! (no pun).
I am not awesome, I just read the example and write something similar; the dumbest person on the planet could
code in pine script

But thanks!
"I had operated simply on the basis of my daily telegram, which gave me my perspective. It showed me the way my stocks were behaving. There were no other influences, because I did not see or hear anything else." - Nicolas Darvas
Please add www.kreslik.com to your ad blocker white list.
Thank you for your support.
Thank you for your support.